Use new gst_element_class_set_static_metadata()

This commit is contained in:
Tim-Philipp Müller 2012-04-10 00:45:16 +01:00 committed by Tim-Philipp Müller
parent ca7c2af1c4
commit b928640b5e
2 changed files with 2 additions and 2 deletions

View file

@ -91,7 +91,7 @@ gst_gdp_depay_class_init (GstGDPDepayClass * klass)
gobject_class = (GObjectClass *) klass; gobject_class = (GObjectClass *) klass;
gstelement_class = (GstElementClass *) 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", "GDP Depayloader", "GDP/Depayloader",
"Depayloads GStreamer Data Protocol buffers", "Depayloads GStreamer Data Protocol buffers",
"Thomas Vander Stichele <thomas at apestaart dot org>"); "Thomas Vander Stichele <thomas at apestaart dot org>");

View file

@ -119,7 +119,7 @@ gst_gdp_pay_class_init (GstGDPPayClass * klass)
GST_TYPE_DP_VERSION, DEFAULT_VERSION, GST_TYPE_DP_VERSION, DEFAULT_VERSION,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); 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", "GDP Payloader", "GDP/Payloader",
"Payloads GStreamer Data Protocol buffers", "Payloads GStreamer Data Protocol buffers",
"Thomas Vander Stichele <thomas at apestaart dot org>"); "Thomas Vander Stichele <thomas at apestaart dot org>");