From 6f74b71ef0f5457b8cc736cb8f828ec1b75a217c Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Tue, 5 Jun 2007 14:33:27 +0000 Subject: 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 --- libavutil/internal.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libavutil/internal.h') 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. -- cgit v1.2.3