mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-02 10:41:16 +00:00
avcodec/mjpeg_parser: Adjust size rejection threshold
Fixes: 86987846-429c8d80-c197-11ea-916b-bb4738e09687.jpg
Fixes: Regression since ec3d8a0e69
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
4a10bc8f6f
commit
dde6077297
@ -82,7 +82,7 @@ static int find_frame_end(MJPEGParserContext *m, const uint8_t *buf, int buf_siz
|
|||||||
return i-3;
|
return i-3;
|
||||||
} else if(state<0xFFD00000 || state>0xFFD9FFFF){
|
} else if(state<0xFFD00000 || state>0xFFD9FFFF){
|
||||||
m->size= (state&0xFFFF)-1;
|
m->size= (state&0xFFFF)-1;
|
||||||
if (m->size >= 0x8000)
|
if (m->size >= 0xF000)
|
||||||
m->size = 0;
|
m->size = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user