Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMatthias Dressel <code@deadcode.eu>2020-03-07 04:39:46 +0300
committerMatthias Dressel <code@deadcode.eu>2020-03-07 04:48:13 +0300
commitb2f7ba6050223dd382691955d232e3e6abe0b303 (patch)
tree6828542c75c5a9dfa99d821fab52ba11e42f2cbe /tools
parent55439739f239a7027ae383572bf153c562ac6869 (diff)
CLI: Remove avx512 from help text
avx512 was merged with avx512icl. See 7b208fa8
Diffstat (limited to 'tools')
-rw-r--r--tools/dav1d_cli_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dav1d_cli_parse.c b/tools/dav1d_cli_parse.c
index e8e8736..aca027f 100644
--- a/tools/dav1d_cli_parse.c
+++ b/tools/dav1d_cli_parse.c
@@ -86,7 +86,7 @@ static const struct option long_opts[] = {
#define ALLOWED_CPU_MASKS " or 'neon'"
#elif ARCH_X86
#define ALLOWED_CPU_MASKS \
- ", 'sse2', 'ssse3', 'sse41', 'avx2', 'avx512' or 'avx512icl'"
+ ", 'sse2', 'ssse3', 'sse41', 'avx2' or 'avx512icl'"
#else
#define ALLOWED_CPU_MASKS "not yet implemented for this architecture"
#endif