| 2242 | const void* dct_wave, const void* spec, void* buf ); |
| 2243 | |
| 2244 | static void DCT_32f(const float* src, int src_step, float* dft_src, float* dft_dst, |
| 2245 | float* dst, int dst_step, int n, int nf, int* factors, const int* itab, |
| 2246 | const Complexf* dft_wave, const Complexf* dct_wave, const void* spec, Complexf* buf ) |
| 2247 | { |
| 2248 | DCT(src, src_step, dft_src, dft_dst, dst, dst_step, |
| 2249 | n, nf, factors, itab, dft_wave, dct_wave, spec, buf); |
| 2250 | } |
| 2251 | |
| 2252 | static void IDCT_32f(const float* src, int src_step, float* dft_src, float* dft_dst, |
| 2253 | float* dst, int dst_step, int n, int nf, int* factors, const int* itab, |