diff options
author | Alex Converse <alex.converse@gmail.com> | 2009-06-12 21:14:45 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2009-06-12 21:14:45 +0000 |
commit | 85e9296f415c3349207cb0834ed28e8889d148ef (patch) | |
tree | 8ad7c728928577b97ba1a4c1d44d640ae6d05729 /libavcodec/aactab.h | |
parent | 70f99f8dd229daa33f6c251528cf02947e4e6419 (diff) | |
download | ffmpeg-85e9296f415c3349207cb0834ed28e8889d148ef.tar.gz |
Move TNS and swb_offset tables from aacdectab.h to aactab.c so that they can be
shared with the AAC encoder.
Originally committed as revision 19174 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aactab.h')
-rw-r--r-- | libavcodec/aactab.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/aactab.h b/libavcodec/aactab.h index dc62d5f376..fd0929c9c3 100644 --- a/libavcodec/aactab.h +++ b/libavcodec/aactab.h @@ -65,6 +65,12 @@ extern const uint16_t ff_aac_spectral_sizes[11]; extern const float *ff_aac_codebook_vectors[]; +extern const uint16_t *ff_swb_offset_1024[13]; +extern const uint16_t *ff_swb_offset_128 [13]; + +extern const uint8_t ff_tns_max_bands_1024[13]; +extern const uint8_t ff_tns_max_bands_128 [13]; + #if CONFIG_HARDCODED_TABLES extern const float ff_aac_pow2sf_tab[428]; #else |