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/fdct_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/fdct_altivec.c')
-rw-r--r-- | libavcodec/ppc/fdct_altivec.c | 6 |
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)) |