Searched refs:scale (Results 1 – 1 of 1) sorted by relevance
275 const struct lc3_complex *x, float *y, float scale) in mdct_post_fft() argument286 float u0 = (x0->im * w0->im + x0->re * w0->re) * scale; in mdct_post_fft()287 float u1 = (x1->re * w1->im - x1->im * w1->re) * scale; in mdct_post_fft()289 float v0 = (x0->re * w0->im - x0->im * w0->re) * scale; in mdct_post_fft()290 float v1 = (x1->im * w1->im + x1->re * w1->re) * scale; in mdct_post_fft()340 const struct lc3_complex *x, float *y, float scale) in imdct_post_fft() argument353 *(y0++) = (uz.re * uw.im - uz.im * uw.re) * scale; in imdct_post_fft()354 *(--y1) = (uz.re * uw.re + uz.im * uw.im) * scale; in imdct_post_fft()356 *(--y1) = (vz.re * vw.im - vz.im * vw.re) * scale; in imdct_post_fft()357 *(y0++) = (vz.re * vw.re + vz.im * vw.im) * scale; in imdct_post_fft()