Searched refs:hNl (Results 1 - 3 of 3) sorted by relevance

/external/webrtc/src/modules/audio_processing/aec/
H A Daec_core_sse2.c344 static void OverdriveAndSuppressSSE2(aec_t *aec, float hNl[PART_LEN1], argument
355 __m128 vec_hNl = _mm_loadu_ps(&hNl[i]);
374 _mm_storeu_ps(&hNl[i], vec_hNl);
394 if (hNl[i] > hNlFb) {
395 hNl[i] = WebRtcAec_weightCurve[i] * hNlFb +
396 (1 - WebRtcAec_weightCurve[i]) * hNl[i];
398 hNl[i] = powf(hNl[i], aec->overDriveSm * WebRtcAec_overDriveCurve[i]);
401 efw[0][i] *= hNl[i];
402 efw[1][i] *= hNl[
[all...]
H A Daec_core.c358 static void OverdriveAndSuppress(aec_t *aec, float hNl[PART_LEN1], argument
364 if (hNl[i] > hNlFb) {
365 hNl[i] = WebRtcAec_weightCurve[i] * hNlFb +
366 (1 - WebRtcAec_weightCurve[i]) * hNl[i];
368 hNl[i] = powf(hNl[i], aec->overDriveSm * WebRtcAec_overDriveCurve[i]);
371 efw[0][i] *= hNl[i];
372 efw[1][i] *= hNl[i];
864 float hNl[PART_LEN1]; local
1043 memcpy(hNl, cohd
[all...]
H A Daec_core.h164 (aec_t *aec, float hNl[PART_LEN1], const float hNlFb, float efw[2][PART_LEN1]);

Completed in 272 milliseconds