diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-03-31 12:55:16 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-03-31 12:55:16 +0000 |
commit | fe8344a276aa3179bac6807e543fd86cd6ee5aa8 (patch) | |
tree | 9f26c796d3b7ad469e10e14f52804f0fb83f32f7 /libavformat/avformat.h | |
parent | cc947f04cc16033d651fda5aab91e4a3c4b6bd4d (diff) | |
download | ffmpeg-fe8344a276aa3179bac6807e543fd86cd6ee5aa8.tar.gz |
Add AVFMT_FLAG_NOFILLIN and AVFMT_FLAG_NOPARSE.
Originally committed as revision 22745 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 65e32bb043..d306355fb6 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -648,6 +648,8 @@ typedef struct AVFormatContext { #define AVFMT_FLAG_IGNIDX 0x0002 ///< Ignore index. #define AVFMT_FLAG_NONBLOCK 0x0004 ///< Do not block when reading packets from input. #define AVFMT_FLAG_IGNDTS 0x0008 ///< Ignore DTS on frames that contain both DTS & PTS +#define AVFMT_FLAG_NOFILLIN 0x0010 ///< Do not infer any values from other values, just return what is stored in the container +#define AVFMT_FLAG_NOPARSE 0x0020 ///< Do not use AVParsers, you also must set AVFMT_FLAG_NOFILLIN as the fillin code works on frames and no parsing -> no frames. Also seeking to frames can not work if parsing to find frame boundaries has been disabled int loop_input; /** decoding: size of data to probe; encoding: unused. */ |