diff avformat.h @ 5914:ae90b07a6f29 libavformat

Add AVFMT_FLAG_NOFILLIN and AVFMT_FLAG_NOPARSE.
author michael
date Wed, 31 Mar 2010 12:55:16 +0000
parents 536e5527c1e0
children 4cc7fc1878b4
line wrap: on
line diff
--- a/avformat.h	Wed Mar 31 12:29:58 2010 +0000
+++ b/avformat.h	Wed Mar 31 12:55:16 2010 +0000
@@ -648,6 +648,8 @@
 #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. */