OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
425 (aec->sd[i] * aec->se[i] + 1e-10f); | 425 (aec->sd[i] * aec->se[i] + 1e-10f); |
426 cohxd[i] = | 426 cohxd[i] = |
427 (aec->sxd[i][0] * aec->sxd[i][0] + aec->sxd[i][1] * aec->sxd[i][1]) / | 427 (aec->sxd[i][0] * aec->sxd[i][0] + aec->sxd[i][1] * aec->sxd[i][1]) / |
428 (aec->sx[i] * aec->sd[i] + 1e-10f); | 428 (aec->sx[i] * aec->sd[i] + 1e-10f); |
429 } | 429 } |
430 } | 430 } |
431 | 431 |
432 static void GetHighbandGain(const float* lambda, float* nlpGainHband) { | 432 static void GetHighbandGain(const float* lambda, float* nlpGainHband) { |
433 int i; | 433 int i; |
434 | 434 |
435 nlpGainHband[0] = (float)0.0; | 435 *nlpGainHband = (float)0.0; |
436 for (i = freqAvgIc; i < PART_LEN1 - 1; i++) { | 436 for (i = freqAvgIc; i < PART_LEN1 - 1; i++) { |
437 nlpGainHband[0] += lambda[i]; | 437 *nlpGainHband += lambda[i]; |
438 } | 438 } |
439 nlpGainHband[0] /= (float)(PART_LEN1 - 1 - freqAvgIc); | 439 *nlpGainHband /= (float)(PART_LEN1 - 1 - freqAvgIc); |
440 } | 440 } |
441 | 441 |
442 static void ComfortNoise(AecCore* aec, | 442 static void ComfortNoise(AecCore* aec, |
443 float efw[2][PART_LEN1], | 443 float efw[2][PART_LEN1], |
444 complex_t* comfortNoiseHband, | 444 complex_t* comfortNoiseHband, |
445 const float* noisePow, | 445 const float* noisePow, |
446 const float* lambda) { | 446 const float* lambda) { |
447 int i, num; | 447 int i, num; |
448 float rand[PART_LEN]; | 448 float rand[PART_LEN]; |
449 float noise, noiseAvg, tmp, tmpAvg; | 449 float noise, noiseAvg, tmp, tmpAvg; |
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1005 | 1005 |
1006 static void EchoSuppression(AecCore* aec, | 1006 static void EchoSuppression(AecCore* aec, |
1007 float* echo_subtractor_output, | 1007 float* echo_subtractor_output, |
1008 float* output, | 1008 float* output, |
1009 float* const* outputH) { | 1009 float* const* outputH) { |
1010 float efw[2][PART_LEN1]; | 1010 float efw[2][PART_LEN1]; |
1011 float xfw[2][PART_LEN1]; | 1011 float xfw[2][PART_LEN1]; |
1012 float dfw[2][PART_LEN1]; | 1012 float dfw[2][PART_LEN1]; |
1013 complex_t comfortNoiseHband[PART_LEN1]; | 1013 complex_t comfortNoiseHband[PART_LEN1]; |
1014 float fft[PART_LEN2]; | 1014 float fft[PART_LEN2]; |
1015 float scale, dtmp; | 1015 float scale, dtmp; |
minyue-webrtc
2015/12/04 09:54:48
Is dtmp used anywhere? delete it if not
hlundin-webrtc
2015/12/04 10:49:08
It looks like it is still used, but it can be made
peah-webrtc
2015/12/04 23:05:57
It is used. But is removed in one of the following
peah-webrtc
2015/12/04 23:05:57
True, but it will be removed later when that part
| |
1016 float nlpGainHband; | 1016 float nlpGainHband; |
1017 int i; | 1017 int i; |
1018 size_t j; | 1018 size_t j; |
1019 | 1019 |
1020 // Coherence and non-linear filter | 1020 // Coherence and non-linear filter |
1021 float cohde[PART_LEN1], cohxd[PART_LEN1]; | 1021 float cohde[PART_LEN1], cohxd[PART_LEN1]; |
1022 float hNlDeAvg, hNlXdAvg; | 1022 float hNlDeAvg, hNlXdAvg; |
1023 float hNl[PART_LEN1]; | 1023 float hNl[PART_LEN1]; |
1024 float hNlPref[kPrefBandSize]; | 1024 float hNlPref[kPrefBandSize]; |
1025 float hNlFb = 0, hNlFbLow = 0; | 1025 float hNlFb = 0, hNlFbLow = 0; |
(...skipping 24 matching lines...) Expand all Loading... | |
1050 // Windowed echo suppressor output ffts. | 1050 // Windowed echo suppressor output ffts. |
1051 WindowData(fft, aec->eBuf); | 1051 WindowData(fft, aec->eBuf); |
1052 aec_rdft_forward_128(fft); | 1052 aec_rdft_forward_128(fft); |
1053 StoreAsComplex(fft, efw); | 1053 StoreAsComplex(fft, efw); |
1054 | 1054 |
1055 aec->delayEstCtr++; | 1055 aec->delayEstCtr++; |
1056 if (aec->delayEstCtr == delayEstInterval) { | 1056 if (aec->delayEstCtr == delayEstInterval) { |
1057 aec->delayEstCtr = 0; | 1057 aec->delayEstCtr = 0; |
1058 } | 1058 } |
1059 | 1059 |
1060 // initialize comfort noise for H band | |
1061 memset(comfortNoiseHband, 0, sizeof(comfortNoiseHband)); | |
1062 nlpGainHband = (float)0.0; | |
1063 dtmp = (float)0.0; | |
1064 | |
1065 // We should always have at least one element stored in |far_buf|. | 1060 // We should always have at least one element stored in |far_buf|. |
1066 assert(WebRtc_available_read(aec->far_buf_windowed) > 0); | 1061 assert(WebRtc_available_read(aec->far_buf_windowed) > 0); |
1067 // NLP | 1062 // NLP |
1068 WebRtc_ReadBuffer(aec->far_buf_windowed, (void**)&xfw_ptr, &xfw[0][0], 1); | 1063 WebRtc_ReadBuffer(aec->far_buf_windowed, (void**)&xfw_ptr, &xfw[0][0], 1); |
1069 | 1064 |
1070 // TODO(bjornv): Investigate if we can reuse |far_buf_windowed| instead of | 1065 // TODO(bjornv): Investigate if we can reuse |far_buf_windowed| instead of |
1071 // |xfwBuf|. | 1066 // |xfwBuf|. |
1072 // Buffer far. | 1067 // Buffer far. |
1073 memcpy(aec->xfwBuf, xfw_ptr, sizeof(float) * 2 * PART_LEN1); | 1068 memcpy(aec->xfwBuf, xfw_ptr, sizeof(float) * 2 * PART_LEN1); |
1074 | 1069 |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1177 // Smooth the overdrive. | 1172 // Smooth the overdrive. |
1178 if (aec->overDrive < aec->overDriveSm) { | 1173 if (aec->overDrive < aec->overDriveSm) { |
1179 aec->overDriveSm = 0.99f * aec->overDriveSm + 0.01f * aec->overDrive; | 1174 aec->overDriveSm = 0.99f * aec->overDriveSm + 0.01f * aec->overDrive; |
1180 } else { | 1175 } else { |
1181 aec->overDriveSm = 0.9f * aec->overDriveSm + 0.1f * aec->overDrive; | 1176 aec->overDriveSm = 0.9f * aec->overDriveSm + 0.1f * aec->overDrive; |
1182 } | 1177 } |
1183 | 1178 |
1184 WebRtcAec_OverdriveAndSuppress(aec, hNl, hNlFb, efw); | 1179 WebRtcAec_OverdriveAndSuppress(aec, hNl, hNlFb, efw); |
1185 | 1180 |
1186 // Add comfort noise. | 1181 // Add comfort noise. |
1182 memset(comfortNoiseHband, 0, sizeof(comfortNoiseHband)); | |
1187 WebRtcAec_ComfortNoise(aec, efw, comfortNoiseHband, aec->noisePow, hNl); | 1183 WebRtcAec_ComfortNoise(aec, efw, comfortNoiseHband, aec->noisePow, hNl); |
1188 | 1184 |
1189 // TODO(bjornv): Investigate how to take the windowing below into account if | 1185 // TODO(bjornv): Investigate how to take the windowing below into account if |
1190 // needed. | 1186 // needed. |
1191 if (aec->metricsMode == 1) { | 1187 if (aec->metricsMode == 1) { |
1192 // Note that we have a scaling by two in the time domain |eBuf|. | 1188 // Note that we have a scaling by two in the time domain |eBuf|. |
1193 // In addition the time domain signal is windowed before transformation, | 1189 // In addition the time domain signal is windowed before transformation, |
1194 // losing half the energy on the average. We take care of the first | 1190 // losing half the energy on the average. We take care of the first |
1195 // scaling only in UpdateMetrics(). | 1191 // scaling only in UpdateMetrics(). |
1196 UpdateLevel(&aec->nlpoutlevel, efw); | 1192 UpdateLevel(&aec->nlpoutlevel, efw); |
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1986 int WebRtcAec_extended_filter_enabled(AecCore* self) { | 1982 int WebRtcAec_extended_filter_enabled(AecCore* self) { |
1987 return self->extended_filter_enabled; | 1983 return self->extended_filter_enabled; |
1988 } | 1984 } |
1989 | 1985 |
1990 int WebRtcAec_system_delay(AecCore* self) { return self->system_delay; } | 1986 int WebRtcAec_system_delay(AecCore* self) { return self->system_delay; } |
1991 | 1987 |
1992 void WebRtcAec_SetSystemDelay(AecCore* self, int delay) { | 1988 void WebRtcAec_SetSystemDelay(AecCore* self, int delay) { |
1993 assert(delay >= 0); | 1989 assert(delay >= 0); |
1994 self->system_delay = delay; | 1990 self->system_delay = delay; |
1995 } | 1991 } |
OLD | NEW |