From f2015f0c50267cbf3dd023b217eae2d1a0938571 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Sat, 17 Jul 2004 08:56:47 +0000 Subject: [PATCH] fix altivec.h inclusion (vector keyword in structure) Originally committed as revision 12839 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc --- postproc/swscale.c | 3 --- postproc/swscale_internal.h | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/postproc/swscale.c b/postproc/swscale.c index 891352121c..dbe7203383 100644 --- a/postproc/swscale.c +++ b/postproc/swscale.c @@ -61,9 +61,6 @@ untested special converters #else #include #endif -#ifdef HAVE_ALTIVEC_H -#include -#endif #include "swscale.h" #include "swscale_internal.h" #include "../cpudetect.h" diff --git a/postproc/swscale_internal.h b/postproc/swscale_internal.h index c6d5a2f974..c7761ee1a4 100644 --- a/postproc/swscale_internal.h +++ b/postproc/swscale_internal.h @@ -19,6 +19,10 @@ #ifndef SWSCALE_INTERNAL_H #define SWSCALE_INTERNAL_H +#ifdef HAVE_ALTIVEC_H +#include +#endif + #include "../mp_msg.h" #define MSG_WARN(args...) mp_msg(MSGT_SWS,MSGL_WARN, ##args ) -- GitLab