Originally committed as revision 8663 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2007-04-07 23:02:43 +00:00
parent 905234285d
commit ee77c2c922
1 changed files with 5 additions and 2 deletions

View File

@ -3,7 +3,10 @@
enum BethsoftVidBlockType
{
PALETTE_BLOCK = 0x02,
FIRST_AUDIO_BLOCK = 0x7c, AUDIO_BLOCK = 0x7d,
VIDEO_FULL_FRAME_BLOCK = 0x03, VIDEO_DIFFERENCE_FRAME_BLOCK = 0x01, VIDEO_YOFFSET_DIFFERENCE_FRAME_BLOCK = 0x04,
FIRST_AUDIO_BLOCK = 0x7c,
AUDIO_BLOCK = 0x7d,
VIDEO_FULL_FRAME_BLOCK = 0x03,
VIDEO_DIFFERENCE_FRAME_BLOCK = 0x01,
VIDEO_YOFFSET_DIFFERENCE_FRAME_BLOCK = 0x04,
FINISHED_BLOCK = 0x14,
};