gst/audiofx/audioreverb.c: Set the default value in the instance init function.

Original commit message from CVS:
* gst/audiofx/audioreverb.c: (gst_audio_reverb_init):
Set the default value in the instance init function.
This commit is contained in:
Sebastian Dröge 2009-01-19 11:22:06 +00:00
parent 344a9f4229
commit 0701ffa556
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2009-01-19 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* gst/audiofx/audioreverb.c: (gst_audio_reverb_init):
Set the default value in the instance init function.
2009-01-19 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* docs/plugins/Makefile.am:

View file

@ -145,7 +145,7 @@ gst_audio_reverb_class_init (GstAudioReverbClass * klass)
static void
gst_audio_reverb_init (GstAudioReverb * self, GstAudioReverbClass * klass)
{
self->delay = 0;
self->delay = 1;
self->intensity = 0.0;
self->feedback = 0.0;