diff options
author | Jason Garrett-Glaser <jason@x264.com> | 2011-09-26 14:44:47 -0700 |
---|---|---|
committer | Jason Garrett-Glaser <jason@x264.com> | 2011-09-26 15:30:31 -0700 |
commit | 96a59cf37b080080b7e45dd57828b40a7a2bbfe7 (patch) | |
tree | 7413dbd8c358ea9ae07dd048eed3f4ea5c3d3d16 /libavutil/cpu.h | |
parent | 3d371f417e634e23ad096cb004046d36b1fc7c88 (diff) | |
download | ffmpeg-96a59cf37b080080b7e45dd57828b40a7a2bbfe7.tar.gz |
x86: XOP/FMA4 CPU detection support
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 777cdc01d1..df7bf4421a 100644 --- a/libavutil/cpu.h +++ b/libavutil/cpu.h @@ -38,6 +38,8 @@ #define AV_CPU_FLAG_SSE4 0x0100 ///< Penryn SSE4.1 functions #define AV_CPU_FLAG_SSE42 0x0200 ///< Nehalem SSE4.2 functions #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_IWMMXT 0x0100 ///< XScale IWMMXT #define AV_CPU_FLAG_ALTIVEC 0x0001 ///< standard |