diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-03-12 22:54:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-03-12 22:54:25 +0000 |
commit | 6f91bcd151001b5aca0d27ae154fd60c384ff167 (patch) | |
tree | b7a213d3d501006e0e6cc14a2605bb74336d8d27 /libavcodec/mpeg4data.h | |
parent | e2263827d5272576e8f2893254e054476b01ee19 (diff) | |
download | ffmpeg-6f91bcd151001b5aca0d27ae154fd60c384ff167.tar.gz |
mpeg4 b-frames :)
create slightly more correct headers & add "ffmpeg" user-data section
Originally committed as revision 328 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg4data.h')
-rw-r--r-- | libavcodec/mpeg4data.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mpeg4data.h b/libavcodec/mpeg4data.h index 4eed756545..7c6c355279 100644 --- a/libavcodec/mpeg4data.h +++ b/libavcodec/mpeg4data.h @@ -99,3 +99,7 @@ static const UINT16 sprite_trajectory_tab[15][2] = { {0x0E, 4}, {0x1E, 5}, {0x3E, 6}, {0x7E, 7}, {0xFE, 8}, {0x1FE, 9},{0x3FE, 10},{0x7FE, 11},{0xFFE, 12}, }; + +static const UINT8 mb_type_b_tab[4][2] = { + {1, 1}, {1, 2}, {1, 3}, {1, 4}, +}; |