Chromium Code Reviews| Index: webrtc/modules/audio_processing/aec3/echo_canceller3.cc |
| diff --git a/webrtc/modules/audio_processing/aec3/echo_canceller3.cc b/webrtc/modules/audio_processing/aec3/echo_canceller3.cc |
| index 60efced0ecaf96ce9534ed8b963fe7e11d0896d7..ed12a4799535155b60e237a7082a0b4f184c2b03 100644 |
| --- a/webrtc/modules/audio_processing/aec3/echo_canceller3.cc |
| +++ b/webrtc/modules/audio_processing/aec3/echo_canceller3.cc |
| @@ -260,7 +260,7 @@ bool EchoCanceller3::AnalyzeRender(AudioBuffer* render) { |
| void EchoCanceller3::AnalyzeCapture(AudioBuffer* capture) { |
| RTC_DCHECK_RUNS_SERIALIZED(&capture_race_checker_); |
| RTC_DCHECK(capture); |
| - data_dumper_->DumpWav("aec3_capture_analyze_input", frame_length_, |
| + data_dumper_->DumpWav("aec3_capture_analyze_input", capture->num_frames(), |
|
peah-webrtc
2017/02/27 14:26:03
The framelength was wrong here before.
|
| capture->channels_f()[0], sample_rate_hz_, 1); |
| saturated_microphone_signal_ = false; |