From: Michael Niedermayer Date: Tue, 11 Oct 2011 11:06:30 +0000 (+0200) Subject: vc1: enable interlaced p fields again, they seem no longer to crash with out of... X-Git-Tag: android-x86-4.4-r1~15625 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7b5c03064df522aef027490c51af8136ed5f17b3;p=android-x86%2Fexternal-ffmpeg.git vc1: enable interlaced p fields again, they seem no longer to crash with out of array writes Signed-off-by: Michael Niedermayer --- diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 8d7b1c1ed7..d715ffefe8 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -987,8 +987,6 @@ int vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb) break; case AV_PICTURE_TYPE_P: if (v->field_mode) { - av_log(v->s.avctx, AV_LOG_ERROR, "P Fields do not work currently\n"); - return -1; v->numref = get_bits1(gb); if (!v->numref) { v->reffield = get_bits1(gb);