summaryrefslogtreecommitdiff
path: root/libavcodec/ppc/fdct_altivec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-04-12 21:45:26 +0000
committerDiego Biurrun <diego@biurrun.de>2009-04-12 21:45:26 +0000
commit5137235e0cc19175bc96eecd0762ab3398d5c4a8 (patch)
tree196b380b5f9e3217b5edc8d2bd1d65acb9186bf2 /libavcodec/ppc/fdct_altivec.c
parent788cca4135875642418fea7a4aee18a865a251cd (diff)
downloadffmpeg-5137235e0cc19175bc96eecd0762ab3398d5c4a8.tar.gz
Remove gcc_fixes.h. It only contains workarounds for unsupported gcc versions.
Originally committed as revision 18476 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ppc/fdct_altivec.c')
-rw-r--r--libavcodec/ppc/fdct_altivec.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/ppc/fdct_altivec.c b/libavcodec/ppc/fdct_altivec.c
index 41bebd184a..3dfd59ca29 100644
--- a/libavcodec/ppc/fdct_altivec.c
+++ b/libavcodec/ppc/fdct_altivec.c
@@ -18,11 +18,13 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-
+#include "config.h"
+#if HAVE_ALTIVEC_H
+#include <altivec.h>
+#endif
#include "libavutil/common.h"
#include "libavcodec/dsputil.h"
#include "dsputil_ppc.h"
-#include "gcc_fixes.h"
#define vs16(v) ((vector signed short)(v))