mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
ext/speex/: Fix property warning.
Original commit message from CVS: * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init): * ext/speex/gstspeexenc.c: (gst_speexenc_class_init): Fix property warning.
This commit is contained in:
parent
dcc3732178
commit
a953ed2d95
3 changed files with 12 additions and 6 deletions
|
@ -1,3 +1,9 @@
|
|||
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),
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue