# HG changeset patch # User mru # Date 1268156359 0 # Node ID 6f1697664bf23994b2ecf39461ab08be1e279567 # Parent 361a5fcb439320e603ad589174b5ac688ad43f68 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. diff -r 361a5fcb4393 -r 6f1697664bf2 fft.c --- a/fft.c Tue Mar 09 16:17:56 2010 +0000 +++ b/fft.c Tue Mar 09 17:39:19 2010 +0000 @@ -26,6 +26,8 @@ * FFT/IFFT transforms. */ +#include +#include #include "libavutil/mathematics.h" #include "fft.h" diff -r 361a5fcb4393 -r 6f1697664bf2 mdct.c --- a/mdct.c Tue Mar 09 16:17:56 2010 +0000 +++ b/mdct.c Tue Mar 09 17:39:19 2010 +0000 @@ -19,6 +19,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include +#include +#include "libavutil/common.h" #include "libavutil/mathematics.h" #include "fft.h" diff -r 361a5fcb4393 -r 6f1697664bf2 rdft.c --- a/rdft.c Tue Mar 09 16:17:56 2010 +0000 +++ b/rdft.c Tue Mar 09 17:39:19 2010 +0000 @@ -18,6 +18,7 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include #include #include "libavutil/mathematics.h" #include "fft.h"