Correcting the usage of the estimated echo path gain in AEC3

This CL corrects the usage of the estimated echo path gain to not be
hardcoded to 1. In order to retain the tuned behavior, the CL for now
maintains the former behavior in the code.

Bug: webrtc:9255,chromium:851187
Change-Id: I7f91c72e476680a8a854c22b74b1771fae446110
Reviewed-on: https://webrtc-review.googlesource.com/75510
Reviewed-by: Gustaf Ullberg <gustaf@webrtc.org>
Commit-Queue: Per Åhgren <peah@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#23190}
This commit is contained in:
Per Åhgren
2018-05-09 11:48:49 +02:00
committed by Commit Bot
parent e05c43cc39
commit ced31ba1cf
4 changed files with 20 additions and 8 deletions

View File

@ -62,9 +62,9 @@ struct EchoCanceller3Config {
} erle;
struct EpStrength {
float lf = 10.f;
float mf = 10.f;
float hf = 10.f;
float lf = 1.f;
float mf = 1.f;
float hf = 1.f;
float default_len = 0.f;
bool echo_can_saturate = true;
bool bounded_erl = false;