diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-07 21:47:41 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-07 21:47:41 +0000 |
commit | 3bd8a2ef6c39caba25627ec6a608a15d07f3f8bb (patch) | |
tree | 94e4507814860bbfe9247ffa7da1c077dc490bd8 /libavcodec | |
parent | 0f8e4dfe6ed913741e4711c6e7deb3272de2f164 (diff) | |
download | ffmpeg-3bd8a2ef6c39caba25627ec6a608a15d07f3f8bb.tar.gz |
Update include directives in fft-test.c
Originally committed as revision 22289 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/fft-test.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/fft-test.c b/libavcodec/fft-test.c index f07ef032f8..e51736727f 100644 --- a/libavcodec/fft-test.c +++ b/libavcodec/fft-test.c @@ -23,8 +23,10 @@ * FFT and MDCT tests. */ +#include "libavutil/mathematics.h" #include "libavutil/lfg.h" -#include "dsputil.h" +#include "libavutil/log.h" +#include "fft.h" #include <math.h> #include <unistd.h> #include <sys/time.h> |