comparison bethsoftvideo.h @ 5163:9ecbfc0c82bf libavcodec

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents 2137206961c9
children 3fd46e281bd8
comparison
equal deleted inserted replaced
5162:4394344397d8 5163:9ecbfc0c82bf
1 #ifndef AVCODEC_BETHSOFTVIDEO_H
2 #define AVCODEC_BETHSOFTVIDEO_H
3
1 enum BethsoftVidBlockType 4 enum BethsoftVidBlockType
2 { 5 {
3 PALETTE_BLOCK = 0x02, 6 PALETTE_BLOCK = 0x02,
4 FIRST_AUDIO_BLOCK = 0x7c, 7 FIRST_AUDIO_BLOCK = 0x7c,
5 AUDIO_BLOCK = 0x7d, 8 AUDIO_BLOCK = 0x7d,
6 VIDEO_I_FRAME = 0x03, 9 VIDEO_I_FRAME = 0x03,
7 VIDEO_P_FRAME = 0x01, 10 VIDEO_P_FRAME = 0x01,
8 VIDEO_YOFF_P_FRAME = 0x04, 11 VIDEO_YOFF_P_FRAME = 0x04,
9 EOF_BLOCK = 0x14, 12 EOF_BLOCK = 0x14,
10 }; 13 };
14
15 #endif