diff dct.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 0985f1f7ab72
children e3b680f6c106
line wrap: on
line diff
--- a/dct.c	Sat Mar 06 14:24:59 2010 +0000
+++ b/dct.c	Sat Mar 06 14:34:46 2010 +0000
@@ -28,7 +28,8 @@
  */
 
 #include <math.h>
-#include "dsputil.h"
+#include "libavutil/mathematics.h"
+#include "fft.h"
 
 av_cold int ff_dct_init(DCTContext *s, int nbits, int inverse)
 {