mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-24 17:12:34 +02:00
avformat/tee: Use ff_format_output_open() function
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
6a3515a5a4
commit
df9cc7f0a9
@ -300,12 +300,11 @@ static int open_slave(AVFormatContext *avf, char *slave, TeeSlave *tee_slave)
|
|||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(avf2->oformat->flags & AVFMT_NOFILE)) {
|
ret = ff_format_output_open(avf2, filename, NULL);
|
||||||
if ((ret = avf2->io_open(avf2, &avf2->pb, filename, AVIO_FLAG_WRITE, NULL)) < 0) {
|
if (ret < 0) {
|
||||||
av_log(avf, AV_LOG_ERROR, "Slave '%s': error opening: %s\n",
|
av_log(avf, AV_LOG_ERROR, "Slave '%s': error opening: %s\n", slave,
|
||||||
slave, av_err2str(ret));
|
av_err2str(ret));
|
||||||
goto end;
|
goto end;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((ret = avformat_write_header(avf2, &options)) < 0) {
|
if ((ret = avformat_write_header(avf2, &options)) < 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user