diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-01-14 11:37:34 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-07-20 18:43:28 +0200 |
commit | 7d7355aa92bb36ca0765c49a569a999bcb96f332 (patch) | |
tree | 2e36df9300bf9c019883cd9328166df8dec6c019 /libavutil/cpu.h | |
parent | 4efab89332ea39a77145e8b15562b981d9dbde68 (diff) | |
download | ffmpeg-7d7355aa92bb36ca0765c49a569a999bcb96f332.tar.gz |
x86: Add SSSE3_SLOW CPU flag and related convenience macros
Diffstat (limited to 'libavutil/cpu.h')
-rw-r--r-- | libavutil/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/cpu.h b/libavutil/cpu.h index d640e79783..deff4ccf55 100644 --- a/libavutil/cpu.h +++ b/libavutil/cpu.h @@ -38,6 +38,7 @@ #define AV_CPU_FLAG_SSE3SLOW 0x20000000 ///< SSE3 supported, but usually not faster ///< than regular MMX/SSE (e.g. Core1) #define AV_CPU_FLAG_SSSE3 0x0080 ///< Conroe SSSE3 functions +#define AV_CPU_FLAG_SSSE3SLOW 0x4000000 ///< SSSE3 supported, but usually not faster #define AV_CPU_FLAG_ATOM 0x10000000 ///< Atom processor, some SSSE3 instructions are slower #define AV_CPU_FLAG_SSE4 0x0100 ///< Penryn SSE4.1 functions #define AV_CPU_FLAG_SSE42 0x0200 ///< Nehalem SSE4.2 functions |