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

  /external/webrtc/src/modules/audio_processing/aec/
aec_rdft.c 121 int j, nwh; local
126 nwh = nw >> 1;
127 delta = atanf(1.0f) / nwh;
130 rdft_w[nwh] = cosf(delta * nwh);
131 rdft_w[nwh + 1] = rdft_w[nwh];
132 for (j = 2; j < nwh; j += 2) {
  /external/webrtc/src/modules/audio_processing/utility/
fft4g.c 644 int j, nwh; local
650 nwh = nw >> 1;
651 delta = (float)atan(1.0f) / nwh;
654 w[nwh] = (float)cos(delta * nwh);
655 w[nwh + 1] = w[nwh];
656 if (nwh > 2) {
657 for (j = 2; j < nwh; j += 2) {
    [all...]

Completed in 260 milliseconds