mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-13 23:22:54 +00:00
videoconvert, videoscaleconvert: fix element description
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3362>
This commit is contained in:
parent
82f09d64d7
commit
6c8b7204e5
3 changed files with 4 additions and 4 deletions
|
@ -13699,7 +13699,7 @@
|
|||
"elements": {
|
||||
"videoconvert": {
|
||||
"author": "Wim Taymans <wim.taymans@gmail.com>",
|
||||
"description": "Resizes video and allow color conversion",
|
||||
"description": "Converts video from one colorspace to another",
|
||||
"hierarchy": [
|
||||
"GstVideoConvert",
|
||||
"GstVideoConvertScale",
|
||||
|
@ -13728,7 +13728,7 @@
|
|||
},
|
||||
"videoconvertscale": {
|
||||
"author": "Wim Taymans <wim.taymans@gmail.com>",
|
||||
"description": "Converts video from one colorspace to another",
|
||||
"description": "Resizes video and converts from one colorspace to another",
|
||||
"hierarchy": [
|
||||
"GstVideoConvertScale",
|
||||
"GstVideoFilter",
|
||||
|
|
|
@ -56,7 +56,7 @@ gst_video_convert_class_init (GstVideoConvertClass * klass)
|
|||
gst_element_class_set_static_metadata (element_class,
|
||||
"Video colorspace converter",
|
||||
"Filter/Converter/Video/Colorspace",
|
||||
"Resizes video and allow color conversion",
|
||||
"Converts video from one colorspace to another",
|
||||
"Wim Taymans <wim.taymans@gmail.com>");
|
||||
|
||||
convertscale_class->any_memory = TRUE;
|
||||
|
|
|
@ -378,7 +378,7 @@ gst_video_convert_scale_class_init (GstVideoConvertScaleClass * klass)
|
|||
gst_element_class_set_static_metadata (element_class,
|
||||
"Video colorspace converter and scaler",
|
||||
"Filter/Converter/Video/Scaler/Colorspace",
|
||||
"Converts video from one colorspace to another",
|
||||
"Resizes video and converts from one colorspace to another",
|
||||
"Wim Taymans <wim.taymans@gmail.com>");
|
||||
|
||||
gst_element_class_add_pad_template (element_class,
|
||||
|
|
Loading…
Reference in a new issue