mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
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:
parent
344a9f4229
commit
0701ffa556
2 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue