diff options
author | Niel van der Westhuizen <espes@pequalsnp.com> | 2015-01-21 21:25:27 -0800 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2015-02-03 20:32:16 -0800 |
commit | 7640c4a371a97899dfb443d980fd0bf8ac587754 (patch) | |
tree | 0be8f41e66983b7ade6e4c65cead083116fb744d /libavcodec/aactab.h | |
parent | 0ee2573347ecdb9cb5656001f7201d819eec16d8 (diff) | |
download | ffmpeg-7640c4a371a97899dfb443d980fd0bf8ac587754.tar.gz |
aacdec: Tables for length 480 AAC ELD.
Diffstat (limited to 'libavcodec/aactab.h')
-rw-r--r-- | libavcodec/aactab.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/aactab.h b/libavcodec/aactab.h index d19b3fd4d2..fc26db8a4d 100644 --- a/libavcodec/aactab.h +++ b/libavcodec/aactab.h @@ -46,7 +46,8 @@ */ DECLARE_ALIGNED(32, extern float, ff_aac_kbd_long_1024)[1024]; DECLARE_ALIGNED(32, extern float, ff_aac_kbd_short_128)[128]; -const DECLARE_ALIGNED(32, extern float, ff_aac_eld_window)[1920]; +const DECLARE_ALIGNED(32, extern float, ff_aac_eld_window_512)[1920]; +const DECLARE_ALIGNED(32, extern float, ff_aac_eld_window_480)[1800]; // @} /* @name number of scalefactor window bands for long and short transform windows respectively @@ -54,6 +55,7 @@ const DECLARE_ALIGNED(32, extern float, ff_aac_eld_window)[1920]; */ extern const uint8_t ff_aac_num_swb_1024[]; extern const uint8_t ff_aac_num_swb_512 []; +extern const uint8_t ff_aac_num_swb_480 []; extern const uint8_t ff_aac_num_swb_128 []; // @} @@ -72,10 +74,12 @@ extern const uint16_t *ff_aac_codebook_vector_idx[]; extern const uint16_t * const ff_swb_offset_1024[13]; extern const uint16_t * const ff_swb_offset_512 [13]; +extern const uint16_t * const ff_swb_offset_480 [13]; extern const uint16_t * const ff_swb_offset_128 [13]; extern const uint8_t ff_tns_max_bands_1024[13]; extern const uint8_t ff_tns_max_bands_512 [13]; +extern const uint8_t ff_tns_max_bands_480 [13]; extern const uint8_t ff_tns_max_bands_128 [13]; #endif /* AVCODEC_AACTAB_H */ |