diff options
author | Måns Rullgård | 2010-03-06 14:34:46 +0000 |
---|---|---|
committer | Måns Rullgård | 2010-03-06 14:34:46 +0000 |
commit | 1429224b04cd10ef0d81c1c0d6eae82a5afad4d8 (patch) | |
tree | bf2a9dfa9f7a155d1163d96e76e98943a100bbb1 /libavcodec/dct.c | |
parent | 50e10cbd7a62bf7731bf00c1a190a7ae3d5b3831 (diff) |
Move FFT parts from dsputil.h to fft.h
Originally committed as revision 22235 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dct.c')
-rw-r--r-- | libavcodec/dct.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dct.c b/libavcodec/dct.c index 3776349df9..d627a55664 100644 --- a/libavcodec/dct.c +++ b/libavcodec/dct.c @@ -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) { |