[xiph-commits] r15077 - trunk/theora/lib/enc/x86_32

xiphmont at svn.xiph.org xiphmont at svn.xiph.org
Fri Jun 27 14:49:06 PDT 2008


Author: xiphmont
Date: 2008-06-27 14:49:05 -0700 (Fri, 27 Jun 2008)
New Revision: 15077

Modified:
   trunk/theora/lib/enc/x86_32/dct_decode_mmx.c
Log:
Also update 32 bit MMX with loop filter fix



Modified: trunk/theora/lib/enc/x86_32/dct_decode_mmx.c
===================================================================
--- trunk/theora/lib/enc/x86_32/dct_decode_mmx.c	2008-06-27 21:45:39 UTC (rev 15076)
+++ trunk/theora/lib/enc/x86_32/dct_decode_mmx.c	2008-06-27 21:49:05 UTC (rev 15077)
@@ -388,8 +388,8 @@
 	    loop_filter_v(&pbi->LastFrameRecon[bp[0]],stride,ll);
 	  if(bp+1<bp_right && !cp[1])
 	    loop_filter_h(&pbi->LastFrameRecon[bp[0]]+8,stride,ll);
-	  if(bp+stride<bp_end && !cp[stride])
-	    loop_filter_v(&pbi->LastFrameRecon[bp[h]]+8,stride,ll);
+	  if(bp+h<bp_end && !cp[h])
+	    loop_filter_v(&pbi->LastFrameRecon[bp[h]],stride,ll);
 	}
 	bp++;
 	cp++;



More information about the commits mailing list