Further decrease the AEC3 look window in the nonlinear mode

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 <peah@webrtc.org>
Reviewed-by: Alessio Bazzica <alessiob@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22659}
This commit is contained in:
Per Åhgren 2018-03-28 16:19:47 +02:00 committed by Commit Bot
parent 8131eb0667
commit 85eef49fa2

View File

@ -128,9 +128,9 @@ struct EchoCanceller3Config {
float noise_gate_power = 27509.42f; float noise_gate_power = 27509.42f;
float noise_gate_slope = 0.3f; float noise_gate_slope = 0.3f;
size_t render_pre_window_size = 1; size_t render_pre_window_size = 1;
size_t render_post_window_size = 3; size_t render_post_window_size = 1;
float nonlinear_hold = 2; float nonlinear_hold = 1;
float nonlinear_release = 0.1f; float nonlinear_release = 0.001f;
} echo_model; } echo_model;
}; };
} // namespace webrtc } // namespace webrtc