aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/aac/aacdec_fixed.c
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2024-03-16 02:43:33 +0100
committerLynne <dev@lynne.ee>2024-04-23 08:31:35 +0200
commit41ae2b03a5cf87f9673f82efbc9cea53df70f150 (patch)
treeabb748ba9950d4b7109296401699eab6f4b3afb7 /libavcodec/aac/aacdec_fixed.c
parent5c026e66372f31c7bdeccc45511c9f5eeac22865 (diff)
downloadffmpeg-41ae2b03a5cf87f9673f82efbc9cea53df70f150.tar.gz
aacdec: move spectrum decode and dequantization to a new file
Diffstat (limited to 'libavcodec/aac/aacdec_fixed.c')
-rw-r--r--libavcodec/aac/aacdec_fixed.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/aac/aacdec_fixed.c b/libavcodec/aac/aacdec_fixed.c
index 9dd8f34f55..a2ddc5aac2 100644
--- a/libavcodec/aac/aacdec_fixed.c
+++ b/libavcodec/aac/aacdec_fixed.c
@@ -38,6 +38,7 @@
#include "libavcodec/aactab.h"
#include "libavcodec/sinewin_fixed_tablegen.h"
#include "libavcodec/kbdwin.h"
+#include "libavcodec/cbrt_data.h"
DECLARE_ALIGNED(32, static INTFLOAT, AAC_RENAME2(aac_kbd_long_1024))[1024];
DECLARE_ALIGNED(32, static INTFLOAT, AAC_RENAME2(aac_kbd_short_128))[128];
@@ -61,4 +62,8 @@ static void init_tables_fixed(void)
ff_thread_once(&init_fixed_once, init_tables_fixed_fn);
}
+/** Dequantization-related */
+#include "aacdec_fixed_dequant.h"
+
#include "aacdec_dsp_template.c"
+#include "aacdec_proc_template.c"