diff options
author | Juanjo <pulento@users.sourceforge.net> | 2001-11-03 00:49:53 +0000 |
---|---|---|
committer | Juanjo <pulento@users.sourceforge.net> | 2001-11-03 00:49:53 +0000 |
commit | 4949028f85dec72a5caf322757a6e6fd6ef711d3 (patch) | |
tree | eb19917fca268793ef4f2e829619f78a3ec5b20c /libavcodec/h263data.h | |
parent | 162caf680fce1005d26dd563901f9c878c0326a3 (diff) | |
download | ffmpeg-4949028f85dec72a5caf322757a6e6fd6ef711d3.tar.gz |
- Bug fix on inter MCBPC table for inter+q.
- H.263/H.263+ decoder now knows GOB start codes.
- H.263/H.263+ decoder now returns the size of the stream on the first call.
- Added show_bits() functions to see the buffer without loosing the bits.
- TODO: H.263v1 UMV parsing is buggy.
Originally committed as revision 204 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263data.h')
-rw-r--r-- | libavcodec/h263data.h | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/libavcodec/h263data.h b/libavcodec/h263data.h index 4fd9d36298..696552522d 100644 --- a/libavcodec/h263data.h +++ b/libavcodec/h263data.h @@ -4,6 +4,23 @@ 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 }; /* inter MCBPC, mb_type = (inter), (intra), (interq), (intraq), (inter4v) */ +/* Changed the tables for interq, following the standard ** Juanjo ** */ +static const UINT8 inter_MCBPC_code[20] = { + 1, 3, 2, 5, + 3, 4, 3, 3, + 3, 7, 6, 5, + 4, 4, 3, 2, + 2, 5, 4, 5, +}; +static const UINT8 inter_MCBPC_bits[20] = { + 1, 4, 4, 6, + 5, 8, 8, 7, + 3, 7, 7, 9, + 6, 9, 9, 9, + 3, 7, 7, 8, +}; + +/* This is the old table static const UINT8 inter_MCBPC_code[20] = { 1, 3, 2, 5, 3, 4, 3, 3, @@ -17,7 +34,7 @@ static const UINT8 inter_MCBPC_bits[20] = { 12, 12, 12, 12, 6, 9, 9, 9, 3, 7, 7, 8, -}; +};*/ static const UINT8 cbpy_tab[16][2] = { |