summaryrefslogtreecommitdiff
path: root/libavutil/internal.h
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2007-06-05 14:33:27 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2007-06-05 14:33:27 +0000
commit6f74b71ef0f5457b8cc736cb8f828ec1b75a217c (patch)
tree43f5c616d060f82db5e26db3ca008717d93d5cb8 /libavutil/internal.h
parent83bc90dcfd91da4707f53d8f3722cb11d13092f1 (diff)
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
Diffstat (limited to 'libavutil/internal.h')
-rw-r--r--libavutil/internal.h1
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.