diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-06-05 14:33:27 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-06-05 14:33:27 +0000 |
commit | 6f74b71ef0f5457b8cc736cb8f828ec1b75a217c (patch) | |
tree | 43f5c616d060f82db5e26db3ca008717d93d5cb8 | |
parent | 83bc90dcfd91da4707f53d8f3722cb11d13092f1 (diff) | |
download | ffmpeg-6f74b71ef0f5457b8cc736cb8f828ec1b75a217c.tar.gz |
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.
Originally committed as revision 9225 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index d77170a257..67f9fe6d9e 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -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. |