[FFmpeg-cvslog] avformat/tee : Pass standards compliance value to slave muxers as well

Karthick J git at videolan.org
Wed Jan 30 21:03:15 EET 2019


ffmpeg | branch: master | Karthick J <kjeyapal at akamai.com> | Wed Jan 30 19:18:59 2019 +0530| [789d3b98d1ded964c60213c05dbe1cf42ab8ae59] | committer: Nicolas George

avformat/tee : Pass standards compliance value to slave muxers as well

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=789d3b98d1ded964c60213c05dbe1cf42ab8ae59
---

 libavformat/tee.c | 1 +
 1 file changed, 1 insertion(+)

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) {



More information about the ffmpeg-cvslog mailing list