From 2cc573d0b0c36ef6c19bd9608972f81a0a6fa026 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Sun, 2 Nov 2003 18:31:57 +0000 Subject: I'm too lazy to comment this Original commit message from CVS: . --- gst/mixmatrix/mixmatrix.c | 46 +++++++++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 21 deletions(-) (limited to 'gst') diff --git a/gst/mixmatrix/mixmatrix.c b/gst/mixmatrix/mixmatrix.c index d17c8b53..32cc5bf9 100644 --- a/gst/mixmatrix/mixmatrix.c +++ b/gst/mixmatrix/mixmatrix.c @@ -69,11 +69,8 @@ struct _GstMixMatrixClass { static GstElementDetails mixmatrix_details = { "Mixing Matrix", "Filter/Audio", - "LGPL", "Mix N audio channels together into M channels", - VERSION, - "Erik Walthinsen ", - "(C) 2002", + "Erik Walthinsen " }; enum { @@ -114,6 +111,7 @@ GST_PAD_TEMPLATE_FACTORY (mixmatrix_src_factory, ); static void gst_mixmatrix_class_init (GstMixMatrixClass *klass); +static void gst_mixmatrix_base_init (GstMixMatrixClass *klass); static void gst_mixmatrix_init (GstMixMatrix *element); static void gst_mixmatrix_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec); @@ -135,7 +133,7 @@ gst_mixmatrix_get_type(void) { if (!mixmatrix_type) { static const GTypeInfo mixmatrix_info = { sizeof(GstMixMatrixClass), - NULL, + (GBaseInitFunc)gst_mixmatrix_base_init, NULL, (GClassInitFunc)gst_mixmatrix_class_init, NULL, @@ -149,6 +147,16 @@ gst_mixmatrix_get_type(void) { return mixmatrix_type; } +static void +gst_mixmatrix_base_init (GstMixMatrixClass *klass) +{ + GstElementClass *element_class = GST_ELEMENT_CLASS (klass); + + gst_element_class_add_pad_template (element_class, sinktempl); + gst_element_class_add_pad_template (element_class, srctempl); + gst_element_class_set_details (element_class, &mixmatrix_details); +} + static void gst_mixmatrix_class_init (GstMixMatrixClass *klass) { @@ -496,31 +504,27 @@ gst_mixmatrix_get_property (GObject *object, guint prop_id, GValue *value, GPara } gboolean -plugin_init (GModule *module, GstPlugin *plugin) +plugin_init (GstPlugin *plugin) { - GstElementFactory *factory; - if (!gst_library_load ("gstbytestream")) return FALSE; - factory = gst_element_factory_new ("mixmatrix", GST_TYPE_MIXMATRIX, - &mixmatrix_details); - g_return_val_if_fail (factory != NULL, FALSE); - sinktempl = mixmatrix_sink_factory (); - gst_element_factory_add_pad_template (factory, sinktempl); - srctempl = mixmatrix_src_factory (); - gst_element_factory_add_pad_template (factory, srctempl); - - gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory)); - return TRUE; + return gst_element_register (plugin, "mixmatrix", + GST_RANK_NONE, GST_TYPE_MIXMATRIX); } -GstPluginDesc plugin_desc = { +GST_PLUGIN_DEFINE ( GST_VERSION_MAJOR, GST_VERSION_MINOR, "mixmatrix", - plugin_init -}; + "An audio mixer matrix", + plugin_init, + VERSION, + GST_LICENSE, + GST_COPYRIGHT, + GST_PACKAGE, + GST_ORIGIN +) -- cgit v1.2.1