mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 21:20:41 +00:00
flvdec: Check the avio_seek return value after reading a metadata packet
merge from libav: 585dc1aece
If the metadata packet is corrupted, flv_read_metabody can accidentally
read past the start of the next packet. If the start of the next packet
had been flushed out of the IO buffer, we would be unable to seek to
the right position (on a nonseekable stream).
Prefer to clearly error out instead of silently trying to read from a
desynced stream which will only be interpreted as garbage.
This commit is contained in:
parent
171adca696
commit
15537c904e
@ -1015,7 +1015,13 @@ retry:
|
||||
"Skipping flv packet: type %d, size %d, flags %d.\n",
|
||||
type, size, flags);
|
||||
skip:
|
||||
avio_seek(s->pb, next, SEEK_SET);
|
||||
if (avio_seek(s->pb, next, SEEK_SET) != next) {
|
||||
// This can happen if flv_read_metabody above read past
|
||||
// next, on a non-seekable input, and the preceding data has
|
||||
// been flushed out from the IO buffer.
|
||||
av_log(s, AV_LOG_ERROR, "Unable to seek to the next packet\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
ret = FFERROR_REDO;
|
||||
goto leave;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user