diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2013-03-30 14:41:45 -0400 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2013-03-31 18:22:08 -0400 |
commit | e54a15b681dcf3348546cdef28c3c4bc06d8f8b0 (patch) | |
tree | 180c091f6b0e523dff2580a67e555d664bfb3c82 | |
parent | 4c79367e9b2efc506b34167d0d60e35aa13f6523 (diff) | |
download | ffmpeg-e54a15b681dcf3348546cdef28c3c4bc06d8f8b0.tar.gz |
doc: Document which cpuflags exist
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-rw-r--r-- | doc/avtools-common-opts.texi | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/doc/avtools-common-opts.texi b/doc/avtools-common-opts.texi index 340f00c400..c18f667bfa 100644 --- a/doc/avtools-common-opts.texi +++ b/doc/avtools-common-opts.texi @@ -180,6 +180,53 @@ ffmpeg -cpuflags -sse+mmx ... ffmpeg -cpuflags mmx ... ffmpeg -cpuflags 0 ... @end example +Possible flags for this option are: +@table @samp +@item x86 +@table @samp +@item mmx +@item mmxext +@item sse +@item sse2 +@item sse2slow +@item sse3 +@item sse3slow +@item ssse3 +@item atom +@item sse4.1 +@item sse4.2 +@item avx +@item xop +@item fma4 +@item 3dnow +@item 3dnowext +@item cmov +@end table +@item ARM +@table @samp +@item armv5te +@item armv6 +@item armv6t2 +@item vfp +@item vfpv3 +@item neon +@end table +@item PowerPC +@table @samp +@item altivec +@end table +@item Specific Processors +@table @samp +@item pentium2 +@item pentium3 +@item pentium4 +@item k6 +@item k62 +@item athlon +@item athlonxp +@item k8 +@end table +@end table @end table |