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/utils.c | |
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/utils.c')
-rw-r--r-- | libavformat/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 01215ef257..fca588b48e 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2633,6 +2633,7 @@ void avformat_free_context(AVFormatContext *s) av_freep(&s->chapters); av_dict_free(&s->metadata); av_freep(&s->streams); + av_freep(&s->internal); av_free(s); } |