]> git.sesse.net Git - ffmpeg/blob - libavcodec/mpegaudio_tablegen.h
avcodec/mpegaudio_tablegen: Don't inappropriately use static array
[ffmpeg] / libavcodec / mpegaudio_tablegen.h
1 /*
2  * Header file for hardcoded mpegaudiodec tables
3  *
4  * Copyright (c) 2009 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #ifndef AVCODEC_MPEGAUDIO_TABLEGEN_H
24 #define AVCODEC_MPEGAUDIO_TABLEGEN_H
25
26 #include <stdint.h>
27 #include <math.h>
28 #include "libavutil/attributes.h"
29
30 #define TABLE_4_3_SIZE (8191 + 16)*4
31 #if CONFIG_HARDCODED_TABLES
32 #define mpegaudio_tableinit()
33 #include "libavcodec/mpegaudio_tables.h"
34 #else
35 static int8_t   table_4_3_exp[TABLE_4_3_SIZE];
36 static uint32_t table_4_3_value[TABLE_4_3_SIZE];
37
38 #if defined(BUILD_TABLES) || !USE_FLOATS
39 #define FIXED_TABLE
40 static uint32_t exp_table_fixed[512];
41 static uint32_t expval_table_fixed[512][16];
42 #endif
43
44 #if defined(BUILD_TABLES) || USE_FLOATS
45 #define FLOAT_TABLE
46 static float exp_table_float[512];
47 static float expval_table_float[512][16];
48 #endif
49
50 #define FRAC_BITS 23
51 #define IMDCT_SCALAR 1.759
52
53 static av_cold void mpegaudio_tableinit(void)
54 {
55     int i, value, exponent;
56     static const double exp2_lut[4] = {
57         1.00000000000000000000, /* 2 ^ (0 * 0.25) */
58         1.18920711500272106672, /* 2 ^ (1 * 0.25) */
59         M_SQRT2               , /* 2 ^ (2 * 0.25) */
60         1.68179283050742908606, /* 2 ^ (3 * 0.25) */
61     };
62     double pow43_lut[16];
63     double exp2_base = 2.11758236813575084767080625169910490512847900390625e-22; // 2^(-72)
64     double exp2_val;
65     double pow43_val = 0;
66     for (i = 0; i < 16; ++i)
67         pow43_lut[i] = i * cbrt(i);
68
69     for (i = 1; i < TABLE_4_3_SIZE; i++) {
70         double f, fm;
71         int e, m;
72         double value = i / 4;
73         if ((i & 3) == 0)
74             pow43_val = value / IMDCT_SCALAR * cbrt(value);
75         f  = pow43_val * exp2_lut[i & 3];
76         fm = frexp(f, &e);
77         m  = llrint(fm * (1LL << 31));
78         e += FRAC_BITS - 31 + 5 - 100;
79
80         /* normalized to FRAC_BITS */
81         table_4_3_value[i] =  m;
82         table_4_3_exp[i]   = -e;
83     }
84     for (exponent = 0; exponent < 512; exponent++) {
85         if (exponent && (exponent & 3) == 0)
86             exp2_base *= 2;
87         exp2_val = exp2_base * exp2_lut[exponent & 3] / IMDCT_SCALAR;
88         for (value = 0; value < 16; value++) {
89             double f = pow43_lut[value] * exp2_val;
90 #ifdef FIXED_TABLE
91             expval_table_fixed[exponent][value] = (f < 0xFFFFFFFF ? llrint(f) : 0xFFFFFFFF);
92 #endif
93 #ifdef FLOAT_TABLE
94             expval_table_float[exponent][value] = f;
95 #endif
96         }
97 #ifdef FIXED_TABLE
98         exp_table_fixed[exponent] = expval_table_fixed[exponent][1];
99 #endif
100 #ifdef FLOAT_TABLE
101         exp_table_float[exponent] = expval_table_float[exponent][1];
102 #endif
103     }
104 }
105 #undef FLOAT_TABLE
106 #undef FIXED_TABLE
107 #endif /* CONFIG_HARDCODED_TABLES */
108
109 #endif /* AVCODEC_MPEGAUDIO_TABLEGEN_H */