Skip to content

Commit

Permalink
vmaf/aom_ctc: add v2.0 preset option
Browse files Browse the repository at this point in the history
  • Loading branch information
kylophone committed Jul 1, 2021
1 parent f594196 commit 0511e05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libvmaf/tools/cli_parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ static void parse_aom_ctc(CLISettings *settings, const char *const optarg,
{
if (!strcmp(optarg, "proposed"))
usage(app, "`--aom_ctc proposed` is deprecated. Use `--aom_ctc v1.0`");
else if (!strcmp(optarg, "v1.0"))
else if (!strcmp(optarg, "v1.0") || !strcmp(optarg, "v2.0"))
aom_ctc_v1_0(settings, app);
else
usage(app, "bad aom_ctc version \"%s\"", optarg);
Expand Down

0 comments on commit 0511e05

Please sign in to comment.