You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avformat/matroskaenc: Fix () error
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -316,7 +316,7 @@ static int start_ebml_master_crc32(AVIOContext *pb, AVIOContext **dyn_cp, ebml_m
|
|||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (ret = avio_open_dyn_buf(dyn_cp) < 0)
|
if ((ret = avio_open_dyn_buf(dyn_cp)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
if (pb->seekable)
|
if (pb->seekable)
|
||||||
|
Reference in New Issue
Block a user