mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
avformat/tee: add forgotten ret assignment
Fixes CID991840 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1e41b8cd07
commit
5f476cfe6e
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ static int open_slave(AVFormatContext *avf, char *slave, AVFormatContext **ravf)
|
|||
av_dict_set(&options, "f", NULL, 0);
|
||||
}
|
||||
|
||||
avformat_alloc_output_context2(&avf2, NULL, format, filename);
|
||||
ret = avformat_alloc_output_context2(&avf2, NULL, format, filename);
|
||||
if (ret < 0)
|
||||
goto fail;
|
||||
av_free(format);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue