From 9f31c7ef37d750441c3371457264ba3ec8d15f3c Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 30 Jul 2008 12:02:22 +0000 Subject: [PATCH] USE_FASTMEMCPY is now called CONFIG_FASTMEMCPY in MPlayer. Originally committed as revision 14475 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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