diff options
author | Mans Rullgard <mans@mansr.com> | 2011-03-20 02:14:25 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-03-20 17:15:33 +0000 |
commit | 0aded9484da7da6fe23254e23382767635f8360a (patch) | |
tree | 0985f60e2b35fb272782726c00e2ccb78cae3519 /libavcodec/arm/fft_init_arm.c | |
parent | 4538729afed44a0ee0a762d3ef69aa4bbb7f10b3 (diff) | |
download | ffmpeg-0aded9484da7da6fe23254e23382767635f8360a.tar.gz |
Move dct and rdft definitions to separate files
This leaves fft.h with only the core FFT and MDCT definitions
thus making it more managable.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/arm/fft_init_arm.c')
-rw-r--r-- | libavcodec/arm/fft_init_arm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/arm/fft_init_arm.c b/libavcodec/arm/fft_init_arm.c index f898e1ab42..4ee4909682 100644 --- a/libavcodec/arm/fft_init_arm.c +++ b/libavcodec/arm/fft_init_arm.c @@ -19,6 +19,7 @@ */ #include "libavcodec/fft.h" +#include "libavcodec/rdft.h" #include "libavcodec/synth_filter.h" void ff_fft_permute_neon(FFTContext *s, FFTComplex *z); |