Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarthick J <kjeyapal@akamai.com>2019-01-30 16:30:59 +0300
committerNicolas George <george@nsup.org>2019-01-30 21:32:34 +0300
commit789d3b98d1ded964c60213c05dbe1cf42ab8ae59 (patch)
tree262db221a58b14b82faefe56552a469c9800ebd0 /libavformat/tee.c
parent2e2b44baba575a33aa66796bc0a0f93070ab6c53 (diff)
avformat/tee : Pass standards compliance value to slave muxers as well
Diffstat (limited to 'libavformat/tee.c')
-rw-r--r--libavformat/tee.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/tee.c b/libavformat/tee.c
index ef3b113a47..89a4ceb280 100644
--- a/libavformat/tee.c
+++ b/libavformat/tee.c
@@ -236,6 +236,7 @@ static int open_slave(AVFormatContext *avf, char *slave, TeeSlave *tee_slave)
avf2->io_close = avf->io_close;
avf2->interrupt_callback = avf->interrupt_callback;
avf2->flags = avf->flags;
+ avf2->strict_std_compliance = avf->strict_std_compliance;
tee_slave->stream_map = av_calloc(avf->nb_streams, sizeof(*tee_slave->stream_map));
if (!tee_slave->stream_map) {