diff rectangle.h @ 8590:7a463923ecd1 libavcodec

Change semantic of CONFIG_*, HAVE_* and ARCH_*. They are now always defined to either 0 or 1.
author aurel
date Tue, 13 Jan 2009 23:44:16 +0000
parents c4a4495715dd
children 1612935d2e4d
line wrap: on
line diff
--- a/rectangle.h	Tue Jan 13 21:13:45 2009 +0000
+++ b/rectangle.h	Tue Jan 13 23:44:16 2009 +0000
@@ -64,7 +64,7 @@
         *(uint32_t*)(p + 3*stride)= v;
     }else if(w==8){
     //gcc can't optimize 64bit math on x86_32
-#ifdef HAVE_FAST_64BIT
+#if HAVE_FAST_64BIT
         const uint64_t v= val*0x0100000001ULL;
         *(uint64_t*)(p + 0*stride)= v;
         if(h==1) return;