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

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

Issue 2678423005: Finalization of the first version of EchoCanceller 3 (Closed)
Patch Set: Fixed compilation error 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/matched_filter_lag_aggregator.cc
diff --git a/webrtc/modules/audio_processing/aec3/matched_filter_lag_aggregator.cc b/webrtc/modules/audio_processing/aec3/matched_filter_lag_aggregator.cc
index d9176efa94fbd76f6d2fbbffa121e7ba2f68e54d..3734ed80e0fb26de07b1bda503fe4db6326bb5ee 100644
--- a/webrtc/modules/audio_processing/aec3/matched_filter_lag_aggregator.cc
+++ b/webrtc/modules/audio_processing/aec3/matched_filter_lag_aggregator.cc
@@ -59,7 +59,7 @@ rtc::Optional<size_t> MatchedFilterLagAggregator::Aggregate(
candidate_ = lag_estimates[best_lag_estimate_index].lag;
}
- return candidate_counter_ >= 10 ? rtc::Optional<size_t>(candidate_)
+ return candidate_counter_ >= 15 ? rtc::Optional<size_t>(candidate_)
: rtc::Optional<size_t>();
}

Powered by Google App Engine
This is Rietveld 408576698