From: Sebastian Dröge Date: Wed, 13 Jan 2010 08:36:03 +0000 (+0100) Subject: equalizer: Fix property description for the 3rd band of the 10band equalizer X-Git-Tag: 1.19.3~509^2~9253 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4a0f441c59f3f05a559dfa81a7a601cd88306cd3;p=platform%2Fupstream%2Fgstreamer.git equalizer: Fix property description for the 3rd band of the 10band equalizer The frequency is actually 237 Hz, not 227 Hz. Fixes bug #606692. --- diff --git a/gst/equalizer/gstiirequalizer10bands.c b/gst/equalizer/gstiirequalizer10bands.c index c83cb74..b39515c 100644 --- a/gst/equalizer/gstiirequalizer10bands.c +++ b/gst/equalizer/gstiirequalizer10bands.c @@ -115,8 +115,8 @@ gst_iir_equalizer_10bands_class_init (GstIirEqualizer10BandsClass * klass) -24.0, 12.0, 0.0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | GST_PARAM_CONTROLLABLE)); g_object_class_install_property (gobject_class, PROP_BAND3, - g_param_spec_double ("band3", "227 Hz", - "gain for the frequency band 227 Hz, ranging from -24 dB to +12 dB", + g_param_spec_double ("band3", "237 Hz", + "gain for the frequency band 237 Hz, ranging from -24 dB to +12 dB", -24.0, 12.0, 0.0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | GST_PARAM_CONTROLLABLE)); g_object_class_install_property (gobject_class, PROP_BAND4,