USE_FASTMEMCPY is now called CONFIG_FASTMEMCPY in MPlayer.
authorDiego Biurrun <diego@biurrun.de>
Wed, 30 Jul 2008 12:02:22 +0000 (12:02 +0000)
committerDiego Biurrun <diego@biurrun.de>
Wed, 30 Jul 2008 12:02:22 +0000 (12:02 +0000)
Originally committed as revision 14475 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/internal.h

index cc62d3b..32db7f5 100644 (file)
 #    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