summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-02-04 15:37:05 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-02-04 15:37:05 +0100
commit073e771c9c5330216bdb3def5bd3ab671930b27f (patch)
tree58140d37740badbf5e41340c595212a272139102 /libavformat/avformat.h
parent5144d919964f050d953b9dbe6910fb5388a1965d (diff)
parent33c859c142ef3f49b7a6227014ad92a680cf4d74 (diff)
Merge commit '33c859c142ef3f49b7a6227014ad92a680cf4d74'
* commit '33c859c142ef3f49b7a6227014ad92a680cf4d74': lavf: ignore attachment streams for interleaving purposes Conflicts: libavformat/avformat.h libavformat/internal.h libavformat/mux.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 13f6524d85..fe3757a309 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -971,6 +971,8 @@ enum AVDurationEstimationMethod {
AVFMT_DURATION_FROM_BITRATE ///< Duration estimated from bitrate (less accurate)
};
+typedef struct AVFormatInternal AVFormatInternal;
+
/**
* Format I/O context.
* New fields can be added to the end with minor version bumps.
@@ -1332,6 +1334,12 @@ typedef struct AVFormatContext {
AVRational offset_timebase;
/**
+ * An opaque field for libavformat internal usage.
+ * Must not be accessed in any way by callers.
+ */
+ AVFormatInternal *internal;
+
+ /**
* IO repositioned flag.
* This is set by avformat when the underlaying IO context read pointer
* is repositioned, for example when doing byte based seeking.