[FFmpeg-cvslog] avformat/tee: Use ff_format_output_open() function

Jan Sebechlebsky git at videolan.org
Sat Jul 16 01:48:37 CEST 2016


ffmpeg | branch: master | Jan Sebechlebsky <sebechlebskyjan at gmail.com> | Mon Jul  4 16:45:14 2016 +0200| [df9cc7f0a90cdaa2183040425623f479159f206d] | committer: Marton Balint

avformat/tee: Use ff_format_output_open() function

Reviewed-by: Nicolas George <george at nsup.org>
Signed-off-by: Jan Sebechlebsky <sebechlebskyjan at gmail.com>
Signed-off-by: Marton Balint <cus at passwd.hu>

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

 libavformat/tee.c |   11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/libavformat/tee.c b/libavformat/tee.c
index e750752..daddba5 100644
--- a/libavformat/tee.c
+++ b/libavformat/tee.c
@@ -300,12 +300,11 @@ static int open_slave(AVFormatContext *avf, char *slave, TeeSlave *tee_slave)
             goto end;
     }
 
-    if (!(avf2->oformat->flags & AVFMT_NOFILE)) {
-        if ((ret = avf2->io_open(avf2, &avf2->pb, filename, AVIO_FLAG_WRITE, NULL)) < 0) {
-            av_log(avf, AV_LOG_ERROR, "Slave '%s': error opening: %s\n",
-                   slave, av_err2str(ret));
-            goto end;
-        }
+    ret = ff_format_output_open(avf2, filename, NULL);
+    if (ret < 0) {
+        av_log(avf, AV_LOG_ERROR, "Slave '%s': error opening: %s\n", slave,
+               av_err2str(ret));
+        goto end;
     }
 
     if ((ret = avformat_write_header(avf2, &options)) < 0) {



More information about the ffmpeg-cvslog mailing list