Mercurial > mplayer.hg
comparison libvo/fastmemcpy.h @ 28291:2f5073b600f4
More #ifdef -> #if fixes
author | reimar |
---|---|
date | Fri, 16 Jan 2009 09:29:20 +0000 |
parents | 9e739bdb049c |
children | 31287e75b5d8 |
comparison
equal
deleted
inserted
replaced
28290:25337a2147e7 | 28291:2f5073b600f4 |
---|---|
22 #include "config.h" | 22 #include "config.h" |
23 #include <inttypes.h> | 23 #include <inttypes.h> |
24 #include <string.h> | 24 #include <string.h> |
25 | 25 |
26 #ifdef CONFIG_FASTMEMCPY | 26 #ifdef CONFIG_FASTMEMCPY |
27 #if defined(HAVE_MMX) || defined(HAVE_MMX2) || defined(HAVE_3DNOW) \ | 27 #if HAVE_MMX || HAVE_MMX2 || HAVE_3DNOW \ |
28 /* || defined(HAVE_SSE) || defined(HAVE_SSE2) */ | 28 /* || HAVE_SSE || HAVE_SSE2 */ |
29 #include <stddef.h> | 29 #include <stddef.h> |
30 | 30 |
31 void * fast_memcpy(void * to, const void * from, size_t len); | 31 void * fast_memcpy(void * to, const void * from, size_t len); |
32 void * mem2agpcpy(void * to, const void * from, size_t len); | 32 void * mem2agpcpy(void * to, const void * from, size_t len); |
33 | 33 |