Commit 2baf36ca authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/ituh263dec: Avoid spending a long time in slice sync

Fixes: 177/fuzz-3-ffmpeg_VIDEO_AV_CODEC_ID_FLV1_fuzzer

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpegSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 83a139e3
...@@ -167,6 +167,7 @@ static int h263_decode_gob_header(MpegEncContext *s) ...@@ -167,6 +167,7 @@ static int h263_decode_gob_header(MpegEncContext *s)
/* We have a GBSC probably with GSTUFF */ /* We have a GBSC probably with GSTUFF */
skip_bits(&s->gb, 16); /* Drop the zeros */ skip_bits(&s->gb, 16); /* Drop the zeros */
left= get_bits_left(&s->gb); left= get_bits_left(&s->gb);
left = FFMIN(left, 32);
//MN: we must check the bits left or we might end in an infinite loop (or segfault) //MN: we must check the bits left or we might end in an infinite loop (or segfault)
for(;left>13; left--){ for(;left>13; left--){
if(get_bits1(&s->gb)) break; /* Seek the '1' bit */ if(get_bits1(&s->gb)) break; /* Seek the '1' bit */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment