HomeSort by relevance Sort by last modified time
    Searched refs:hNl (Results 1 - 3 of 3) sorted by null

  /external/webrtc/src/modules/audio_processing/aec/
aec_core_sse2.c 344 static void OverdriveAndSuppressSSE2(aec_t *aec, float hNl[PART_LEN1],
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[i]
    [all...]
aec_core.c 358 static void OverdriveAndSuppress(aec_t *aec, float hNl[PART_LEN1],
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];
    [all...]
aec_core.h 164 (aec_t *aec, float hNl[PART_LEN1], const float hNlFb, float efw[2][PART_LEN1]);

Completed in 33 milliseconds