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

Unified Diff: webrtc/modules/audio_processing/level_controller/lc_constants.h

Issue 2111553002: Improved tuning of the adaptive level controller. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@ALC_RC9_CL
Patch Set: Created 4 years, 6 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/level_controller/lc_constants.h
diff --git a/webrtc/modules/audio_processing/level_controller/lc_constants.h b/webrtc/modules/audio_processing/level_controller/lc_constants.h
index 4a64d02af75e23db84cc491eb62398eb1213a6e6..3390cc96e5e12bb97abfc15ebf72b02db23853cf 100644
--- a/webrtc/modules/audio_processing/level_controller/lc_constants.h
+++ b/webrtc/modules/audio_processing/level_controller/lc_constants.h
@@ -13,9 +13,9 @@
namespace webrtc {
-const float kMaxLcGain = 45;
-const float kMaxLcNoisePower = 200.f * 200.f;
-const float kTargetLcPeakLevel = 0.8f * 32767.f;
+const float kMaxLcGain = 10;
+const float kMaxLcNoisePower = 100.f * 100.f;
+const float kTargetLcPeakLevel = 0.5f * 32767.f;
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698