diff options
author | Diego Biurrun <diego@biurrun.de> | 2017-06-12 11:48:57 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-06-13 12:34:35 +0200 |
commit | d76479c5020ca43e67d47ba3767146b192dc4782 (patch) | |
tree | 889e9a6aee8bc330c72f1172ca75710277f02de2 /libavutil/ppc/util_altivec.h | |
parent | 97cfe1d8bd1968143e2ba9aa46ebe9504a835e24 (diff) | |
download | ffmpeg-d76479c5020ca43e67d47ba3767146b192dc4782.tar.gz |
ppc: Drop support for Apple GCC
Apple GCC has not been a thing anymore on PowerPC since many years.
Diffstat (limited to 'libavutil/ppc/util_altivec.h')
-rw-r--r-- | libavutil/ppc/util_altivec.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libavutil/ppc/util_altivec.h b/libavutil/ppc/util_altivec.h index 5a16e8de13..3cb473b734 100644 --- a/libavutil/ppc/util_altivec.h +++ b/libavutil/ppc/util_altivec.h @@ -28,10 +28,6 @@ #include "config.h" -#if HAVE_ALTIVEC_H -#include <altivec.h> -#endif - /*********************************************************************** * Vector types **********************************************************************/ @@ -56,6 +52,7 @@ #define zero_s32v (vec_s32) zerov #if HAVE_ALTIVEC +#include <altivec.h> // used to build registers permutation vectors (vcprm) // the 's' are for words in the _s_econd vector |