From 6f74b71ef0f5457b8cc736cb8f828ec1b75a217c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= <Reimar.Doeffinger@gmx.de>
Date: Tue, 5 Jun 2007 14:33:27 +0000
Subject: [PATCH] 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(+)

diff --git a/libavutil/internal.h b/libavutil/internal.h
index d77170a257d..67f9fe6d9e9 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.
-- 
GitLab