[FFmpeg-cvslog] cpu: add cmov ro the table, which appears to have been forgotten
Michael Niedermayer
git at videolan.org
Sat Nov 17 02:15:47 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Nov 17 02:04:30 2012 +0100| [65e57975b9e738f414b0653e093562b7813524ab] | committer: Michael Niedermayer
cpu: add cmov ro the table, which appears to have been forgotten
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=65e57975b9e738f414b0653e093562b7813524ab
---
libavutil/cpu.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavutil/cpu.c b/libavutil/cpu.c
index f651cab..cd81a30 100644
--- a/libavutil/cpu.c
+++ b/libavutil/cpu.c
@@ -135,6 +135,7 @@ int av_parse_cpu_caps(unsigned *flags, const char *s)
{ "fma4" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_FMA4 }, .unit = "flags" },
{ "3dnow" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_3DNOW }, .unit = "flags" },
{ "3dnowext", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_3DNOWEXT }, .unit = "flags" },
+ { "cmov", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_CMOV }, .unit = "flags" },
#elif ARCH_ARM
{ "armv5te", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV5TE }, .unit = "flags" },
{ "armv6", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV6 }, .unit = "flags" },
More information about the ffmpeg-cvslog
mailing list