mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-11 17:30:00 +01:00
avformat/flacdec: fix self assign warning
This commit is contained in:
@@ -102,9 +102,9 @@ static int flac_read_header(AVFormatContext *s)
|
|||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
}
|
}
|
||||||
ret = ffio_read_size(s->pb, buffer, metadata_size);
|
ret = ffio_read_size(s->pb, buffer, metadata_size);
|
||||||
if (ret < 0) {
|
if (ret < 0)
|
||||||
RETURN_ERROR(ret);
|
goto fail;
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
/* skip metadata block for unsupported types */
|
/* skip metadata block for unsupported types */
|
||||||
default:
|
default:
|
||||||
|
|||||||
Reference in New Issue
Block a user