diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-06-02 12:22:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-06-02 12:22:30 +0000 |
commit | 287229e554267b908f3969d9038bec004cfe51a8 (patch) | |
tree | 81551c2e4f4aaafeb5cd4b4e0281748b82a3b786 /libavcodec/h263data.h | |
parent | 7f2fe444a39bca733d390b6608801c5f002bfd31 (diff) | |
download | ffmpeg-287229e554267b908f3969d9038bec004cfe51a8.tar.gz |
msmpeg4v1 decoding
Originally committed as revision 643 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263data.h')
-rw-r--r-- | libavcodec/h263data.h | 8 |
1 files changed, 4 insertions, 4 deletions
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, |