summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--ext/speex/gstspeexdec.c6
-rw-r--r--ext/speex/gstspeexenc.c6
3 files changed, 12 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 7e74f661..a9180787 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2005-08-23 Wim Taymans <wim@fluendo.com>
+ * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init):
+ * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
+ Fix property warning.
+
+2005-08-23 Wim Taymans <wim@fluendo.com>
+
* gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_init),
(gst_rtpamrdec_sink_setcaps), (gst_rtpamrdec_chain):
* gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_class_init),
diff --git a/ext/speex/gstspeexdec.c b/ext/speex/gstspeexdec.c
index edf44c77..41ea3f0e 100644
--- a/ext/speex/gstspeexdec.c
+++ b/ext/speex/gstspeexdec.c
@@ -99,15 +99,15 @@ gst_speex_dec_class_init (GstSpeexDecClass * klass)
gobject_class = (GObjectClass *) klass;
gstelement_class = (GstElementClass *) klass;
+ gobject_class->set_property = gst_speexdec_set_property;
+ gobject_class->get_property = gst_speexdec_get_property;
+
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ENH,
g_param_spec_boolean ("enh", "Enh", "Enable perceptual enhancement",
DEFAULT_ENH, G_PARAM_READWRITE));
gstelement_class->change_state = speex_dec_change_state;
- gobject_class->set_property = gst_speexdec_set_property;
- gobject_class->get_property = gst_speexdec_get_property;
-
GST_DEBUG_CATEGORY_INIT (speexdec_debug, "speexdec", 0,
"speex decoding element");
}
diff --git a/ext/speex/gstspeexenc.c b/ext/speex/gstspeexenc.c
index 925fd5ec..a1b1cd52 100644
--- a/ext/speex/gstspeexenc.c
+++ b/ext/speex/gstspeexenc.c
@@ -191,6 +191,9 @@ gst_speexenc_class_init (GstSpeexEncClass * klass)
gobject_class = (GObjectClass *) klass;
gstelement_class = (GstElementClass *) klass;
+ gobject_class->set_property = gst_speexenc_set_property;
+ gobject_class->get_property = gst_speexenc_get_property;
+
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_QUALITY,
g_param_spec_float ("quality", "Quality", "Encoding quality",
0.0, 10.0, DEFAULT_QUALITY, G_PARAM_READWRITE));
@@ -225,9 +228,6 @@ gst_speexenc_class_init (GstSpeexEncClass * klass)
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
- gobject_class->set_property = gst_speexenc_set_property;
- gobject_class->get_property = gst_speexenc_get_property;
-
gstelement_class->change_state = gst_speexenc_change_state;
}