summaryrefslogtreecommitdiff
Diffstat
-rw-r--r--libavformat/avio.h3
-rw-r--r--libavformat/utils.c14
2 files changed, 16 insertions, 1 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h
index 4f4ac3c..5f5111e 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -146,6 +146,8 @@ typedef struct AVIOContext {
* This field is internal to libavformat and access from outside is not allowed.
*/
int writeout_count;
+
+ int mediascan_flag;
} AVIOContext;
/* unbuffered I/O */
@@ -332,6 +334,7 @@ int avio_get_str16be(AVIOContext *pb, int maxlen, char *buf, int buflen);
#define AVIO_FLAG_READ 1 /**< read-only */
#define AVIO_FLAG_WRITE 2 /**< write-only */
#define AVIO_FLAG_READ_WRITE (AVIO_FLAG_READ|AVIO_FLAG_WRITE) /**< read-write pseudo flag */
+
/**
* @}
*/