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

Unified Diff: webrtc/modules/audio_processing/aec/aec_core_neon.cc

Issue 1887003002: Added support in the AEC for refined filter adaptation. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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/aec/aec_core_neon.cc
diff --git a/webrtc/modules/audio_processing/aec/aec_core_neon.cc b/webrtc/modules/audio_processing/aec/aec_core_neon.cc
index 69e8d52c916849757b3010266985b9da6f86693f..e4a90f80bdb3869b4931d30f7f447fb414da33d0 100644
--- a/webrtc/modules/audio_processing/aec/aec_core_neon.cc
+++ b/webrtc/modules/audio_processing/aec/aec_core_neon.cc
@@ -128,11 +128,10 @@ static float32x4_t vsqrtq_f32(float32x4_t s) {
#endif // WEBRTC_ARCH_ARM64
static void ScaleErrorSignalNEON(int extended_filter_enabled,
- float normal_mu,
+ float mu,
float normal_error_threshold,
float x_pow[PART_LEN1],
float ef[2][PART_LEN1]) {
tlegrand-webrtc 2016/04/14 14:32:42 Same comments as for the main function.
peah-webrtc 2016/04/14 22:12:41 Done.
- const float mu = extended_filter_enabled ? kExtendedMu : normal_mu;
const float error_threshold = extended_filter_enabled
? kExtendedErrorThreshold
: normal_error_threshold;

Powered by Google App Engine
This is Rietveld 408576698