Further utilizing the AEC3 config struct for constants

BUG=webrtc:5298

Review-Url: https://codereview.webrtc.org/3007833002
Cr-Commit-Position: refs/heads/master@{#19605}
This commit is contained in:
peah
2017-08-30 06:58:44 -07:00
committed by Commit Bot
parent b57f42676e
commit 4fed3c0b6f
12 changed files with 87 additions and 40 deletions

View File

@ -292,8 +292,14 @@ class AudioProcessing : public rtc::RefCountInterface {
struct EchoAudibility {
float low_render_limit = 192.f;
float normal_render_limit = 64.f;
float active_render_limit = 100.f;
} echo_audibility;
struct RenderLevels {
float active_render_limit = 100.f;
float poor_excitation_render_limit = 150.f;
} render_levels;
struct GainUpdates {
struct GainChanges {
float max_inc;