mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-03 05:10:03 +02:00
jv demuxer: prevent video packet size overflow
In the event of overflow, the JV_PADDING state will avio_skip over any overflow bytes (using JVFrame.total_size).
This commit is contained in:
parent
478607668c
commit
435535e411
@ -116,6 +116,8 @@ static int read_header(AVFormatContext *s,
|
||||
jvf->audio_size = avio_rl32(pb);
|
||||
jvf->video_size = avio_rl32(pb);
|
||||
jvf->palette_size = avio_r8(pb) ? 768 : 0;
|
||||
jvf->video_size = FFMIN(FFMAX(jvf->video_size, 0),
|
||||
INT_MAX - JV_PREAMBLE_SIZE - jvf->palette_size);
|
||||
if (avio_r8(pb))
|
||||
av_log(s, AV_LOG_WARNING, "unsupported audio codec\n");
|
||||
jvf->video_type = avio_r8(pb);
|
||||
|
Loading…
Reference in New Issue
Block a user