diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2015-05-10 04:15:59 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-05-31 12:07:11 +0200 |
commit | 7d07ee5a9bd170a06d26fd967cf8de5d3b1ce331 (patch) | |
tree | 9ae630ffc9ba2317ae88a9894efdf323d7442210 /libavutil/ppc/cpu.h | |
parent | da60b99a8857d5ca236f32c1799a066e0135a866 (diff) | |
download | ffmpeg-7d07ee5a9bd170a06d26fd967cf8de5d3b1ce331.tar.gz |
ppc: cpu: Add support for VSX and POWER8 extensions
Diffstat (limited to 'libavutil/ppc/cpu.h')
-rw-r--r-- | libavutil/ppc/cpu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/ppc/cpu.h b/libavutil/ppc/cpu.h index f8fae58698..a8b823f534 100644 --- a/libavutil/ppc/cpu.h +++ b/libavutil/ppc/cpu.h @@ -24,5 +24,7 @@ #include "libavutil/cpu_internal.h" #define PPC_ALTIVEC(flags) CPUEXT(flags, ALTIVEC) +#define PPC_VSX(flags) CPUEXT(flags, VSX) +#define PPC_POWER8(flags) CPUEXT(flags, POWER8) #endif /* AVUTIL_PPC_CPU_H */ |