Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_core_mips.c648 const float hNlFb, in WebRtcAec_OverdriveAndSuppress_mips() argument
686 : [hNlFb] "f" (hNlFb), [one] "f" (one), [p_hNl] "r" (p_hNl) in WebRtcAec_OverdriveAndSuppress_mips()
Daec_core.c272 const float hNlFb, in OverdriveAndSuppress() argument
277 if (hNl[i] > hNlFb) { in OverdriveAndSuppress()
278 hNl[i] = WebRtcAec_weightCurve[i] * hNlFb + in OverdriveAndSuppress()
1019 float hNlFb = 0, hNlFbLow = 0; in EchoSuppression() local
1108 hNlFb = hNlDeAvg; in EchoSuppression()
1114 hNlFb = hNlXdAvg; in EchoSuppression()
1122 hNlFb = hNlDeAvg; in EchoSuppression()
1134 hNlFb = hNlPref[(int)floor(prefBandQuant * (prefBandSize - 1))]; in EchoSuppression()
1169 WebRtcAec_OverdriveAndSuppress(aec, hNl, hNlFb, efw); in EchoSuppression()
Daec_core_internal.h198 const float hNlFb,
Daec_core_neon.c384 const float hNlFb, in OverdriveAndSuppressNEON() argument
387 const float32x4_t vec_hNlFb = vmovq_n_f32(hNlFb); in OverdriveAndSuppressNEON()
439 if (hNl[i] > hNlFb) { in OverdriveAndSuppressNEON()
440 hNl[i] = WebRtcAec_weightCurve[i] * hNlFb + in OverdriveAndSuppressNEON()
Daec_core_sse2.c371 const float hNlFb, in OverdriveAndSuppressSSE2() argument
374 const __m128 vec_hNlFb = _mm_set1_ps(hNlFb); in OverdriveAndSuppressSSE2()
419 if (hNl[i] > hNlFb) { in OverdriveAndSuppressSSE2()
420 hNl[i] = WebRtcAec_weightCurve[i] * hNlFb + in OverdriveAndSuppressSSE2()