Correcting the enabling of the level controller in the audio processing simulator

BUG=

Review-Url: https://codereview.webrtc.org/2337133005
Cr-Commit-Position: refs/heads/master@{#14247}
This commit is contained in:
peah 2016-09-16 00:01:35 -07:00 committed by Commit bot
parent 74e1a4f96a
commit 2dc4cdeea7

View File

@ -443,7 +443,7 @@ void AecDumpBasedSimulator::HandleMessage(
}
if (settings_.use_lc) {
apm_config.level_controller.enabled = true;
apm_config.level_controller.enabled = *settings_.use_lc;
}
ap_->ApplyConfig(apm_config);