| 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, |
| 2270 | const Complexd* dft_wave, const Complexd* dct_wave, const void* spec, Complexd* buf ) |
| 2271 | { |
| 2272 | IDCT(src, src_step, dft_src, dft_dst, dst, dst_step, |
| 2273 | n, nf, factors, itab, dft_wave, dct_wave, spec, buf); |
| 2274 | } |
| 2275 | |
| 2276 | } |
| 2277 |