From 0701ffa5567abb5362b49f95e66403575ce2c970 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 19 Jan 2009 11:22:06 +0000 Subject: [PATCH] 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. --- ChangeLog | 5 +++++ gst/audiofx/audioreverb.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8533bdb..627cb58 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2009-01-19 Sebastian Dröge + * gst/audiofx/audioreverb.c: (gst_audio_reverb_init): + Set the default value in the instance init function. + +2009-01-19 Sebastian Dröge + * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-good-plugins-docs.sgml: * docs/plugins/gst-plugins-good-plugins-sections.txt: diff --git a/gst/audiofx/audioreverb.c b/gst/audiofx/audioreverb.c index 703a4ef..2d661b1 100644 --- a/gst/audiofx/audioreverb.c +++ b/gst/audiofx/audioreverb.c @@ -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; -- 2.7.4