Commit 6f74b71e authored by Reimar Döffinger's avatar Reimar Döffinger

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
parent 83bc90dc
...@@ -108,6 +108,7 @@ ...@@ -108,6 +108,7 @@
#ifdef USE_FASTMEMCPY #ifdef USE_FASTMEMCPY
# include "libvo/fastmemcpy.h" # include "libvo/fastmemcpy.h"
# define memcpy(a,b,c) fast_memcpy(a,b,c)
#endif #endif
// Use rip-relative addressing if compiling PIC code on x86-64. // Use rip-relative addressing if compiling PIC code on x86-64.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment