Chromium Code Reviews| Index: webrtc/modules/audio_processing/test/aec_dump_based_simulator.h |
| diff --git a/webrtc/modules/audio_processing/test/aec_dump_based_simulator.h b/webrtc/modules/audio_processing/test/aec_dump_based_simulator.h |
| index 7f98f43b66d1e7b233c24d79117b6d63093b643e..0dbd4baf4c883df4f6ea1dd53321a4b8b07eb259 100644 |
| --- a/webrtc/modules/audio_processing/test/aec_dump_based_simulator.h |
| +++ b/webrtc/modules/audio_processing/test/aec_dump_based_simulator.h |
| @@ -30,9 +30,8 @@ namespace test { |
| // Used to perform an audio processing simulation from an aec dump. |
| class AecDumpBasedSimulator final : public AudioProcessingSimulator { |
| public: |
| - explicit AecDumpBasedSimulator(const SimulationSettings& settings) |
| - : AudioProcessingSimulator(settings) {} |
| - ~AecDumpBasedSimulator() override {} |
| + explicit AecDumpBasedSimulator(const SimulationSettings& settings); |
| + ~AecDumpBasedSimulator() override; |
| // Processes the messages in the aecdump file. |
| void Process() override; |
| @@ -55,6 +54,8 @@ class AecDumpBasedSimulator final : public AudioProcessingSimulator { |
| }; |
| FILE* dump_input_file_; |
| + std::unique_ptr<WavReader> artificial_nearend_file_; |
|
ivoc
2016/12/08 10:55:19
I think this can be removed, it does not seem to b
peah-webrtc
2016/12/08 12:02:26
Good find!
Done.
|
| + std::unique_ptr<ChannelBufferWavReader> artificial_nearend_buffer_reader_; |
|
ivoc
2016/12/08 10:55:19
This can be removed as well right? The same member
peah-webrtc
2016/12/08 12:02:26
Good find!
Done.
|
| InterfaceType interface_used_ = InterfaceType::kNotSpecified; |
| RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AecDumpBasedSimulator); |