Commit cc402282 authored by Paul B Mahol's avatar Paul B Mahol

avcodec/mpc8: check for overread earlier and abort decoding frame

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 11f8f954
......@@ -273,6 +273,11 @@ static int mpc8_decode_frame(AVCodecContext * avctx, void *data,
if(maxband > 32) maxband -= 33;
}
if (get_bits_left(gb) < 0) {
*got_frame_ptr = 0;
return buf_size;
}
if(maxband > c->maxbands + 1) {
av_log(avctx, AV_LOG_ERROR, "maxband %d too large\n",maxband);
return AVERROR_INVALIDDATA;
......
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