Commit d7027692 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/scpr: Skip frames which change nothing

Fixes: Timeout
Fixes: 10292/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SCPR_fuzzer-5687943864254464

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent a8a98ba9
......@@ -516,7 +516,7 @@ static int decompress_p(AVCodecContext *avctx,
int backstep = linesize - avctx->width;
if (bytestream2_get_byte(gb) == 0)
return 0;
return 1;
bytestream2_skip(gb, 1);
init_rangecoder(&s->rc, gb);
......@@ -813,6 +813,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
s->current_frame->linesize[0] / 4,
(uint32_t *)s->last_frame->data[0],
s->last_frame->linesize[0] / 4);
if (ret == 1)
return avpkt->size;
} else {
return AVERROR_PATCHWELCOME;
}
......
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