Mercurial > mplayer.hg
changeset 1131:30e6a115a088
cosmetic changes and sse/sse included
author | al3x |
---|---|
date | Fri, 15 Jun 2001 12:42:00 +0000 |
parents | a95cedf133c1 |
children | 80a0f8aa2360 |
files | libvo/fastmemcpy.h |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/fastmemcpy.h Fri Jun 15 12:37:05 2001 +0000 +++ b/libvo/fastmemcpy.h Fri Jun 15 12:42:00 2001 +0000 @@ -1,16 +1,16 @@ #ifndef __MPLAYER_MEMCPY #define __MPLAYER_MEMCPY 1 -#ifdef USE_FASTMEMCPY +#include "../config.h" -#if defined( HAVE_MMX2 ) || defined( HAVE_3DNOW ) || defined( HAVE_MMX ) +#ifdef USE_FASTMEMCPY +#if defined(HAVE_MMX) || defined(HAVE_MMX2) || defined(HAVE_3DNOW) \ +/* || defined(HAVE_SSE) || defined(HAVE_SSE2) */ #include <stddef.h> extern void * fast_memcpy(void * to, const void * from, size_t len); #define memcpy(a,b,c) fast_memcpy(a,b,c) -#endif - +#endif /* HAVE_MMX/MMX2/3DNOW/SSE/SSE2 */ +#endif /* USE_FASTMEMCPY */ #endif - -#endif