# HG changeset patch # User reimar # Date 1181054007 0 # Node ID ae8a3be2db3bdf2cb7433b2931b7a9a53a8f7868 # Parent 8829032777d50532964bbfd938894dd44a2993f6 Part of MPlayer patch: "Replace implicit use of fast_memcpy via macro by explicit use to allow for future optimization." This is not yet done for ffmpeg when compiled within MPlayer. diff -r 8829032777d5 -r ae8a3be2db3b internal.h --- a/internal.h Wed May 30 09:32:25 2007 +0000 +++ b/internal.h Tue Jun 05 14:33:27 2007 +0000 @@ -108,6 +108,7 @@ #ifdef USE_FASTMEMCPY # include "libvo/fastmemcpy.h" +# define memcpy(a,b,c) fast_memcpy(a,b,c) #endif // Use rip-relative addressing if compiling PIC code on x86-64.