diff options
author | Lynne <dev@lynne.ee> | 2024-01-29 04:32:54 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2024-06-02 18:34:45 +0200 |
commit | a300ec3569f9edcd25b8c338854adefd4f620e00 (patch) | |
tree | d8b1f3daea66c78ce34b490bff12b1e475317f29 /libavcodec/aactab.h | |
parent | 7cd8a3f509507ebcdd87c8d1d497134a80742981 (diff) | |
download | ffmpeg-a300ec3569f9edcd25b8c338854adefd4f620e00.tar.gz |
aactab: add tables for the new USAC arithmetic coder
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 91262380d4..9d584ebbe5 100644 --- a/libavcodec/aactab.h +++ b/libavcodec/aactab.h @@ -93,6 +93,12 @@ extern const float *const ff_aac_codebook_vectors[]; extern const float *const ff_aac_codebook_vector_vals[]; extern const uint16_t *const ff_aac_codebook_vector_idx[]; +extern const uint16_t ff_aac_ac_msb_cdfs[64][17]; +extern const uint16_t ff_aac_ac_lsb_cdfs[3][4]; +extern const uint8_t ff_aac_ac_lookup_m[742]; +extern const uint32_t ff_aac_ac_hash_m[742]; +extern const uint16_t ff_aac_ac_cf_m[64][17]; + extern const uint16_t * const ff_swb_offset_1024[13]; extern const uint16_t * const ff_swb_offset_960 [13]; extern const uint16_t * const ff_swb_offset_512 [13]; |