diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-04-12 21:45:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-04-12 21:45:26 +0000 |
commit | 5137235e0cc19175bc96eecd0762ab3398d5c4a8 (patch) | |
tree | 196b380b5f9e3217b5edc8d2bd1d65acb9186bf2 /libavcodec/ppc/idct_altivec.c | |
parent | 788cca4135875642418fea7a4aee18a865a251cd (diff) | |
download | ffmpeg-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/idct_altivec.c')
-rw-r--r-- | libavcodec/ppc/idct_altivec.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/ppc/idct_altivec.c b/libavcodec/ppc/idct_altivec.c index 19cc93a980..6043a172bf 100644 --- a/libavcodec/ppc/idct_altivec.c +++ b/libavcodec/ppc/idct_altivec.c @@ -37,9 +37,11 @@ #include <stdlib.h> /* malloc(), free() */ #include <string.h> +#include "config.h" +#if HAVE_ALTIVEC_H +#include <altivec.h> +#endif #include "libavcodec/dsputil.h" - -#include "gcc_fixes.h" #include "types_altivec.h" #include "dsputil_ppc.h" |