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

Unified Diff: webrtc/modules/audio_processing/residual_echo_detector_unittest.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 | « webrtc/modules/audio_processing/echo_detector/normalized_covariance_estimator.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/residual_echo_detector_unittest.cc
diff --git a/webrtc/modules/audio_processing/residual_echo_detector_unittest.cc b/webrtc/modules/audio_processing/residual_echo_detector_unittest.cc
index 7f6cf16abd57af5c7e5bb33db4c9efd6541eab97..9ba3bf4e401306f02312a673e6f8916a7c79e75e 100644
--- a/webrtc/modules/audio_processing/residual_echo_detector_unittest.cc
+++ b/webrtc/modules/audio_processing/residual_echo_detector_unittest.cc
@@ -88,8 +88,8 @@ TEST(ResidualEchoDetectorTests, EchoWithRenderClockDrift) {
// render buffer, clock drift can only be discovered after a certain delay.
// A growing buffer can be caused by jitter or clock drift and it's not
// possible to make this decision right away. For this reason we only expect
- // an echo likelihood of 80% in this test.
- EXPECT_GT(echo_detector.echo_likelihood(), 0.8f);
+ // an echo likelihood of 75% in this test.
+ EXPECT_GT(echo_detector.echo_likelihood(), 0.75f);
}
TEST(ResidualEchoDetectorTests, EchoWithCaptureClockDrift) {
« no previous file with comments | « webrtc/modules/audio_processing/echo_detector/normalized_covariance_estimator.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698