comparison fft.c @ 11444:6f1697664bf2 libavcodec

Replace many includes of libavutil/common.h with what is actually needed This reduces the number of false dependencies on header files and speeds up compilation.
author mru
date Tue, 09 Mar 2010 17:39:19 +0000
parents 4b3da727d832
children 7dd2a45249a9
comparison
equal deleted inserted replaced
11443:361a5fcb4393 11444:6f1697664bf2
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 <stdlib.h>
30 #include <string.h>
29 #include "libavutil/mathematics.h" 31 #include "libavutil/mathematics.h"
30 #include "fft.h" 32 #include "fft.h"
31 33
32 /* cos(2*pi*x/n) for 0<=x<=n/4, followed by its reverse */ 34 /* cos(2*pi*x/n) for 0<=x<=n/4, followed by its reverse */
33 #if !CONFIG_HARDCODED_TABLES 35 #if !CONFIG_HARDCODED_TABLES