gst/audiofx/audioreverb.c: Set the default value in the instance init function.
authorSebastian Dröge <slomo@circular-chaos.org>
Mon, 19 Jan 2009 11:22:06 +0000 (11:22 +0000)
committerSebastian Dröge <slomo@circular-chaos.org>
Mon, 19 Jan 2009 11:22:06 +0000 (11:22 +0000)
Original commit message from CVS:
* gst/audiofx/audioreverb.c: (gst_audio_reverb_init):
Set the default value in the instance init function.

ChangeLog
gst/audiofx/audioreverb.c

index 8533bdb..627cb58 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 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:
        * docs/plugins/gst-plugins-good-plugins-docs.sgml:
        * docs/plugins/gst-plugins-good-plugins-sections.txt:
index 703a4ef..2d661b1 100644 (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;