| 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 6cf0b744e6f5c040c81f7b8798e0992008c96b63..95a6078e5720fba267203820732dcdefda8de517 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;
 | 
|  }
 | 
| 
 |