| 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, |
| 2254 | const Complexf* dft_wave, const Complexf* dct_wave, const void* spec, Complexf* buf ) |
| 2255 | { |
| 2256 | IDCT(src, src_step, dft_src, dft_dst, dst, dst_step, |
| 2257 | n, nf, factors, itab, dft_wave, dct_wave, spec, buf); |
| 2258 | } |
| 2259 | |
| 2260 | static void DCT_64f(const double* src, int src_step, double* dft_src, double* dft_dst, |
| 2261 | double* dst, int dst_step, int n, int nf, int* factors, const int* itab, |