mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-24 07:46:56 +00:00
avformat/matroskaenc: Fix () error
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
82c4d57553
commit
572f16e100
@ -316,7 +316,7 @@ static int start_ebml_master_crc32(AVIOContext *pb, AVIOContext **dyn_cp, ebml_m
|
||||
{
|
||||
int ret;
|
||||
|
||||
if (ret = avio_open_dyn_buf(dyn_cp) < 0)
|
||||
if ((ret = avio_open_dyn_buf(dyn_cp)) < 0)
|
||||
return ret;
|
||||
|
||||
if (pb->seekable)
|
||||
|
Loading…
Reference in New Issue
Block a user