diff options
author | Magnus Damm <damm@opensource.se> | 2004-03-14 18:04:59 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-03-14 18:04:59 +0000 |
commit | 35fe5cc53ff1b2a23e01557cad19ffdbe14cad6f (patch) | |
tree | 7b595023baae95b5de5d25020cc6498378e3a09f /postproc | |
parent | 37923cd32d191a3a2a7db3b632c66f9b06b7f1ac (diff) | |
download | ffmpeg-streaming-35fe5cc53ff1b2a23e01557cad19ffdbe14cad6f.zip ffmpeg-streaming-35fe5cc53ff1b2a23e01557cad19ffdbe14cad6f.tar.gz |
altivec swscale under Linux patch by (Magnus Damm <damm at opensource dot se>)
Originally committed as revision 12024 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r-- | postproc/swscale.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/postproc/swscale.c b/postproc/swscale.c index 98cd469..38284a1 100644 --- a/postproc/swscale.c +++ b/postproc/swscale.c @@ -61,6 +61,9 @@ untested special converters #else #include <stdlib.h> #endif +#ifdef HAVE_ALTIVEC_H +#include <altivec.h> +#endif #include "swscale.h" #include "swscale_internal.h" #include "../cpudetect.h" |