gst/equalizer/: Activate preset iface and upload two presets here.
authorStefan Kost <ensonic@users.sourceforge.net>
Mon, 19 Nov 2007 20:30:19 +0000 (20:30 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Mon, 19 Nov 2007 20:30:19 +0000 (20:30 +0000)
Original commit message from CVS:
* gst/equalizer/gstiirequalizer10bands.c:
* gst/equalizer/gstiirequalizer3bands.c:
Activate preset iface and upload two presets here.

gst/equalizer/gstiirequalizer10bands.c
gst/equalizer/gstiirequalizer3bands.c

index e951077..7741e79 100644 (file)
@@ -66,8 +66,17 @@ static void gst_iir_equalizer_10bands_get_property (GObject * object,
 GST_DEBUG_CATEGORY_EXTERN (equalizer_debug);
 #define GST_CAT_DEFAULT equalizer_debug
 
-GST_BOILERPLATE (GstIirEqualizer10Bands, gst_iir_equalizer_10bands,
-    GstIirEqualizer, GST_TYPE_IIR_EQUALIZER);
+#define _do_init(bla) { \
+    const GInterfaceInfo preset_interface_info = { \
+      NULL,               /* interface_init */ \
+      NULL,               /* interface_finalize */ \
+      NULL                /* interface_data */ \
+    }; \
+    g_type_add_interface_static(object_type, GST_TYPE_PRESET, &preset_interface_info); \
+ }
+
+GST_BOILERPLATE_FULL (GstIirEqualizer10Bands, gst_iir_equalizer_10bands,
+    GstIirEqualizer, GST_TYPE_IIR_EQUALIZER, _do_init);
 
 /* equalizer implementation */
 
index f1e11d5..5084dc1 100644 (file)
@@ -58,8 +58,17 @@ static void gst_iir_equalizer_3bands_get_property (GObject * object,
 GST_DEBUG_CATEGORY_EXTERN (equalizer_debug);
 #define GST_CAT_DEFAULT equalizer_debug
 
-GST_BOILERPLATE (GstIirEqualizer3Bands, gst_iir_equalizer_3bands,
-    GstIirEqualizer, GST_TYPE_IIR_EQUALIZER);
+#define _do_init(bla) { \
+    const GInterfaceInfo preset_interface_info = { \
+      NULL,               /* interface_init */ \
+      NULL,               /* interface_finalize */ \
+      NULL                /* interface_data */ \
+    }; \
+    g_type_add_interface_static(object_type, GST_TYPE_PRESET, &preset_interface_info); \
+ }
+
+GST_BOILERPLATE_FULL (GstIirEqualizer3Bands, gst_iir_equalizer_3bands,
+    GstIirEqualizer, GST_TYPE_IIR_EQUALIZER, _do_init);
 
 /* equalizer implementation */