diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-01-20 13:59:06 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-02-04 11:17:06 +0100 |
commit | 33c859c142ef3f49b7a6227014ad92a680cf4d74 (patch) | |
tree | c62a16cb8ed9b9645989605675eb4c810777a303 /libavformat/avformat.h | |
parent | 7b03b65bf0d02519c86750d2da33f413e11cf0c6 (diff) | |
download | ffmpeg-33c859c142ef3f49b7a6227014ad92a680cf4d74.tar.gz |
lavf: ignore attachment streams for interleaving purposes
Those streams should never get any packets by definition.
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 50e4f5c69d..00380d7b6c 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -796,6 +796,8 @@ typedef struct AVChapter { AVDictionary *metadata; } AVChapter; +typedef struct AVFormatInternal AVFormatInternal; + /** * Format I/O context. * New fields can be added to the end with minor version bumps. @@ -1049,6 +1051,11 @@ typedef struct AVFormatContext { */ AVRational offset_timebase; + /** + * An opaque field for libavformat internal usage. + * Must not be accessed in any way by callers. + */ + AVFormatInternal *internal; } AVFormatContext; typedef struct AVPacketList { |