From c26ae41db21d6a7d5092b3cb51ce2e4866b076ae Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 1 Jun 2005 21:19:00 +0000 Subject: adding a few const Originally committed as revision 4337 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegaudiodectab.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/mpegaudiodectab.h') diff --git a/libavcodec/mpegaudiodectab.h b/libavcodec/mpegaudiodectab.h index 8a13127..a60edb6 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, }, }; -- cgit v1.1