diff options
author | Niel van der Westhuizen <espes@pequalsnp.com> | 2015-01-21 21:25:27 -0800 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2015-02-03 20:32:16 -0800 |
commit | 7640c4a371a97899dfb443d980fd0bf8ac587754 (patch) | |
tree | 0be8f41e66983b7ade6e4c65cead083116fb744d /libavcodec/aacdec.c | |
parent | 0ee2573347ecdb9cb5656001f7201d819eec16d8 (diff) | |
download | ffmpeg-7640c4a371a97899dfb443d980fd0bf8ac587754.tar.gz |
aacdec: Tables for length 480 AAC ELD.
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r-- | libavcodec/aacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index 80dc79d162..f868b7f94e 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -2457,7 +2457,7 @@ static void imdct_and_windowing_eld(AACContext *ac, SingleChannelElement *sce) float *in = sce->coeffs; float *out = sce->ret; float *saved = sce->saved; - const float *const window = ff_aac_eld_window; + const float *const window = ff_aac_eld_window_512; float *buf = ac->buf_mdct; int i; const int n = 512; |