comparison fft.c @ 11370:4b3da727d832 libavcodec

Move FFT parts from dsputil.h to fft.h
author mru
date Sat, 06 Mar 2010 14:34:46 +0000
parents e45c852b6820
children 6f1697664bf2
comparison
equal deleted inserted replaced
11369:98970e51365a 11370:4b3da727d832
24 /** 24 /**
25 * @file libavcodec/fft.c 25 * @file libavcodec/fft.c
26 * FFT/IFFT transforms. 26 * FFT/IFFT transforms.
27 */ 27 */
28 28
29 #include "dsputil.h" 29 #include "libavutil/mathematics.h"
30 #include "fft.h"
30 31
31 /* cos(2*pi*x/n) for 0<=x<=n/4, followed by its reverse */ 32 /* cos(2*pi*x/n) for 0<=x<=n/4, followed by its reverse */
32 #if !CONFIG_HARDCODED_TABLES 33 #if !CONFIG_HARDCODED_TABLES
33 COSTABLE(16); 34 COSTABLE(16);
34 COSTABLE(32); 35 COSTABLE(32);