diff options
author | Lynne <dev@lynne.ee> | 2024-03-16 04:03:12 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2024-04-23 08:31:36 +0200 |
commit | b7387ea00e8346022877f2f082ce2d2bc7a217e5 (patch) | |
tree | dd6796622ffa90d423bc6b4bd391b76ebc033171 /libavcodec/aac/aacdec_fixed.c | |
parent | 41ae2b03a5cf87f9673f82efbc9cea53df70f150 (diff) | |
download | ffmpeg-b7387ea00e8346022877f2f082ce2d2bc7a217e5.tar.gz |
aacdec: deduplicate table initizalization
All tables now initialized by aac/aacdec_fixed|float
Diffstat (limited to 'libavcodec/aac/aacdec_fixed.c')
-rw-r--r-- | libavcodec/aac/aacdec_fixed.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/aac/aacdec_fixed.c b/libavcodec/aac/aacdec_fixed.c index a2ddc5aac2..08e9c3a03f 100644 --- a/libavcodec/aac/aacdec_fixed.c +++ b/libavcodec/aac/aacdec_fixed.c @@ -47,6 +47,8 @@ DECLARE_ALIGNED(32, static INTFLOAT, AAC_RENAME(aac_kbd_short_120))[120]; static void init_tables_fixed_fn(void) { + AAC_RENAME(ff_cbrt_tableinit)(); + AAC_RENAME(ff_kbd_window_init)(AAC_RENAME2(aac_kbd_long_1024), 4.0, 1024); AAC_RENAME(ff_kbd_window_init)(AAC_RENAME2(aac_kbd_short_128), 6.0, 128); |