[FFmpeg-cvslog] lavf/tee: pass options to protocol.

Nicolas George git at videolan.org
Thu Jun 4 13:54:09 EEST 2020


ffmpeg | branch: master | Nicolas George <george at nsup.org> | Tue Jun  2 20:55:30 2020 +0200| [a45be55d5b54827220ed9097932c9e2141488526] | committer: Nicolas George

lavf/tee: pass options to protocol.

Fix trac ticket #8705.

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

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

diff --git a/libavformat/tee.c b/libavformat/tee.c
index f2b11fcb35..c5c59975e6 100644
--- a/libavformat/tee.c
+++ b/libavformat/tee.c
@@ -295,7 +295,7 @@ static int open_slave(AVFormatContext *avf, char *slave, TeeSlave *tee_slave)
             goto end;
     }
 
-    ret = ff_format_output_open(avf2, filename, NULL);
+    ret = ff_format_output_open(avf2, filename, &options);
     if (ret < 0) {
         av_log(avf, AV_LOG_ERROR, "Slave '%s': error opening: %s\n", slave,
                av_err2str(ret));



More information about the ffmpeg-cvslog mailing list