summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-01-16 09:29:20 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-01-16 09:29:20 +0000
commit4abf191c5dd22bf1617aee1e62c4917e84a949da (patch)
tree933d2cf422ecc3d84b615df539a42c0570c47ce2 /libvo
parent93d598c7b2d6f71fa6381829dc6ec3610ed322e8 (diff)
downloadmpv-4abf191c5dd22bf1617aee1e62c4917e84a949da.tar.bz2
mpv-4abf191c5dd22bf1617aee1e62c4917e84a949da.tar.xz
More #ifdef -> #if fixes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28326 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/fastmemcpy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/fastmemcpy.h b/libvo/fastmemcpy.h
index be0b752558..69ded04bcf 100644
--- a/libvo/fastmemcpy.h
+++ b/libvo/fastmemcpy.h
@@ -24,8 +24,8 @@
#include <string.h>
#ifdef CONFIG_FASTMEMCPY
-#if defined(HAVE_MMX) || defined(HAVE_MMX2) || defined(HAVE_3DNOW) \
-/* || defined(HAVE_SSE) || defined(HAVE_SSE2) */
+#if HAVE_MMX || HAVE_MMX2 || HAVE_3DNOW \
+/* || HAVE_SSE || HAVE_SSE2 */
#include <stddef.h>
void * fast_memcpy(void * to, const void * from, size_t len);