[FFmpeg-cvslog] r9225 - trunk/libavutil/internal.h

reimar subversion
Tue Jun 5 16:33:27 CEST 2007


Author: reimar
Date: Tue Jun  5 16:33:27 2007
New Revision: 9225

Log:
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 compiler within MPlayer.


Modified:
   trunk/libavutil/internal.h

Modified: trunk/libavutil/internal.h
==============================================================================
--- trunk/libavutil/internal.h	(original)
+++ trunk/libavutil/internal.h	Tue Jun  5 16:33:27 2007
@@ -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.




More information about the ffmpeg-cvslog mailing list