Mercurial > libavcodec.hg
annotate bethsoftvideo.h @ 5185:a81dc8cc24fa libavcodec
add an AVClass pointer in SwsContext context
author | benoit |
---|---|
date | Tue, 26 Jun 2007 16:09:55 +0000 |
parents | 3fd46e281bd8 |
children | 12b08ebc40b9 |
rev | line source |
---|---|
5163 | 1 #ifndef AVCODEC_BETHSOFTVIDEO_H |
2 #define AVCODEC_BETHSOFTVIDEO_H | |
3 | |
4803 | 4 enum BethsoftVidBlockType |
5 { | |
4818 | 6 PALETTE_BLOCK = 0x02, |
7 FIRST_AUDIO_BLOCK = 0x7c, | |
8 AUDIO_BLOCK = 0x7d, | |
4812 | 9 VIDEO_I_FRAME = 0x03, |
10 VIDEO_P_FRAME = 0x01, | |
11 VIDEO_YOFF_P_FRAME = 0x04, | |
12 EOF_BLOCK = 0x14, | |
4803 | 13 }; |
5163 | 14 |
5169
3fd46e281bd8
add a comment to indicate which #endif belong to which #define
gpoirier
parents:
5163
diff
changeset
|
15 #endif // AVCODEC_BETHSOFTVIDEO_H |