[xiph-commits] r16231 - branches/theora-thusnelda/lib/dec/x86_vc

cristianadam at svn.xiph.org cristianadam at svn.xiph.org
Wed Jul 8 13:19:47 PDT 2009


Author: cristianadam
Date: 2009-07-08 13:19:47 -0700 (Wed, 08 Jul 2009)
New Revision: 16231

Modified:
   branches/theora-thusnelda/lib/dec/x86_vc/mmxloop.h
Log:
Commented on usage of useful local variables.

Modified: branches/theora-thusnelda/lib/dec/x86_vc/mmxloop.h
===================================================================
--- branches/theora-thusnelda/lib/dec/x86_vc/mmxloop.h	2009-07-08 18:32:54 UTC (rev 16230)
+++ branches/theora-thusnelda/lib/dec/x86_vc/mmxloop.h	2009-07-08 20:19:47 UTC (rev 16231)
@@ -92,6 +92,9 @@
 
 #define OC_LOOP_FILTER_V_MMX(_pix,_ystride,_ll) \
   do{ \
+    /*Used local variable pix__ in order to fix compilation errors like:
+     "error C2425: 'SHL' : non-constant expression in 'second operand'"
+     */ \
     unsigned char *pix__; \
     unsigned char *ll__; \
     ll__=(_ll); \
@@ -120,6 +123,9 @@
 
 #define OC_LOOP_FILTER_H_MMX(_pix,_ystride,_ll) \
   do{ \
+    /*Used local variable ll__ in order to fix compilation errors like: 
+     "error C2443: operand size conflict"
+     */ \
     unsigned char *ll__; \
     unsigned char *pix__; \
     ll__=(_ll); \



More information about the commits mailing list