summaryrefslogtreecommitdiff
path: root/libavcodec/aacpsdata.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-12-28 02:41:38 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-12-31 22:12:39 +0100
commit3693e2fceef3352e8a749eeb6ca84670273ef750 (patch)
tree5ad44e535cf3bd196c4eb886dfdf63f56602841f /libavcodec/aacpsdata.c
parent0d61a1cfad23ceac8104d0c00f98399de9d91069 (diff)
downloadffmpeg-3693e2fceef3352e8a749eeb6ca84670273ef750.tar.gz
avcodec/aacps: Factor out code shared by float and fixed point decoder
Saves about 7KiB. Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/aacpsdata.c')
-rw-r--r--libavcodec/aacpsdata.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/libavcodec/aacpsdata.c b/libavcodec/aacpsdata.c
index 5c1a1b0f88..7a1f490060 100644
--- a/libavcodec/aacpsdata.c
+++ b/libavcodec/aacpsdata.c
@@ -142,22 +142,17 @@ static const int8_t huff_offset[] = {
};
///Table 8.48
-static const int8_t k_to_i_20[] = {
+const int8_t ff_k_to_i_20[] = {
1, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 14, 15,
15, 15, 16, 16, 16, 16, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 18, 18, 18,
18, 18, 18, 18, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19
};
///Table 8.49
-static const int8_t k_to_i_34[] = {
+const int8_t ff_k_to_i_34[] = {
0, 1, 2, 3, 4, 5, 6, 6, 7, 2, 1, 0, 10, 10, 4, 5, 6, 7, 8,
9, 10, 11, 12, 9, 14, 11, 12, 13, 14, 15, 16, 13, 16, 17, 18, 19, 20, 21,
22, 22, 23, 23, 24, 24, 25, 25, 26, 26, 27, 27, 27, 28, 28, 28, 29, 29, 29,
30, 30, 30, 31, 31, 31, 31, 32, 32, 32, 32, 33, 33, 33, 33, 33, 33, 33, 33,
33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33
};
-
-static const INTFLOAT g1_Q2[] = {
- Q31(0.0f), Q31(0.01899487526049f), Q31(0.0f), Q31(-0.07293139167538f),
- Q31(0.0f), Q31(0.30596630545168f), Q31(0.5f)
-};