mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 04:00:37 +00:00
gst/equalizer/: Remove preset iface again. We'll re-add this after its been released in -good.
Original commit message from CVS: * gst/equalizer/gstiirequalizer10bands.c: * gst/equalizer/gstiirequalizer3bands.c: Remove preset iface again. We'll re-add this after its been released in -good.
This commit is contained in:
parent
e35ab1c0f6
commit
970893e591
2 changed files with 4 additions and 22 deletions
|
@ -66,17 +66,8 @@ static void gst_iir_equalizer_10bands_get_property (GObject * object,
|
||||||
GST_DEBUG_CATEGORY_EXTERN (equalizer_debug);
|
GST_DEBUG_CATEGORY_EXTERN (equalizer_debug);
|
||||||
#define GST_CAT_DEFAULT equalizer_debug
|
#define GST_CAT_DEFAULT equalizer_debug
|
||||||
|
|
||||||
#define _do_init(bla) { \
|
GST_BOILERPLATE (GstIirEqualizer10Bands, gst_iir_equalizer_10bands,
|
||||||
const GInterfaceInfo preset_interface_info = { \
|
GstIirEqualizer, GST_TYPE_IIR_EQUALIZER);
|
||||||
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 */
|
/* equalizer implementation */
|
||||||
|
|
||||||
|
|
|
@ -58,17 +58,8 @@ static void gst_iir_equalizer_3bands_get_property (GObject * object,
|
||||||
GST_DEBUG_CATEGORY_EXTERN (equalizer_debug);
|
GST_DEBUG_CATEGORY_EXTERN (equalizer_debug);
|
||||||
#define GST_CAT_DEFAULT equalizer_debug
|
#define GST_CAT_DEFAULT equalizer_debug
|
||||||
|
|
||||||
#define _do_init(bla) { \
|
GST_BOILERPLATE (GstIirEqualizer3Bands, gst_iir_equalizer_3bands,
|
||||||
const GInterfaceInfo preset_interface_info = { \
|
GstIirEqualizer, GST_TYPE_IIR_EQUALIZER);
|
||||||
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 */
|
/* equalizer implementation */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue