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

Unified Diff: webrtc/modules/audio_processing/echo_detector/mean_variance_estimator.cc

Issue 2506643002: Update the alpha value in the echo detector. (Closed)
Patch Set: Relaxed some of the unittests due to the slower adaption caused by the lower alpha values. Created 4 years, 1 month 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
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/echo_detector/mean_variance_estimator_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/echo_detector/mean_variance_estimator.cc
diff --git a/webrtc/modules/audio_processing/echo_detector/mean_variance_estimator.cc b/webrtc/modules/audio_processing/echo_detector/mean_variance_estimator.cc
index e1236159e1dba2e9ec5f8b9e8530728587073492..06baf68b8a72ccd5d00118871a175b58a2585412 100644
--- a/webrtc/modules/audio_processing/echo_detector/mean_variance_estimator.cc
+++ b/webrtc/modules/audio_processing/echo_detector/mean_variance_estimator.cc
@@ -18,7 +18,7 @@ namespace webrtc {
namespace {
// Parameter controlling the adaptation speed.
-constexpr float kAlpha = 0.01f;
+constexpr float kAlpha = 0.001f;
} // namespace
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/echo_detector/mean_variance_estimator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698