From 33c859c142ef3f49b7a6227014ad92a680cf4d74 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 20 Jan 2014 13:59:06 +0100 Subject: lavf: ignore attachment streams for interleaving purposes Those streams should never get any packets by definition. --- libavformat/avformat.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'libavformat/avformat.h') 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 { -- cgit v1.2.3