From adf823269b536b5f5c4f19bb67bcf23dd294b801 Mon Sep 17 00:00:00 2001 From: ivoc Date: Thu, 12 Jan 2017 02:28:42 -0800 Subject: [PATCH] Enable residual echo detector on mobile platforms. BUG=webrtc:6797 Review-Url: https://codereview.webrtc.org/2625323002 Cr-Commit-Position: refs/heads/master@{#16027} --- webrtc/modules/audio_processing/include/audio_processing.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/webrtc/modules/audio_processing/include/audio_processing.h b/webrtc/modules/audio_processing/include/audio_processing.h index d1a711dfa6..1b93cc0a5c 100644 --- a/webrtc/modules/audio_processing/include/audio_processing.h +++ b/webrtc/modules/audio_processing/include/audio_processing.h @@ -253,11 +253,7 @@ class AudioProcessing { float initial_peak_level_dbfs = -6.0206f; } level_controller; struct ResidualEchoDetector { -#if defined(WEBRTC_ANDROID) || defined(WEBRTC_IOS) - bool enabled = false; -#else bool enabled = true; -#endif } residual_echo_detector; struct HighPassFilter {