diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-06-06 23:17:18 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-06-14 21:36:39 +0200 |
commit | aa003019ab9ec5ef7e7b3ff9d6262d3472b427eb (patch) | |
tree | fae36a69c54abe1f8fc7a9802d10e85eab58d4d7 | |
parent | 8c6c4129b4cc3b9e0b3a527a5a15c904ec6ae3b6 (diff) | |
download | ffmpeg-aa003019ab9ec5ef7e7b3ff9d6262d3472b427eb.tar.gz |
avformat/vpk: Check offset for validity
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/vpk.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/vpk.c b/libavformat/vpk.c index dcc2db329c..255d6030b0 100644 --- a/libavformat/vpk.c +++ b/libavformat/vpk.c @@ -66,6 +66,9 @@ static int vpk_read_header(AVFormatContext *s) return AVERROR_INVALIDDATA; vpk->block_count = (st->duration + (samples_per_block - 1)) / samples_per_block; vpk->last_block_size = (st->duration % samples_per_block) * 16 * st->codecpar->channels / 28; + + if (offset < avio_tell(s->pb)) + return AVERROR_INVALIDDATA; avio_skip(s->pb, offset - avio_tell(s->pb)); avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate); |