Index: webrtc/modules/audio_processing/aec/aec_core.c |
diff --git a/webrtc/modules/audio_processing/aec/aec_core.c b/webrtc/modules/audio_processing/aec/aec_core.c |
index 06bdd240b3608842f2b787fba5b8156a7086f3ce..5ed7560d293c667fd25ddebec70c46012f70d1a0 100644 |
--- a/webrtc/modules/audio_processing/aec/aec_core.c |
+++ b/webrtc/modules/audio_processing/aec/aec_core.c |
@@ -432,11 +432,11 @@ static void SubbandCoherence(AecCore* aec, |
static void GetHighbandGain(const float* lambda, float* nlpGainHband) { |
int i; |
- nlpGainHband[0] = (float)0.0; |
+ *nlpGainHband = (float)0.0; |
for (i = freqAvgIc; i < PART_LEN1 - 1; i++) { |
- nlpGainHband[0] += lambda[i]; |
+ *nlpGainHband += lambda[i]; |
} |
- nlpGainHband[0] /= (float)(PART_LEN1 - 1 - freqAvgIc); |
+ *nlpGainHband /= (float)(PART_LEN1 - 1 - freqAvgIc); |
} |
static void ComfortNoise(AecCore* aec, |
@@ -1057,11 +1057,6 @@ static void EchoSuppression(AecCore* aec, |
aec->delayEstCtr = 0; |
} |
- // initialize comfort noise for H band |
- memset(comfortNoiseHband, 0, sizeof(comfortNoiseHband)); |
- nlpGainHband = (float)0.0; |
- dtmp = (float)0.0; |
- |
// We should always have at least one element stored in |far_buf|. |
assert(WebRtc_available_read(aec->far_buf_windowed) > 0); |
// NLP |
@@ -1184,6 +1179,7 @@ static void EchoSuppression(AecCore* aec, |
WebRtcAec_OverdriveAndSuppress(aec, hNl, hNlFb, efw); |
// Add comfort noise. |
+ memset(comfortNoiseHband, 0, sizeof(comfortNoiseHband)); |
WebRtcAec_ComfortNoise(aec, efw, comfortNoiseHband, aec->noisePow, hNl); |
// TODO(bjornv): Investigate how to take the windowing below into account if |