Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Unified Diff: webrtc/modules/audio_processing/aec3/echo_canceller3.cc

Issue 2717353002: Further tuning for AEC3 for initial echo suppression and handling of echo path changes (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698