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

  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_core.c 268 float hNl[PART_LEN1],
274 if (hNl[i] > hNlFb) {
275 hNl[i] = WebRtcAec_weightCurve[i] * hNlFb +
276 (1 - WebRtcAec_weightCurve[i]) * hNl[i];
278 hNl[i] = powf(hNl[i], aec->overDriveSm * WebRtcAec_overDriveCurve[i]);
281 efw[0][i] *= hNl[i];
282 efw[1][i] *= hNl[i];
804 float hNl[PART_LEN1];
870 memcpy(hNl, cohde, sizeof(hNl))
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/
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...]

Completed in 703 milliseconds