USE_FASTMEMCPY is now called CONFIG_FASTMEMCPY in MPlayer.

Originally committed as revision 14475 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2008-07-30 12:02:22 +00:00
parent af8ed96f45
commit 9f31c7ef37
1 changed files with 1 additions and 1 deletions

View File

@ -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