summaryrefslogtreecommitdiffstats
path: root/libvo/fastmemcpy.h
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-14 18:18:14 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-14 18:18:14 +0000
commit91df40213443c8f04d231309a552566dce8b79c6 (patch)
treeff2f2dc8d8b321b5736f1610aab39186b49fe2b6 /libvo/fastmemcpy.h
parent5bc84d0f810a8f902cbb66a1c1227e3afe5471d7 (diff)
downloadmpv-91df40213443c8f04d231309a552566dce8b79c6.tar.bz2
mpv-91df40213443c8f04d231309a552566dce8b79c6.tar.xz
USE_FASTMEMCPY bug fixed.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@801 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/fastmemcpy.h')
-rw-r--r--libvo/fastmemcpy.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libvo/fastmemcpy.h b/libvo/fastmemcpy.h
index d61f72b239..bd42d8562b 100644
--- a/libvo/fastmemcpy.h
+++ b/libvo/fastmemcpy.h
@@ -1,6 +1,8 @@
#ifndef __MPLAYER_MEMCPY
#define __MPLAYER_MEMCPY 1
+#ifdef USE_FASTMEMCPY
+
#if defined( HAVE_MMX2 ) || defined( HAVE_3DNOW ) || defined( HAVE_MMX )
#include <stddef.h>
@@ -10,3 +12,5 @@ extern void * fast_memcpy(void * to, const void * from, size_t len);
#endif
#endif
+
+#endif