[SCM] libav/experimental: 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.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:01:06 UTC 2013


The following commit has been merged in the experimental branch:
commit 6f74b71ef0f5457b8cc736cb8f828ec1b75a217c
Author: Reimar Döffinger <Reimar.Doeffinger at gmx.de>
Date:   Tue Jun 5 14:33:27 2007 +0000

    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

diff --git a/libavutil/internal.h b/libavutil/internal.h
index d77170a..67f9fe6 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.

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list