From cf2baeb3382283d41eac7886ea831f52262971ba Mon Sep 17 00:00:00 2001 From: Stefan Gehrer Date: Tue, 24 Jun 2008 20:01:31 +0000 Subject: mark read-only data as const Originally committed as revision 13947 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/wnv1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/wnv1.c') diff --git a/libavcodec/wnv1.c b/libavcodec/wnv1.c index bc5d69ae56..70c6338037 100644 --- a/libavcodec/wnv1.c +++ b/libavcodec/wnv1.c @@ -36,7 +36,7 @@ typedef struct WNV1Context{ GetBitContext gb; } WNV1Context; -static uint16_t code_tab[16][2]={ +static const uint16_t code_tab[16][2]={ {0x1FD,9}, {0xFD,8}, {0x7D,7}, {0x3D,6}, {0x1D,5}, {0x0D,4}, {0x005,3}, {0x000,1}, {0x004,3}, {0x0C,4}, {0x1C,5}, {0x3C,6}, {0x7C,7}, {0xFC,8}, {0x1FC,9}, {0xFF,8} -- cgit v1.2.3