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/qpeg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/qpeg.c') diff --git a/libavcodec/qpeg.c b/libavcodec/qpeg.c index 36c864c189..f0ef1ef94c 100644 --- a/libavcodec/qpeg.c +++ b/libavcodec/qpeg.c @@ -108,9 +108,9 @@ static void qpeg_decode_intra(const uint8_t *src, uint8_t *dst, int size, } } -static int qpeg_table_h[16] = +static const int qpeg_table_h[16] = { 0x00, 0x20, 0x20, 0x20, 0x18, 0x10, 0x10, 0x20, 0x10, 0x08, 0x18, 0x08, 0x08, 0x18, 0x10, 0x04}; -static int qpeg_table_w[16] = +static const int qpeg_table_w[16] = { 0x00, 0x20, 0x18, 0x08, 0x18, 0x10, 0x20, 0x10, 0x08, 0x10, 0x20, 0x20, 0x08, 0x10, 0x18, 0x04}; /* Decodes delta frames */ -- cgit v1.2.3