Home
last modified time | relevance | path

Searched refs:hNlFb (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/src/modules/audio_processing/aec/
Daec_core_sse2.c345 const float hNlFb, in OverdriveAndSuppressSSE2() argument
348 const __m128 vec_hNlFb = _mm_set1_ps(hNlFb); in OverdriveAndSuppressSSE2()
394 if (hNl[i] > hNlFb) { in OverdriveAndSuppressSSE2()
395 hNl[i] = WebRtcAec_weightCurve[i] * hNlFb + in OverdriveAndSuppressSSE2()
Daec_core.c359 const float hNlFb, in OverdriveAndSuppress() argument
364 if (hNl[i] > hNlFb) { in OverdriveAndSuppress()
365 hNl[i] = WebRtcAec_weightCurve[i] * hNlFb + in OverdriveAndSuppress()
866 float hNlFb = 0, hNlFbLow = 0; in NonLinearProcessing() local
1044 hNlFb = hNlDeAvg; in NonLinearProcessing()
1051 hNlFb = hNlXdAvg; in NonLinearProcessing()
1060 hNlFb = hNlDeAvg; in NonLinearProcessing()
1073 hNlFb = hNlPref[(int)floor(prefBandQuant * (prefBandSize - 1))]; in NonLinearProcessing()
1106 WebRtcAec_OverdriveAndSuppress(aec, hNl, hNlFb, efw); in NonLinearProcessing()
Daec_core.h164 (aec_t *aec, float hNl[PART_LEN1], const float hNlFb, float efw[2][PART_LEN1]);