[Ffmpeg-cvslog] r5831 - trunk/libavcodec/h264.c

lorenm subversion
Thu Jul 27 22:37:23 CEST 2006


Author: lorenm
Date: Thu Jul 27 22:37:21 2006
New Revision: 5831

Modified:
   trunk/libavcodec/h264.c

Log:
10l in r5768 (broke mbaff)


Modified: trunk/libavcodec/h264.c
==============================================================================
--- trunk/libavcodec/h264.c	(original)
+++ trunk/libavcodec/h264.c	Thu Jul 27 22:37:21 2006
@@ -841,7 +841,7 @@
                 assert((!left_type[0]) == (!left_type[1]));
             }
 
-            if(for_deblock || (IS_DIRECT(mb_type) && !h->direct_spatial_mv_pred))
+            if((for_deblock || (IS_DIRECT(mb_type) && !h->direct_spatial_mv_pred)) && !FRAME_MBAFF)
                 continue;
 
             if(USES_LIST(topleft_type, list)){
@@ -864,7 +864,7 @@
                 h->ref_cache[list][scan8[0] + 4 - 1*8]= topright_type ? LIST_NOT_USED : PART_NOT_AVAILABLE;
             }
 
-            if(IS_SKIP(mb_type) || IS_DIRECT(mb_type))
+            if((IS_SKIP(mb_type) || IS_DIRECT(mb_type)) && !FRAME_MBAFF)
                 continue;
 
             h->ref_cache[list][scan8[5 ]+1] =




More information about the ffmpeg-cvslog mailing list