diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-25 13:22:09 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-25 13:59:53 +0200 |
commit | f267d553f76f8ef75d3dbfb148ee847ff3c11dac (patch) | |
tree | 5129906d10f497acd2c22d4dbe82e5a3ef18a370 /libavcodec/aactab.h | |
parent | 17cc35c76b925a5558ee23cf54926b4c8ca4ad7d (diff) | |
download | ffmpeg-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/aactab.h')
-rw-r--r-- | libavcodec/aactab.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/aactab.h b/libavcodec/aactab.h index 380a1acf31..c115b05d65 100644 --- a/libavcodec/aactab.h +++ b/libavcodec/aactab.h @@ -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 |