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/internal.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/internal.h')
-rw-r--r-- | libavformat/internal.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index e92f476f50..0e7eb36e32 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -42,6 +42,14 @@ typedef struct CodecMime{ enum AVCodecID id; } CodecMime; +struct AVFormatInternal { + /** + * Number of streams relevant for interleaving. + * Muxing only. + */ + int nb_interleaved_streams; +}; + void ff_dynarray_add(intptr_t **tab_ptr, int *nb_ptr, intptr_t elem); #ifdef __GNUC__ |