1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

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
This commit is contained in:
Reimar Döffinger 2007-06-05 14:33:27 +00:00
parent 83bc90dcfd
commit 6f74b71ef0

View File

@ -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.