diff options
author | Jovan Zelincevic <jovan.zelincevic@imgtec.com> | 2015-06-30 11:53:04 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-07-09 14:41:19 +0200 |
commit | 08be74ac8154e4a8936b7023cc3a7f5396fb182c (patch) | |
tree | 525d36863acea79bb815a2ce3a28db565a952f6e /libavcodec/aactab.h | |
parent | f497a9e84edb24c99a9043e1b21c7e48f3908e87 (diff) | |
download | ffmpeg-08be74ac8154e4a8936b7023cc3a7f5396fb182c.tar.gz |
libavcodec: Implementation of AAC_fixed_decoder (LC-module) [2/4]
Add fixed point implementation of functions for generating tables
Signed-off-by: Nedeljko Babic <nedeljko.babic@imgtec.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/aactab.h')
-rw-r--r-- | libavcodec/aactab.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/aactab.h b/libavcodec/aactab.h index 9f5a7e47bd..380a1acf31 100644 --- a/libavcodec/aactab.h +++ b/libavcodec/aactab.h @@ -46,7 +46,11 @@ */ DECLARE_ALIGNED(32, extern float, ff_aac_kbd_long_1024)[1024]; DECLARE_ALIGNED(32, extern float, ff_aac_kbd_short_128)[128]; +DECLARE_ALIGNED(32, extern int, ff_aac_kbd_long_1024_fixed)[1024]; +DECLARE_ALIGNED(32, extern int, ff_aac_kbd_long_512_fixed)[512]; +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]; // @} |