From 1e6c67599e34348e00ca556ba1ba1537f88ebc96 Mon Sep 17 00:00:00 2001 From: Nicholas Tung Date: Sat, 7 Apr 2007 20:51:58 +0000 Subject: Bethsoft VID demuxer and video decoder patch by Nicholas Tung, ntung ntung com Originally committed as revision 8649 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/bethsoftvideo.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 libavcodec/bethsoftvideo.h (limited to 'libavcodec/bethsoftvideo.h') diff --git a/libavcodec/bethsoftvideo.h b/libavcodec/bethsoftvideo.h new file mode 100644 index 0000000000..036175af95 --- /dev/null +++ b/libavcodec/bethsoftvideo.h @@ -0,0 +1,9 @@ +#define VID_PALETTE_NUMCOLORS 256 + +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, + FINISHED_BLOCK = 0x14, +}; -- cgit v1.2.3