Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Tung <ntung@ntung.com>2007-04-08 00:51:58 +0400
committerDiego Biurrun <diego@biurrun.de>2007-04-08 00:51:58 +0400
commit1e6c67599e34348e00ca556ba1ba1537f88ebc96 (patch)
tree07942ab8eebf464cb85960a5a349fb624cd0e6b5 /libavcodec/bethsoftvideo.h
parente5b5149603c24b1c1b16e829e5db5821c3127d2e (diff)
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
Diffstat (limited to 'libavcodec/bethsoftvideo.h')
-rw-r--r--libavcodec/bethsoftvideo.h9
1 files changed, 9 insertions, 0 deletions
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,
+};