annotate bethsoftvideo.h @ 5174:2e038003cdfb libavcodec

Do not reuse the rbsp de-escape buffer if both the intra and inter -nal units are escaped patch by Andreas ªÓman: \andreas olebyn nu/ original thread: [FFmpeg-devel] [PATCH] h264: rbsp de-escape and data partitioning.. date: 06/20/2007 09:32 AM
author benoit
date Wed, 20 Jun 2007 08:53:53 +0000
parents 3fd46e281bd8
children 12b08ebc40b9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5163
9ecbfc0c82bf add multiple inclusion guards to headers
mru
parents: 4818
diff changeset
1 #ifndef AVCODEC_BETHSOFTVIDEO_H
9ecbfc0c82bf add multiple inclusion guards to headers
mru
parents: 4818
diff changeset
2 #define AVCODEC_BETHSOFTVIDEO_H
9ecbfc0c82bf add multiple inclusion guards to headers
mru
parents: 4818
diff changeset
3
4803
35e47a6e01e2 Bethsoft VID demuxer and video decoder
diego
parents:
diff changeset
4 enum BethsoftVidBlockType
35e47a6e01e2 Bethsoft VID demuxer and video decoder
diego
parents:
diff changeset
5 {
4818
2137206961c9 align vertically
michael
parents: 4812
diff changeset
6 PALETTE_BLOCK = 0x02,
2137206961c9 align vertically
michael
parents: 4812
diff changeset
7 FIRST_AUDIO_BLOCK = 0x7c,
2137206961c9 align vertically
michael
parents: 4812
diff changeset
8 AUDIO_BLOCK = 0x7d,
4812
d9cff0d54fdd use shorter names for the block type enum
michael
parents: 4811
diff changeset
9 VIDEO_I_FRAME = 0x03,
d9cff0d54fdd use shorter names for the block type enum
michael
parents: 4811
diff changeset
10 VIDEO_P_FRAME = 0x01,
d9cff0d54fdd use shorter names for the block type enum
michael
parents: 4811
diff changeset
11 VIDEO_YOFF_P_FRAME = 0x04,
d9cff0d54fdd use shorter names for the block type enum
michael
parents: 4811
diff changeset
12 EOF_BLOCK = 0x14,
4803
35e47a6e01e2 Bethsoft VID demuxer and video decoder
diego
parents:
diff changeset
13 };
5163
9ecbfc0c82bf add multiple inclusion guards to headers
mru
parents: 4818
diff changeset
14
5169
3fd46e281bd8 add a comment to indicate which #endif belong to which #define
gpoirier
parents: 5163
diff changeset
15 #endif // AVCODEC_BETHSOFTVIDEO_H