Originally committed as revision 27720 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
*/
#include <stddef.h>
-#include <inttypes.h> /* for __WORDSIZE */
#undef PREFETCH
#undef MOVNTQ
ysrc += lumStride;
dst += dstStride;
-#elif __WORDSIZE >= 64
+#elif HAVE_FAST_64BIT
int i;
uint64_t *ldst = (uint64_t *) dst;
const uint8_t *yc = ysrc, *uc = usrc, *vc = vsrc;
#else
//FIXME adapt the Alpha ASM code from yv12->yuy2
-#if __WORDSIZE >= 64
+#if HAVE_FAST_64BIT
int i;
uint64_t *ldst = (uint64_t *) dst;
const uint8_t *yc = ysrc, *uc = usrc, *vc = vsrc;