summaryrefslogtreecommitdiff
path: root/gst/filter/gstiir.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2010-03-18 17:30:26 +0100
committerBenjamin Otte <otte@redhat.com>2010-03-18 22:46:41 +0100
commit775c7584fdad53053ae5b22bb19074cc6022ee98 (patch)
tree149c7daf4efd3ecaf17a179949e20b44347859ab /gst/filter/gstiir.c
parent5258d372be503da09fa21fbde28afe619bc0cdc1 (diff)
downloadgstreamer-plugins-bad-775c7584fdad53053ae5b22bb19074cc6022ee98.tar.gz
gst_element_class_set_details => gst_element_class_set_details_simple
Diffstat (limited to 'gst/filter/gstiir.c')
-rw-r--r--gst/filter/gstiir.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/gst/filter/gstiir.c b/gst/filter/gstiir.c
index cf37256ca..a341a9496 100644
--- a/gst/filter/gstiir.c
+++ b/gst/filter/gstiir.c
@@ -35,14 +35,6 @@
#define GST_CAT_DEFAULT gst_iir_debug
GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
-static const GstElementDetails iir_details =
-GST_ELEMENT_DETAILS ("Infinite Impulse Response (IIR) filter",
- "Filter/Effect/Audio",
- "IIR filter based on vorbis code",
- "Monty <monty@xiph.org>, "
- "Thomas Vander Stichele <thomas at apestaart dot org>, "
- "Dreamlab Technologies Ltd. <mathis.hofer@dreamlab.net>");
-
/* Filter signals and args */
enum
{
@@ -110,7 +102,12 @@ gst_iir_base_init (gpointer g_class)
gst_static_pad_template_get (&iir_src_template));
gst_element_class_add_pad_template (element_class,
gst_static_pad_template_get (&iir_sink_template));
- gst_element_class_set_details (element_class, &iir_details);
+ gst_element_class_set_details_simple (element_class,
+ "Infinite Impulse Response (IIR) filter", "Filter/Effect/Audio",
+ "IIR filter based on vorbis code",
+ "Monty <monty@xiph.org>, "
+ "Thomas Vander Stichele <thomas at apestaart dot org>, "
+ "Dreamlab Technologies Ltd. <mathis.hofer@dreamlab.net>");
}
static void