annotate bethsoftvideo.h @ 5104:b8e8aa53f613 libavcodec

Rename cb field patch by Eric Lasota: [riot at icculus org] original thread: [FFmpeg-devel] [PATCH] RoQ decoder 4:4:4 update date: 06/05/2007 09:22 PM
author benoit
date Wed, 06 Jun 2007 10:40:05 +0000
parents 2137206961c9
children 9ecbfc0c82bf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4803
35e47a6e01e2 Bethsoft VID demuxer and video decoder
diego
parents:
diff changeset
1 enum BethsoftVidBlockType
35e47a6e01e2 Bethsoft VID demuxer and video decoder
diego
parents:
diff changeset
2 {
4818
2137206961c9 align vertically
michael
parents: 4812
diff changeset
3 PALETTE_BLOCK = 0x02,
2137206961c9 align vertically
michael
parents: 4812
diff changeset
4 FIRST_AUDIO_BLOCK = 0x7c,
2137206961c9 align vertically
michael
parents: 4812
diff changeset
5 AUDIO_BLOCK = 0x7d,
4812
d9cff0d54fdd use shorter names for the block type enum
michael
parents: 4811
diff changeset
6 VIDEO_I_FRAME = 0x03,
d9cff0d54fdd use shorter names for the block type enum
michael
parents: 4811
diff changeset
7 VIDEO_P_FRAME = 0x01,
d9cff0d54fdd use shorter names for the block type enum
michael
parents: 4811
diff changeset
8 VIDEO_YOFF_P_FRAME = 0x04,
d9cff0d54fdd use shorter names for the block type enum
michael
parents: 4811
diff changeset
9 EOF_BLOCK = 0x14,
4803
35e47a6e01e2 Bethsoft VID demuxer and video decoder
diego
parents:
diff changeset
10 };