Commit 697edcc1 authored by Michael Niedermayer's avatar Michael Niedermayer

vc1dec: dont attempt error concealment on field pictures.

This is not implemented and doesnt work.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2e346bda
......@@ -5638,7 +5638,8 @@ static int vc1_decode_frame(AVCodecContext *avctx, void *data,
// return -1;
if(s->error_occurred && s->pict_type == AV_PICTURE_TYPE_B)
goto err;
ff_er_frame_end(s);
if(!v->field_mode)
ff_er_frame_end(s);
}
ff_MPV_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