diff options
author | Benjamin Otte <otte@redhat.com> | 2010-03-18 15:53:14 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-03-18 15:53:14 +0100 |
commit | 9850bd814fcaba6bd044019ba72d937d12412ff6 (patch) | |
tree | 524026a6431f9cb8e2c6c2dff7da777283cbeb85 /gst/dvdlpcmdec | |
parent | 43b366ce529b1813458be58d3f2b4ddf67faa2ab (diff) |
gst_element_class_set_details => gst_element_class_set_details_simple
Diffstat (limited to 'gst/dvdlpcmdec')
-rw-r--r-- | gst/dvdlpcmdec/gstdvdlpcmdec.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/gst/dvdlpcmdec/gstdvdlpcmdec.c b/gst/dvdlpcmdec/gstdvdlpcmdec.c index 832e9f4b..8e550739 100644 --- a/gst/dvdlpcmdec/gstdvdlpcmdec.c +++ b/gst/dvdlpcmdec/gstdvdlpcmdec.c @@ -31,13 +31,6 @@ GST_DEBUG_CATEGORY_STATIC (dvdlpcm_debug); #define GST_CAT_DEFAULT dvdlpcm_debug -/* elementfactory information */ -static const GstElementDetails gst_dvdlpcmdec_details = -GST_ELEMENT_DETAILS ("DVD LPCM Audio decoder", - "Codec/Decoder/Audio", - "Decode DVD LPCM frames into standard PCM audio", - "Jan Schmidt <jan@noraisin.net>\n" "Michael Smith <msmith@fluendo.com>"); - static GstStaticPadTemplate gst_dvdlpcmdec_sink_template = GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, @@ -127,7 +120,10 @@ gst_dvdlpcmdec_base_init (gpointer g_class) gst_static_pad_template_get (&gst_dvdlpcmdec_sink_template)); gst_element_class_add_pad_template (element_class, gst_static_pad_template_get (&gst_dvdlpcmdec_src_template)); - gst_element_class_set_details (element_class, &gst_dvdlpcmdec_details); + gst_element_class_set_details_simple (element_class, "DVD LPCM Audio decoder", + "Codec/Decoder/Audio", + "Decode DVD LPCM frames into standard PCM audio", + "Jan Schmidt <jan@noraisin.net>, Michael Smith <msmith@fluendo.com>"); } static void |