summaryrefslogtreecommitdiffstats
path: root/libvo/fastmemcpy.h
diff options
context:
space:
mode:
authoral3x <al3x@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-15 12:42:00 +0000
committeral3x <al3x@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-15 12:42:00 +0000
commit0fa160eedf03b2a9a5a180f98a2da660272c5a64 (patch)
tree8f67c2ff8c5f4951323a326f2f61922369318196 /libvo/fastmemcpy.h
parentc9f2d354b48ba0b2cc1ae392ee743580416383f8 (diff)
downloadmpv-0fa160eedf03b2a9a5a180f98a2da660272c5a64.tar.bz2
mpv-0fa160eedf03b2a9a5a180f98a2da660272c5a64.tar.xz
cosmetic changes and sse/sse included
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1132 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/fastmemcpy.h')
-rw-r--r--libvo/fastmemcpy.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libvo/fastmemcpy.h b/libvo/fastmemcpy.h
index bd42d8562b..cff2846bc8 100644
--- a/libvo/fastmemcpy.h
+++ b/libvo/fastmemcpy.h
@@ -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
-
+#endif /* HAVE_MMX/MMX2/3DNOW/SSE/SSE2 */
+#endif /* USE_FASTMEMCPY */
#endif