From 287229e554267b908f3969d9038bec004cfe51a8 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 2 Jun 2002 12:22:30 +0000 Subject: msmpeg4v1 decoding Originally committed as revision 643 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h263data.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavcodec/h263data.h') diff --git a/libavcodec/h263data.h b/libavcodec/h263data.h index c4342ffd37..5a7b943ea3 100644 --- a/libavcodec/h263data.h +++ b/libavcodec/h263data.h @@ -1,11 +1,11 @@ /* intra MCBPC, mb_type = (intra), then (intraq) */ -static const UINT8 intra_MCBPC_code[8] = { 1, 1, 2, 3, 1, 1, 2, 3 }; -static const UINT8 intra_MCBPC_bits[8] = { 1, 3, 3, 3, 4, 6, 6, 6 }; +const UINT8 intra_MCBPC_code[8] = { 1, 1, 2, 3, 1, 1, 2, 3 }; +const UINT8 intra_MCBPC_bits[8] = { 1, 3, 3, 3, 4, 6, 6, 6 }; /* inter MCBPC, mb_type = (inter), (intra), (interq), (intraq), (inter4v) */ /* Changed the tables for interq and inter4v+q, following the standard ** Juanjo ** */ -static const UINT8 inter_MCBPC_code[25] = { +const UINT8 inter_MCBPC_code[25] = { 1, 3, 2, 5, 3, 4, 3, 3, 3, 7, 6, 5, @@ -14,7 +14,7 @@ static const UINT8 inter_MCBPC_code[25] = { 1, /* Stuffing */ 2, 12, 14, 15, }; -static const UINT8 inter_MCBPC_bits[25] = { +const UINT8 inter_MCBPC_bits[25] = { 1, 4, 4, 6, 5, 8, 8, 7, 3, 7, 7, 9, -- cgit v1.2.3