mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
ape: Don't allow the seektable to be omitted
The seektable is required for filling in ape->frames[i].pos further down. Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
b26742cc30
commit
183b9d843a
@ -260,7 +260,7 @@ static int ape_read_header(AVFormatContext * s)
|
|||||||
ape->totalframes);
|
ape->totalframes);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (ape->seektablelength && (ape->seektablelength / sizeof(*ape->seektable)) < ape->totalframes) {
|
if (ape->seektablelength / sizeof(*ape->seektable) < ape->totalframes) {
|
||||||
av_log(s, AV_LOG_ERROR,
|
av_log(s, AV_LOG_ERROR,
|
||||||
"Number of seek entries is less than number of frames: %zu vs. %"PRIu32"\n",
|
"Number of seek entries is less than number of frames: %zu vs. %"PRIu32"\n",
|
||||||
ape->seektablelength / sizeof(*ape->seektable), ape->totalframes);
|
ape->seektablelength / sizeof(*ape->seektable), ape->totalframes);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user