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.c | |
parent | 3d371f417e634e23ad096cb004046d36b1fc7c88 (diff) | |
download | ffmpeg-96a59cf37b080080b7e45dd57828b40a7a2bbfe7.tar.gz |
x86: XOP/FMA4 CPU detection support
Diffstat (limited to 'libavutil/cpu.c')
-rw-r--r-- | libavutil/cpu.c | 2 |
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 |