Chromium Code Reviews| 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; |