diff libvo/fastmemcpy.h @ 27341:e7c989f7a7c9

Start unifying names of internal preprocessor directives. Replace all USE_ prefixes by CONFIG_ prefixes to indicate options which are configurable.
author diego
date Wed, 30 Jul 2008 12:01:30 +0000
parents b03f87f35c3c
children 9e739bdb049c
line wrap: on
line diff
--- a/libvo/fastmemcpy.h	Wed Jul 30 11:48:01 2008 +0000
+++ b/libvo/fastmemcpy.h	Wed Jul 30 12:01:30 2008 +0000
@@ -23,7 +23,7 @@
 #include <inttypes.h>
 #include <string.h>
 
-#ifdef USE_FASTMEMCPY
+#ifdef CONFIG_FASTMEMCPY
 #if defined(HAVE_MMX) || defined(HAVE_MMX2) || defined(HAVE_3DNOW) \
 /*    || defined(HAVE_SSE) || defined(HAVE_SSE2) */
 #include <stddef.h>
@@ -36,7 +36,7 @@
 #define fast_memcpy(a,b,c) memcpy(a,b,c)
 #endif
 
-#else /* USE_FASTMEMCPY */
+#else /* CONFIG_FASTMEMCPY */
 #define mem2agpcpy(a,b,c) memcpy(a,b,c)
 #define fast_memcpy(a,b,c) memcpy(a,b,c)
 #endif