changeset 340:ae8a3be2db3b libavutil

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.
author reimar
date Tue, 05 Jun 2007 14:33:27 +0000
parents 8829032777d5
children 53126d45b095
files internal.h
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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.