diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-06-01 21:19:00 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-06-01 21:19:00 +0000 |
commit | c26ae41db21d6a7d5092b3cb51ce2e4866b076ae (patch) | |
tree | 8bc945d47b0053aa8255f4a3226c48cc1c194057 /libavcodec/mpegaudiodectab.h | |
parent | 435b0720a89b5aa1dd9e92f13336d5a35964a6e6 (diff) | |
download | ffmpeg-c26ae41db21d6a7d5092b3cb51ce2e4866b076ae.tar.gz |
adding a few const
Originally committed as revision 4337 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegaudiodectab.h')
-rw-r--r-- | libavcodec/mpegaudiodectab.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegaudiodectab.h b/libavcodec/mpegaudiodectab.h index 8a13127ad9..a60edb6461 100644 --- a/libavcodec/mpegaudiodectab.h +++ b/libavcodec/mpegaudiodectab.h @@ -719,12 +719,12 @@ const uint8_t mpa_huff_data[32][2] = { /* huffman tables for quadrules */ -static uint8_t mpa_quad_codes[2][16] = { +static const uint8_t mpa_quad_codes[2][16] = { { 1, 5, 4, 5, 6, 5, 4, 4, 7, 3, 6, 0, 7, 2, 3, 1, }, { 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, }, }; -static uint8_t mpa_quad_bits[2][16] = { +static const uint8_t mpa_quad_bits[2][16] = { { 1, 4, 4, 5, 4, 6, 5, 6, 4, 5, 5, 6, 5, 6, 6, 6, }, { 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, }, }; |