OSDN Git Service

vc1: enable interlaced p fields again, they seem no longer to crash with out of...
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 11 Oct 2011 11:06:30 +0000 (13:06 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 11 Oct 2011 11:55:09 +0000 (13:55 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/vc1.c

index 8d7b1c1..d715ffe 100644 (file)
@@ -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);