Commit 9e794d10 authored by Michael Niedermayer's avatar Michael Niedermayer

vc1dec: drop damaged B frames

Fixes: vc1_error_spilt.avi of Ticket606
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7d52f46d
......@@ -5719,6 +5719,8 @@ static int vc1_decode_frame(AVCodecContext *avctx, void *data,
//av_log(s->avctx, AV_LOG_INFO, "Consumed %i/%i bits\n", get_bits_count(&s->gb), s->gb.size_in_bits);
// if (get_bits_count(&s->gb) > buf_size * 8)
// return -1;
if(s->error_occurred & s->pict_type == AV_PICTURE_TYPE_B)
goto err;
ff_er_frame_end(s);
}
......
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