Commit 77ef5388 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/vcr1: Fix bitstream input size check

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 55ae13e3
......@@ -55,7 +55,7 @@ static int vcr1_decode_frame(AVCodecContext *avctx, void *data,
const uint8_t *bytestream_end = bytestream + avpkt->size;
int i, x, y, ret;
if(avpkt->size < 16 + avctx->height + avctx->width*avctx->height*5/8){
if(avpkt->size < 32 + avctx->height + avctx->width*avctx->height*5/8){
av_log(avctx, AV_LOG_ERROR, "Insufficient input data.\n");
return AVERROR(EINVAL);
}
......
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