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

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

Issue 2720973005: Added further tuning of AEC3 (Closed)
Patch Set: Further tuning of AEC3 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/residual_echo_estimator.cc
diff --git a/webrtc/modules/audio_processing/aec3/residual_echo_estimator.cc b/webrtc/modules/audio_processing/aec3/residual_echo_estimator.cc
index 18a07b2f5a158eb1b649e3f549e5d4da6fd93d2b..45d3a5f79b48448289a1b38f77dd016129e0db6f 100644
--- a/webrtc/modules/audio_processing/aec3/residual_echo_estimator.cc
+++ b/webrtc/modules/audio_processing/aec3/residual_echo_estimator.cc
@@ -29,7 +29,7 @@ void InfiniteErlPowerEstimate(
size_t blocks_since_last_saturation,
const std::array<float, kFftLengthBy2Plus1>& S2_fallback,
std::array<float, kFftLengthBy2Plus1>* R2) {
- if (active_render_blocks > 5 * 250) {
+ if (active_render_blocks > 20 * 250) {
// After an amount of active render samples for which an echo should have
// been detected in the capture signal if the ERL was not infinite, set the
// residual echo to 0.
« no previous file with comments | « webrtc/modules/audio_processing/aec3/power_echo_model.cc ('k') | webrtc/modules/audio_processing/aec3/suppression_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698