diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-06-19 22:55:26 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-06-23 16:21:50 +0200 |
commit | 65345a5a30a0e866b6944c0e6184be3feca04335 (patch) | |
tree | 134ad9723a0f65d00af419bb65f0716abc6b7e06 /libavutil/cpu.h | |
parent | 29686d6ea3521f8cc6ca3844c4320a84c7420fa9 (diff) | |
download | ffmpeg-65345a5a30a0e866b6944c0e6184be3feca04335.tar.gz |
x86: Add CPU flag for the i686 cmov instruction
Diffstat (limited to 'libavutil/cpu.h')
-rw-r--r-- | libavutil/cpu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/cpu.h b/libavutil/cpu.h index 15c0088b7f..f477c83e13 100644 --- a/libavutil/cpu.h +++ b/libavutil/cpu.h @@ -40,6 +40,8 @@ #define AV_CPU_FLAG_AVX 0x4000 ///< AVX functions: requires OS support even if YMM registers aren't used #define AV_CPU_FLAG_XOP 0x0400 ///< Bulldozer XOP functions #define AV_CPU_FLAG_FMA4 0x0800 ///< Bulldozer FMA4 functions +#define AV_CPU_FLAG_CMOV 0x1000 ///< i686 cmov + #define AV_CPU_FLAG_ALTIVEC 0x0001 ///< standard #define AV_CPU_FLAG_ARMV5TE (1 << 0) |