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:
authorMichael Niedermayer <michaelni@gmx.at>2007-04-08 03:10:22 +0400
committerMichael Niedermayer <michaelni@gmx.at>2007-04-08 03:10:22 +0400
commitd7cf44899f6a9f82f19a3e3d7c40e3ab063d06f3 (patch)
tree305ab6a31bcb1411330714a12d06894b0e78acdf /libavcodec/bethsoftvideo.h
parentee77c2c922b9df4865ee02153c86090c46dd88e2 (diff)
use shorter names for the block type enum
Originally committed as revision 8664 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bethsoftvideo.h')
-rw-r--r--libavcodec/bethsoftvideo.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/libavcodec/bethsoftvideo.h b/libavcodec/bethsoftvideo.h
index b650489698..eb584a44c3 100644
--- a/libavcodec/bethsoftvideo.h
+++ b/libavcodec/bethsoftvideo.h
@@ -1,12 +1,10 @@
-#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,
+ VIDEO_I_FRAME = 0x03,
+ VIDEO_P_FRAME = 0x01,
+ VIDEO_YOFF_P_FRAME = 0x04,
+ EOF_BLOCK = 0x14,
};