| Index: webrtc/modules/audio_processing/test/wav_based_simulator.cc
|
| diff --git a/webrtc/modules/audio_processing/test/wav_based_simulator.cc b/webrtc/modules/audio_processing/test/wav_based_simulator.cc
|
| index 40253964b10caa5aa652088520be09e6d0a31fbd..89a801467e144b08f738b389f325c458a5f0522e 100644
|
| --- a/webrtc/modules/audio_processing/test/wav_based_simulator.cc
|
| +++ b/webrtc/modules/audio_processing/test/wav_based_simulator.cc
|
| @@ -55,7 +55,7 @@ WavBasedSimulator::GetCustomEventChain(const std::string& filename) {
|
| }
|
|
|
| WavBasedSimulator::WavBasedSimulator(const SimulationSettings& settings)
|
| - : AudioProcessingSimulator(settings) {}
|
| + : AudioProcessingSimulator(settings) {}
|
|
|
| WavBasedSimulator::~WavBasedSimulator() = default;
|
|
|
| @@ -79,10 +79,6 @@ void WavBasedSimulator::PrepareProcessStreamCall() {
|
|
|
| ap_->echo_cancellation()->set_stream_drift_samples(
|
| settings_.stream_drift_samples ? *settings_.stream_drift_samples : 0);
|
| -
|
| - RTC_CHECK_EQ(AudioProcessing::kNoError,
|
| - ap_->gain_control()->set_stream_analog_level(
|
| - last_specified_microphone_level_));
|
| }
|
|
|
| void WavBasedSimulator::PrepareReverseProcessStreamCall() {
|
| @@ -143,10 +139,6 @@ bool WavBasedSimulator::HandleProcessStreamCall() {
|
| if (samples_left_to_process) {
|
| PrepareProcessStreamCall();
|
| ProcessStream(settings_.fixed_interface);
|
| - // Call stream analog level to ensure that any side-effects are triggered.
|
| - (void)ap_->gain_control()->stream_analog_level();
|
| - last_specified_microphone_level_ =
|
| - ap_->gain_control()->stream_analog_level();
|
| }
|
| return samples_left_to_process;
|
| }
|
|
|