From 4e37d4483b9559340fa82b024b545afd3fbc880f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C3=ABl=20Carr=C3=A9?= <rafael.carre@savoirfairelinux.com> Date: Tue, 26 Jul 2011 16:05:00 -0400 Subject: [PATCH] Audio settings : Initialize _echoCancelTailLength and _echoCancelDelay(0) Use the minimum values used in the GUI (GUI has been disactivated in 9d226b80) --- sflphone-common/src/preferences.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sflphone-common/src/preferences.cpp b/sflphone-common/src/preferences.cpp index c63b2bd9b2..be79c0dd11 100644 --- a/sflphone-common/src/preferences.cpp +++ b/sflphone-common/src/preferences.cpp @@ -499,6 +499,8 @@ AudioPreference::AudioPreference() : _cardin (atoi (ALSA_DFT_CARD)) // ALSA_DFT_ , _volumespkr (atoi (DFT_VOL_MICRO_STR)) // DFT_VOL_MICRO_STR , _noisereduce (true) , _echocancel(false) + , _echoCancelTailLength(100) + , _echoCancelDelay(0) { } -- GitLab