diff options
author | James Almer <jamrial@gmail.com> | 2017-11-01 20:15:43 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-11-01 20:16:33 -0300 |
commit | 2eb20caccf0f030ddf8766850a177adf4c1d67fd (patch) | |
tree | a6a41d74a416558ec6bb1197139f9b91473ca08e /libavutil | |
parent | e621b1ca646a2f268797adc3194b694a852548d2 (diff) | |
parent | d76479c5020ca43e67d47ba3767146b192dc4782 (diff) | |
download | ffmpeg-2eb20caccf0f030ddf8766850a177adf4c1d67fd.tar.gz |
Merge commit 'd76479c5020ca43e67d47ba3767146b192dc4782'
* commit 'd76479c5020ca43e67d47ba3767146b192dc4782':
ppc: Drop support for Apple GCC
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil')
-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 6ab7e5083f..2548011be5 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 |