avcodec/mjpeg_parser: Adjust size rejection threshold
Fixes: 86987846-429c8d80-c197-11ea-916b-bb4738e09687.jpg Fixes: Regression sinceec3d8a0e69Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commitdde6077297) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
832652a9d1
commit
3c4679c430
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ static int find_frame_end(MJPEGParserContext *m, const uint8_t *buf, int buf_siz
|
|||
return i-3;
|
||||
} else if(state<0xFFD00000 || state>0xFFD9FFFF){
|
||||
m->size= (state&0xFFFF)-1;
|
||||
if (m->size >= 0x8000)
|
||||
if (m->size >= 0xF000)
|
||||
m->size = 0;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue