mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +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": {
|
"elements": {
|
||||||
"videoconvert": {
|
"videoconvert": {
|
||||||
"author": "Wim Taymans <wim.taymans@gmail.com>",
|
"author": "Wim Taymans <wim.taymans@gmail.com>",
|
||||||
"description": "Resizes video and allow color conversion",
|
"description": "Converts video from one colorspace to another",
|
||||||
"hierarchy": [
|
"hierarchy": [
|
||||||
"GstVideoConvert",
|
"GstVideoConvert",
|
||||||
"GstVideoConvertScale",
|
"GstVideoConvertScale",
|
||||||
|
@ -13728,7 +13728,7 @@
|
||||||
},
|
},
|
||||||
"videoconvertscale": {
|
"videoconvertscale": {
|
||||||
"author": "Wim Taymans <wim.taymans@gmail.com>",
|
"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": [
|
"hierarchy": [
|
||||||
"GstVideoConvertScale",
|
"GstVideoConvertScale",
|
||||||
"GstVideoFilter",
|
"GstVideoFilter",
|
||||||
|
|
|
@ -56,7 +56,7 @@ gst_video_convert_class_init (GstVideoConvertClass * klass)
|
||||||
gst_element_class_set_static_metadata (element_class,
|
gst_element_class_set_static_metadata (element_class,
|
||||||
"Video colorspace converter",
|
"Video colorspace converter",
|
||||||
"Filter/Converter/Video/Colorspace",
|
"Filter/Converter/Video/Colorspace",
|
||||||
"Resizes video and allow color conversion",
|
"Converts video from one colorspace to another",
|
||||||
"Wim Taymans <wim.taymans@gmail.com>");
|
"Wim Taymans <wim.taymans@gmail.com>");
|
||||||
|
|
||||||
convertscale_class->any_memory = TRUE;
|
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,
|
gst_element_class_set_static_metadata (element_class,
|
||||||
"Video colorspace converter and scaler",
|
"Video colorspace converter and scaler",
|
||||||
"Filter/Converter/Video/Scaler/Colorspace",
|
"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>");
|
"Wim Taymans <wim.taymans@gmail.com>");
|
||||||
|
|
||||||
gst_element_class_add_pad_template (element_class,
|
gst_element_class_add_pad_template (element_class,
|
||||||
|
|
Loading…
Reference in a new issue