summaryrefslogtreecommitdiffstats
path: root/libavcodec/aacdec_template.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-07-25 13:22:09 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-07-25 13:59:53 +0200
commitf267d553f76f8ef75d3dbfb148ee847ff3c11dac (patch)
tree5129906d10f497acd2c22d4dbe82e5a3ef18a370 /libavcodec/aacdec_template.c
parent17cc35c76b925a5558ee23cf54926b4c8ca4ad7d (diff)
downloadffmpeg-streaming-f267d553f76f8ef75d3dbfb148ee847ff3c11dac.zip
ffmpeg-streaming-f267d553f76f8ef75d3dbfb148ee847ff3c11dac.tar.gz
avcodec/aactab: Add ff_aac_eld_window_480_fixed
Fixes pointer type mismatch Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/aacdec_template.c')
-rw-r--r--libavcodec/aacdec_template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec_template.c b/libavcodec/aacdec_template.c
index b4eee85..acca460 100644
--- a/libavcodec/aacdec_template.c
+++ b/libavcodec/aacdec_template.c
@@ -2598,7 +2598,7 @@ static void imdct_and_windowing_eld(AACContext *ac, SingleChannelElement *sce)
const int n = ac->oc[1].m4ac.frame_length_short ? 480 : 512;
const int n2 = n >> 1;
const int n4 = n >> 2;
- const INTFLOAT *const window = n == 480 ? ff_aac_eld_window_480 :
+ const INTFLOAT *const window = n == 480 ? AAC_RENAME(ff_aac_eld_window_480) :
AAC_RENAME(ff_aac_eld_window_512);
// Inverse transform, mapped to the conventional IMDCT by
OpenPOWER on IntegriCloud