diff options
author | Mans Rullgard <mans@mansr.com> | 2011-03-19 23:44:00 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-03-20 13:25:19 +0000 |
commit | 4538729afed44a0ee0a762d3ef69aa4bbb7f10b3 (patch) | |
tree | 746f6f85406a0100bff5684c1055c8922761d020 /libavcodec/nellymoserdec.c | |
parent | a45fbda994df54600101e845e29f0af60e456e95 (diff) | |
download | ffmpeg-4538729afed44a0ee0a762d3ef69aa4bbb7f10b3.tar.gz |
Move sine windows to a separate file
These windows do not really belong in fft/mdct files and were
easily confused with the similarly named tables used by rdft.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/nellymoserdec.c')
-rw-r--r-- | libavcodec/nellymoserdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c index 32cf56c9ff..5ad49abceb 100644 --- a/libavcodec/nellymoserdec.c +++ b/libavcodec/nellymoserdec.c @@ -39,6 +39,7 @@ #include "dsputil.h" #include "fft.h" #include "fmtconvert.h" +#include "sinewin.h" #define ALT_BITSTREAM_READER_LE #include "get_bits.h" |