diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-12-12 16:00:04 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-12-14 14:08:43 +0100 |
commit | ea7ee4b4e381e0fa731458de0cbf740430eeb013 (patch) | |
tree | 5955919c869ef9eabd1951dbfad1b610d8d07213 /libswscale/swscale_internal.h | |
parent | 39929e55eb13eeb8dfbe1bc99301fecf6b8942dd (diff) | |
download | ffmpeg-ea7ee4b4e381e0fa731458de0cbf740430eeb013.tar.gz |
ppc: Centralize compiler-specific altivec.h #include handling in one place
Also move #includes into canonical order where appropriate.
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r-- | libswscale/swscale_internal.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index e7a6eedd22..adfe1708e1 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -23,16 +23,13 @@ #include "config.h" -#if HAVE_ALTIVEC_H -#include <altivec.h> -#endif - #include "libavutil/avassert.h" #include "libavutil/avutil.h" #include "libavutil/common.h" #include "libavutil/log.h" #include "libavutil/pixfmt.h" #include "libavutil/pixdesc.h" +#include "libavutil/ppc/util_altivec.h" #define STR(s) AV_TOSTRING(s) // AV_STRINGIFY is too long |