Mercurial > libavformat.hg
annotate avi.h @ 1173:fefbbffb5923 libavformat
nut needs crc.o
author | mru |
---|---|
date | Wed, 12 Jul 2006 00:10:12 +0000 |
parents | 6a5e58d2114b |
children | 8bf9be9bb107 |
rev | line source |
---|---|
122 | 1 #ifndef FFMPEG_AVI_H |
2 #define FFMPEG_AVI_H | |
3 | |
4 #include "avcodec.h" | |
0 | 5 |
887 | 6 #define AVIF_HASINDEX 0x00000010 // Index at end of file? |
7 #define AVIF_MUSTUSEINDEX 0x00000020 | |
8 #define AVIF_ISINTERLEAVED 0x00000100 | |
9 #define AVIF_TRUSTCKTYPE 0x00000800 // Use CKType to find key frames? | |
10 #define AVIF_WASCAPTUREFILE 0x00010000 | |
11 #define AVIF_COPYRIGHTED 0x00020000 | |
0 | 12 |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
84
diff
changeset
|
13 #define AVI_MAX_RIFF_SIZE 0x40000000LL |
119 | 14 #define AVI_MASTER_INDEX_SIZE 256 |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
84
diff
changeset
|
15 |
311 | 16 /* index flags */ |
17 #define AVIIF_INDEX 0x10 | |
18 | |
122 | 19 #endif /* FFMPEG_AVI_H */ |