diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-08-31 12:41:11 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-08-31 18:33:27 +0200 |
commit | 3efc174fd6f4f5186ed05a307aab58a4ac6db90a (patch) | |
tree | 38a69460a056b44c02e2bdcd8bd39ae87b76d2a7 /libavcodec | |
parent | 1a558cec64b40c4822975d8e6867df63a19bd057 (diff) | |
download | ffmpeg-3efc174fd6f4f5186ed05a307aab58a4ac6db90a.tar.gz |
aacps_tablegen: replace TABLE_CONST by const.
Doesn't change generated code, just is more consistent
and a bit less error-prone.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aacps_tablegen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacps_tablegen.c b/libavcodec/aacps_tablegen.c index 47d4205f43..f56930b958 100644 --- a/libavcodec/aacps_tablegen.c +++ b/libavcodec/aacps_tablegen.c @@ -82,7 +82,7 @@ int main(void) write_float_3d_array(f34_2_4, 4, 8, 2); printf("};\n"); - printf("static TABLE_CONST DECLARE_ALIGNED(16, float, Q_fract_allpass)[2][50][3][2] = {\n"); + printf("static const DECLARE_ALIGNED(16, float, Q_fract_allpass)[2][50][3][2] = {\n"); write_float_4d_array(Q_fract_allpass, 2, 50, 3, 2); printf("};\n"); printf("static const DECLARE_ALIGNED(16, float, phi_fract)[2][50][2] = {\n"); |