mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 15:08:53 +00:00
[MOVED FROM BAD 30/68] gst_element_class_set_details => gst_element_class_set_details_simple
This commit is contained in:
parent
2f9ee2a816
commit
0125cb55b9
1 changed files with 3 additions and 7 deletions
|
@ -44,12 +44,6 @@ static GstColorspaceConverter gst_colorspace_converters[] = {
|
||||||
{GST_COLORSPACE_YV12, GST_COLORSPACE_RGB16, gst_colorspace_YV12_to_rgb16},
|
{GST_COLORSPACE_YV12, GST_COLORSPACE_RGB16, gst_colorspace_YV12_to_rgb16},
|
||||||
};
|
};
|
||||||
|
|
||||||
static const GstElementDetails colorspace_details =
|
|
||||||
GST_ELEMENT_DETAILS ("Colorspace converter",
|
|
||||||
"Filter/Converter/Video",
|
|
||||||
"Converts video from YUV to RGB",
|
|
||||||
"Wim Taymans <wim.taymans@chello.be>");
|
|
||||||
|
|
||||||
static GstStaticPadTemplate gst_colorspace_sink_template =
|
static GstStaticPadTemplate gst_colorspace_sink_template =
|
||||||
GST_STATIC_PAD_TEMPLATE ("sink",
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_PAD_SINK,
|
GST_PAD_SINK,
|
||||||
|
@ -490,7 +484,9 @@ gst_colorspace_base_init (gpointer g_class)
|
||||||
gst_element_class_add_pad_template (element_class,
|
gst_element_class_add_pad_template (element_class,
|
||||||
gst_static_pad_template_get (&gst_colorspace_sink_template));
|
gst_static_pad_template_get (&gst_colorspace_sink_template));
|
||||||
|
|
||||||
gst_element_class_set_details (element_class, &colorspace_details);
|
gst_element_class_set_details_simple (element_class, "Colorspace converter",
|
||||||
|
"Filter/Converter/Video",
|
||||||
|
"Converts video from YUV to RGB", "Wim Taymans <wim.taymans@chello.be>");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue