diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2009-01-19 11:22:06 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2009-01-19 11:22:06 +0000 |
commit | 0701ffa5567abb5362b49f95e66403575ce2c970 (patch) | |
tree | 480e8ef815eb1504151a5aee14a31571ac80ec25 | |
parent | 344a9f4229620d90b92e0fffe99069fb9c410d6f (diff) |
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.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/audiofx/audioreverb.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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: diff --git a/gst/audiofx/audioreverb.c b/gst/audiofx/audioreverb.c index 703a4ef0b..2d661b16e 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; |