summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-07-30 12:02:22 +0000
committerDiego Biurrun <diego@biurrun.de>2008-07-30 12:02:22 +0000
commit9f31c7ef37d750441c3371457264ba3ec8d15f3c (patch)
tree17cad391c6c8ffe4101ec1eec082b587c384d199 /libavutil
parentaf8ed96f45c64f6d4c4ca99374f869d21afd6d9d (diff)
USE_FASTMEMCPY is now called CONFIG_FASTMEMCPY in MPlayer.
Originally committed as revision 14475 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h
index cc62d3b221..32db7f5d9b 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -106,7 +106,7 @@
# define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F))
#endif
-#ifdef USE_FASTMEMCPY
+#ifdef CONFIG_FASTMEMCPY
# include "libvo/fastmemcpy.h"
# define memcpy(a,b,c) fast_memcpy(a,b,c)
#endif