Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1010)

Unified Diff: webrtc/modules/audio_processing/test/aec_dump_based_simulator.cc

Issue 2090583002: New module for the adaptive level controlling functionality in the audio processing module (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Temporarily deactivated the level controller until the CL with the proper tuning has been landed Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_processing/test/aec_dump_based_simulator.cc
diff --git a/webrtc/modules/audio_processing/test/aec_dump_based_simulator.cc b/webrtc/modules/audio_processing/test/aec_dump_based_simulator.cc
index adcfd8ec094aae7f5ee97708f74a50cf4d40e2b2..e21f42a1c53ff6295549f5ff3271f4e75a4f091f 100644
--- a/webrtc/modules/audio_processing/test/aec_dump_based_simulator.cc
+++ b/webrtc/modules/audio_processing/test/aec_dump_based_simulator.cc
@@ -441,6 +441,10 @@ void AecDumpBasedSimulator::HandleMessage(
config.Set<EchoCanceller3>(new EchoCanceller3(*settings_.use_aec3));
}
+ if (settings_.use_lc) {
+ config.Set<LevelControl>(new LevelControl(true));
+ }
+
ap_->SetExtraOptions(config);
}
}

Powered by Google App Engine
This is Rietveld 408576698