| 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, |
| 2262 | const Complexd* dft_wave, const Complexd* dct_wave, const void* spec, Complexd* buf ) |
| 2263 | { |
| 2264 | DCT(src, src_step, dft_src, dft_dst, dst, dst_step, |
| 2265 | n, nf, factors, itab, dft_wave, dct_wave, spec, buf); |
| 2266 | } |
| 2267 | |
| 2268 | static void IDCT_64f(const double* src, int src_step, double* dft_src, double* dft_dst, |
| 2269 | double* dst, int dst_step, int n, int nf, int* factors, const int* itab, |