From 85eef49fa2cd44657bd0ce8508ba8b8ce0514fbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Per=20=C3=85hgren?= Date: Wed, 28 Mar 2018 16:19:47 +0200 Subject: [PATCH] Further decrease the AEC3 look window in the nonlinear mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This CL further decreases the look window size, as well as the effect of the look window used by AEC3 when is is in the nonlinear mode. Bug: chromium:826720,webrtc:9083 Change-Id: I193539c0af74eea18d2821a3b7e1fae2f783d38a Reviewed-on: https://webrtc-review.googlesource.com/65161 Commit-Queue: Per Ã…hgren Reviewed-by: Alessio Bazzica Cr-Commit-Position: refs/heads/master@{#22659} --- api/audio/echo_canceller3_config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/audio/echo_canceller3_config.h b/api/audio/echo_canceller3_config.h index cf4525541e..f7125b24f0 100644 --- a/api/audio/echo_canceller3_config.h +++ b/api/audio/echo_canceller3_config.h @@ -128,9 +128,9 @@ struct EchoCanceller3Config { float noise_gate_power = 27509.42f; float noise_gate_slope = 0.3f; size_t render_pre_window_size = 1; - size_t render_post_window_size = 3; - float nonlinear_hold = 2; - float nonlinear_release = 0.1f; + size_t render_post_window_size = 1; + float nonlinear_hold = 1; + float nonlinear_release = 0.001f; } echo_model; }; } // namespace webrtc