From 697edcc12a0ab645f66378cee9549b80a40fe59c Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 24 Jul 2012 04:05:18 +0200 Subject: vc1dec: dont attempt error concealment on field pictures. This is not implemented and doesnt work. Signed-off-by: Michael Niedermayer --- libavcodec/vc1dec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavcodec/vc1dec.c') diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index a0a97ebff7..3debe52307 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -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); -- cgit v1.2.3