mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-30 23:10:32 +00:00
avcodec/jpeg2000dec: Check PLT data somewhat
Fixes: Timeout (21sec -> 0.6sec) Fixes: 14134/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_JPEG2000_fuzzer-5768371078955008 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
6381b6f6a9
commit
e627113329
@ -832,15 +832,21 @@ static uint8_t get_tlm(Jpeg2000DecoderContext *s, int n)
|
||||
static uint8_t get_plt(Jpeg2000DecoderContext *s, int n)
|
||||
{
|
||||
int i;
|
||||
int v;
|
||||
|
||||
av_log(s->avctx, AV_LOG_DEBUG,
|
||||
"PLT marker at pos 0x%X\n", bytestream2_tell(&s->g) - 4);
|
||||
|
||||
if (n < 4)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
/*Zplt =*/ bytestream2_get_byte(&s->g);
|
||||
|
||||
for (i = 0; i < n - 3; i++) {
|
||||
bytestream2_get_byte(&s->g);
|
||||
v = bytestream2_get_byte(&s->g);
|
||||
}
|
||||
if (v & 0x80)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user