diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-11-04 22:45:34 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-11-04 22:45:34 +0000 |
commit | 70d4f2da7f2747423213a980ad6fff6ffd53211b (patch) | |
tree | 74ad3cfa4704311d00ee50200e982f0ef265e604 | |
parent | b587a7cb2b3dad0c75ad266767b3f7aca2af65de (diff) | |
download | ffmpeg-70d4f2da7f2747423213a980ad6fff6ffd53211b.tar.gz |
dont use fastmemcpy for PIC
Originally committed as revision 8108 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
-rw-r--r-- | postproc/postprocess.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/postproc/postprocess.c b/postproc/postprocess.c index 03a6392a62..1ccea03dfb 100644 --- a/postproc/postprocess.c +++ b/postproc/postprocess.c @@ -75,7 +75,9 @@ try to unroll inner for(x=0 ... loop to avoid these damn if(x ... checks //#undef HAVE_MMX //#undef ARCH_X86 //#define DEBUG_BRIGHTNESS +#ifndef PIC #include "../libvo/fastmemcpy.h" +#endif #include "postprocess.h" #include "postprocess_internal.h" #include "../mangle.h" |