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/binkaudio.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/binkaudio.c')
-rw-r--r-- | libavcodec/binkaudio.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/binkaudio.c b/libavcodec/binkaudio.c index ec1d0233c6..77ce6b9d3a 100644 --- a/libavcodec/binkaudio.c +++ b/libavcodec/binkaudio.c @@ -32,7 +32,8 @@ #define ALT_BITSTREAM_READER_LE #include "get_bits.h" #include "dsputil.h" -#include "fft.h" +#include "dct.h" +#include "rdft.h" #include "fmtconvert.h" #include "libavutil/intfloat_readwrite.h" |