Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-03-08 00:47:41 +0300
committerMåns Rullgård <mans@mansr.com>2010-03-08 00:47:41 +0300
commit3bd8a2ef6c39caba25627ec6a608a15d07f3f8bb (patch)
tree94e4507814860bbfe9247ffa7da1c077dc490bd8 /libavcodec
parent0f8e4dfe6ed913741e4711c6e7deb3272de2f164 (diff)
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.c4
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>