Skip to content

Commit 0511e05

Browse files
committed
vmaf/aom_ctc: add v2.0 preset option
1 parent f594196 commit 0511e05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libvmaf/tools/cli_parse.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ static void parse_aom_ctc(CLISettings *settings, const char *const optarg,
289289
{
290290
if (!strcmp(optarg, "proposed"))
291291
usage(app, "`--aom_ctc proposed` is deprecated. Use `--aom_ctc v1.0`");
292-
else if (!strcmp(optarg, "v1.0"))
292+
else if (!strcmp(optarg, "v1.0") || !strcmp(optarg, "v2.0"))
293293
aom_ctc_v1_0(settings, app);
294294
else
295295
usage(app, "bad aom_ctc version \"%s\"", optarg);

0 commit comments

Comments
 (0)