mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
Use new gst_element_class_set_static_metadata()
This commit is contained in:
parent
ca7c2af1c4
commit
b928640b5e
2 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ gst_gdp_depay_class_init (GstGDPDepayClass * klass)
|
|||
gobject_class = (GObjectClass *) klass;
|
||||
gstelement_class = (GstElementClass *) klass;
|
||||
|
||||
gst_element_class_set_details_simple (gstelement_class,
|
||||
gst_element_class_set_static_metadata (gstelement_class,
|
||||
"GDP Depayloader", "GDP/Depayloader",
|
||||
"Depayloads GStreamer Data Protocol buffers",
|
||||
"Thomas Vander Stichele <thomas at apestaart dot org>");
|
||||
|
|
|
@ -119,7 +119,7 @@ gst_gdp_pay_class_init (GstGDPPayClass * klass)
|
|||
GST_TYPE_DP_VERSION, DEFAULT_VERSION,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
|
||||
gst_element_class_set_details_simple (gstelement_class,
|
||||
gst_element_class_set_static_metadata (gstelement_class,
|
||||
"GDP Payloader", "GDP/Payloader",
|
||||
"Payloads GStreamer Data Protocol buffers",
|
||||
"Thomas Vander Stichele <thomas at apestaart dot org>");
|
||||
|
|
Loading…
Reference in a new issue