diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-03-11 22:04:04 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-11 22:04:04 +0100 |
commit | a19a10a53e4a2d83320da8d15e6266d98330b80d (patch) | |
tree | e99040d578f116aa782e2e3ae57f3eb9140aae6e /libavutil/cpu.c | |
parent | efdca97cf10450599c1cace171abe897fadfa25d (diff) | |
parent | 8637f4edeee1a6bd18bc90740fafadd3e1b412aa (diff) | |
download | ffmpeg-a19a10a53e4a2d83320da8d15e6266d98330b80d.tar.gz |
Merge commit '8637f4edeee1a6bd18bc90740fafadd3e1b412aa' into release/0.10
* commit '8637f4edeee1a6bd18bc90740fafadd3e1b412aa':
x86: Add CPU flag for the i686 cmov instruction
Conflicts:
doc/APIchanges
libavutil/avutil.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/cpu.c')
-rw-r--r-- | libavutil/cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/cpu.c b/libavutil/cpu.c index fa64a83cfa..3d65bca3d1 100644 --- a/libavutil/cpu.c +++ b/libavutil/cpu.c @@ -69,6 +69,7 @@ static const struct { { AV_CPU_FLAG_FMA4, "fma4" }, { AV_CPU_FLAG_3DNOW, "3dnow" }, { AV_CPU_FLAG_3DNOWEXT, "3dnowext" }, + { AV_CPU_FLAG_CMOV, "cmov" }, #endif { 0 } }; |