[FFmpeg-cvslog] r10738 - trunk/libavcodec/h264.c

cehoyos subversion
Mon Oct 15 08:23:02 CEST 2007


Author: cehoyos
Date: Mon Oct 15 08:23:02 2007
New Revision: 10738

Log:
Fix mix-up of values in r10690 (deblocking for PAFF).

Patch by Martin Zlomek, martin d zlomek a email d cz


Modified:
   trunk/libavcodec/h264.c

Modified: trunk/libavcodec/h264.c
==============================================================================
--- trunk/libavcodec/h264.c	(original)
+++ trunk/libavcodec/h264.c	Mon Oct 15 08:23:02 2007
@@ -6443,9 +6443,9 @@ static void filter_mb_fast( H264Context 
                                               (h->slice_type == B_TYPE), edges, step, mask_edge0, mask_edge1 );
         }
         if( IS_INTRA(s->current_picture.mb_type[mb_xy-1]) )
-            bSv[0][0] = FIELD_PICTURE ? 0x0003000300030003ULL : 0x0004000400040004ULL;
+            bSv[0][0] = 0x0004000400040004ULL;
         if( IS_INTRA(s->current_picture.mb_type[h->top_mb_xy]) )
-            bSv[1][0] = 0x0004000400040004ULL;
+            bSv[1][0] = FIELD_PICTURE ? 0x0003000300030003ULL : 0x0004000400040004ULL;
 
 #define FILTER(hv,dir,edge)\
         if(bSv[dir][edge]) {\




More information about the ffmpeg-cvslog mailing list