diff options
author | Alex Converse <alex.converse@gmail.com> | 2008-11-24 00:13:50 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2008-11-24 00:13:50 +0000 |
commit | 7633a0415d80b6813a0ea23405f3857127c02dab (patch) | |
tree | e6a21a24c80dc1dc271c787ff70c5994720c1558 /libavcodec/aactab.c | |
parent | e9d0fdef533fc9ec158d27fe73f5461387155c49 (diff) | |
download | ffmpeg-7633a0415d80b6813a0ea23405f3857127c02dab.tar.gz |
AAC: Frequency domain prediction and hence Main profile support
Patch by Alex Converse ( alex converse gmail com )
Originally committed as revision 15919 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aactab.c')
-rw-r--r-- | libavcodec/aactab.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/aactab.c b/libavcodec/aactab.c index 0a8b032481..3eab636cc4 100644 --- a/libavcodec/aactab.c +++ b/libavcodec/aactab.c @@ -43,6 +43,10 @@ const uint8_t ff_aac_num_swb_128[] = { 12, 12, 12, 14, 14, 14, 15, 15, 15, 15, 15, 15 }; +const uint8_t ff_aac_pred_sfb_max[] = { + 33, 33, 38, 40, 40, 40, 41, 41, 37, 37, 37, 34 +}; + const uint32_t ff_aac_scalefactor_code[121] = { 0x3ffe8, 0x3ffe6, 0x3ffe7, 0x3ffe5, 0x7fff5, 0x7fff1, 0x7ffed, 0x7fff6, 0x7ffee, 0x7ffef, 0x7fff0, 0x7fffc, 0x7fffd, 0x7ffff, 0x7fffe, 0x7fff7, |