Commit f267d553 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/aactab: Add ff_aac_eld_window_480_fixed

Fixes pointer type mismatch
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 17cc35c7
......@@ -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
......
This diff is collapsed.
......@@ -52,6 +52,7 @@ DECLARE_ALIGNED(32, extern int, ff_aac_kbd_short_128_fixed)[128];
const DECLARE_ALIGNED(32, extern float, ff_aac_eld_window_512)[1920];
const DECLARE_ALIGNED(32, extern int, ff_aac_eld_window_512_fixed)[1920];
const DECLARE_ALIGNED(32, extern float, ff_aac_eld_window_480)[1800];
const DECLARE_ALIGNED(32, extern int, ff_aac_eld_window_480_fixed)[1800];
// @}
/* @name number of scalefactor window bands for long and short transform windows respectively
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment