comparison bethsoftvideo.h @ 4812:d9cff0d54fdd libavcodec

use shorter names for the block type enum
author michael
date Sat, 07 Apr 2007 23:10:22 +0000
parents 2e9455fd2b8c
children 2137206961c9
comparison
equal deleted inserted replaced
4811:2e9455fd2b8c 4812:d9cff0d54fdd
1 #define VID_PALETTE_NUMCOLORS 256
2
3 enum BethsoftVidBlockType 1 enum BethsoftVidBlockType
4 { 2 {
5 PALETTE_BLOCK = 0x02, 3 PALETTE_BLOCK = 0x02,
6 FIRST_AUDIO_BLOCK = 0x7c, 4 FIRST_AUDIO_BLOCK = 0x7c,
7 AUDIO_BLOCK = 0x7d, 5 AUDIO_BLOCK = 0x7d,
8 VIDEO_FULL_FRAME_BLOCK = 0x03, 6 VIDEO_I_FRAME = 0x03,
9 VIDEO_DIFFERENCE_FRAME_BLOCK = 0x01, 7 VIDEO_P_FRAME = 0x01,
10 VIDEO_YOFFSET_DIFFERENCE_FRAME_BLOCK = 0x04, 8 VIDEO_YOFF_P_FRAME = 0x04,
11 FINISHED_BLOCK = 0x14, 9 EOF_BLOCK = 0x14,
12 }; 10 };