mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +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>
|
2009-01-19 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||||
|
|
||||||
* docs/plugins/Makefile.am:
|
* docs/plugins/Makefile.am:
|
||||||
|
|
|
@ -145,7 +145,7 @@ gst_audio_reverb_class_init (GstAudioReverbClass * klass)
|
||||||
static void
|
static void
|
||||||
gst_audio_reverb_init (GstAudioReverb * self, GstAudioReverbClass * klass)
|
gst_audio_reverb_init (GstAudioReverb * self, GstAudioReverbClass * klass)
|
||||||
{
|
{
|
||||||
self->delay = 0;
|
self->delay = 1;
|
||||||
self->intensity = 0.0;
|
self->intensity = 0.0;
|
||||||
self->feedback = 0.0;
|
self->feedback = 0.0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue