summaryrefslogtreecommitdiff
path: root/libavutil/cpu.c
diff options
context:
space:
mode:
authorJason Garrett-Glaser <jason@x264.com>2011-09-26 14:44:47 -0700
committerJason Garrett-Glaser <jason@x264.com>2011-09-26 15:30:31 -0700
commit96a59cf37b080080b7e45dd57828b40a7a2bbfe7 (patch)
tree7413dbd8c358ea9ae07dd048eed3f4ea5c3d3d16 /libavutil/cpu.c
parent3d371f417e634e23ad096cb004046d36b1fc7c88 (diff)
x86: XOP/FMA4 CPU detection support
Diffstat (limited to 'libavutil/cpu.c')
-rw-r--r--libavutil/cpu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/cpu.c b/libavutil/cpu.c
index baa7922daa..25895d6d5d 100644
--- a/libavutil/cpu.c
+++ b/libavutil/cpu.c
@@ -60,6 +60,8 @@ static const struct {
{ AV_CPU_FLAG_SSE4, "sse4.1" },
{ AV_CPU_FLAG_SSE42, "sse4.2" },
{ AV_CPU_FLAG_AVX, "avx" },
+ { AV_CPU_FLAG_XOP, "xop" },
+ { AV_CPU_FLAG_FMA4, "fma4" },
{ AV_CPU_FLAG_3DNOW, "3dnow" },
{ AV_CPU_FLAG_3DNOWEXT, "3dnowext" },
#endif