From 75b57d3bb894aa51da3a4bcf1bb455785b7a4098 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Per=20=C3=85hgren?= Date: Thu, 15 Feb 2018 09:17:41 +0100 Subject: [PATCH] Increased the size of the delay estimation look window MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: webrtc:8889,chromium:812524 Change-Id: I508a0d3619b90f6a8851db66c151a980b14adb55 Reviewed-on: https://webrtc-review.googlesource.com/53640 Reviewed-by: Gustaf Ullberg Commit-Queue: Per Ã…hgren Cr-Commit-Position: refs/heads/master@{#22030} --- api/audio/echo_canceller3_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/audio/echo_canceller3_config.h b/api/audio/echo_canceller3_config.h index 75467708bf..017e51826c 100644 --- a/api/audio/echo_canceller3_config.h +++ b/api/audio/echo_canceller3_config.h @@ -20,7 +20,7 @@ struct EchoCanceller3Config { struct Delay { size_t default_delay = 5; size_t down_sampling_factor = 4; - size_t num_filters = 4; + size_t num_filters = 5; size_t api_call_jitter_blocks = 26; size_t min_echo_path_delay_blocks = 0; size_t delay_headroom_blocks = 2;