[Ffmpeg-cvslog] r6309 - trunk/libavcodec/vc1.c

kostya subversion
Thu Sep 21 06:46:11 CEST 2006


Author: kostya
Date: Thu Sep 21 06:46:11 2006
New Revision: 6309

Modified:
   trunk/libavcodec/vc1.c

Log:
Finally enable B-frame decoding as all known samples work perfect

Modified: trunk/libavcodec/vc1.c
==============================================================================
--- trunk/libavcodec/vc1.c	(original)
+++ trunk/libavcodec/vc1.c	Thu Sep 21 06:46:11 2006
@@ -4201,12 +4201,6 @@
         return -1;
     }
 
-    /* skip B frames as they are not decoded correctly */
-    if(s->pict_type == B_TYPE){
-        av_free(buf2);
-        return buf_size;
-    }
-
     // for hurry_up==5
     s->current_picture.pict_type= s->pict_type;
     s->current_picture.key_frame= s->pict_type == I_TYPE;




More information about the ffmpeg-cvslog mailing list