diff options
author | Benjamin Otte <otte@redhat.com> | 2010-03-18 14:31:35 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-03-18 14:32:00 +0100 |
commit | cccfeaa59c3447be82eea26e4ce66d95ae8c22db (patch) | |
tree | 5cf8b52dd0a04f0824f8f51d1f82a8f195d592ee /gst/goom2k1 | |
parent | bc1b65bee3e7b2af24567aac66961911ab003ecf (diff) |
gst_element_class_set_details => gst_element_class_set_details_simple
Diffstat (limited to 'gst/goom2k1')
-rw-r--r-- | gst/goom2k1/gstgoom.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/gst/goom2k1/gstgoom.c b/gst/goom2k1/gstgoom.c index d01a88627..09ecc53f5 100644 --- a/gst/goom2k1/gstgoom.c +++ b/gst/goom2k1/gstgoom.c @@ -47,13 +47,6 @@ GST_DEBUG_CATEGORY_STATIC (goom_debug); #define GST_CAT_DEFAULT goom_debug -/* elementfactory information */ -static const GstElementDetails gst_goom_details = -GST_ELEMENT_DETAILS ("GOOM: what a GOOM! 2k1 edition", - "Visualization", - "Takes frames of data and outputs video frames using the GOOM 2k1 filter", - "Wim Taymans <wim@fluendo.com>"); - /* signals and args */ enum { @@ -130,7 +123,10 @@ gst_goom_base_init (GstGoomClass * klass) { GstElementClass *element_class = GST_ELEMENT_CLASS (klass); - gst_element_class_set_details (element_class, &gst_goom_details); + gst_element_class_set_details_simple (element_class, + "GOOM: what a GOOM! 2k1 edition", "Visualization", + "Takes frames of data and outputs video frames using the GOOM 2k1 filter", + "Wim Taymans <wim@fluendo.com>"); gst_element_class_add_pad_template (element_class, gst_static_pad_template_get (&sink_template)); gst_element_class_add_pad_template (element_class, |