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/main/source/
aec_core_sse2.c 362 static void OverdriveAndSuppressSSE2(aec_t *aec, float hNl[PART_LEN1],
373 __m128 vec_hNl = _mm_loadu_ps(&hNl[i]);
392 _mm_storeu_ps(&hNl[i], vec_hNl);
412 if (hNl[i] > hNlFb) {
413 hNl[i] = WebRtcAec_weightCurve[i] * hNlFb +
414 (1 - WebRtcAec_weightCurve[i]) * hNl[i];
416 hNl[i] = powf(hNl[i], aec->overDriveSm * WebRtcAec_overDriveCurve[i]);
419 efw[0][i] *= hNl[i];
420 efw[1][i] *= hNl[i]
    [all...]
aec_core.c 316 static void OverdriveAndSuppress(aec_t *aec, float hNl[PART_LEN1],
322 if (hNl[i] > hNlFb) {
323 hNl[i] = WebRtcAec_weightCurve[i] * hNlFb +
324 (1 - WebRtcAec_weightCurve[i]) * hNl[i];
326 hNl[i] = powf(hNl[i], aec->overDriveSm * WebRtcAec_overDriveCurve[i]);
329 efw[0][i] *= hNl[i];
330 efw[1][i] *= hNl[i];
787 float hNl[PART_LEN1];
974 memcpy(hNl, cohde, sizeof(hNl))
    [all...]
aec_core.h 178 (aec_t *aec, float hNl[PART_LEN1], const float hNlFb, float efw[2][PART_LEN1]);

Completed in 119 milliseconds