Commit 0a19b4b0 authored by Michael Niedermayer's avatar Michael Niedermayer

4xm decoder: fix data size for i2 frames.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 1008f639
......@@ -829,7 +829,7 @@ static int decode_frame(AVCodecContext *avctx,
if(frame_4cc == AV_RL32("ifr2")){
p->pict_type= AV_PICTURE_TYPE_I;
if(decode_i2_frame(f, buf-4, frame_size) < 0){
if(decode_i2_frame(f, buf-4, frame_size+4) < 0){
av_log(f->avctx, AV_LOG_ERROR, "decode i2 frame failed\n");
return -1;
}
......
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