summaryrefslogtreecommitdiff
path: root/libavcodec/aacdec.c
diff options
context:
space:
mode:
authorNiel van der Westhuizen <espes@pequalsnp.com>2015-01-21 21:25:27 -0800
committerAlex Converse <alex.converse@gmail.com>2015-02-03 20:32:16 -0800
commit7640c4a371a97899dfb443d980fd0bf8ac587754 (patch)
tree0be8f41e66983b7ade6e4c65cead083116fb744d /libavcodec/aacdec.c
parent0ee2573347ecdb9cb5656001f7201d819eec16d8 (diff)
aacdec: Tables for length 480 AAC ELD.
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r--libavcodec/aacdec.c2
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;