Factorize --list- options handling

This will limit code duplication as more list options will be added.
This commit is contained in:
Romain Vimont
2023-10-24 23:54:56 +02:00
parent c191e9a46e
commit 8c96ab130e
8 changed files with 17 additions and 15 deletions

View File

@@ -1993,10 +1993,10 @@ parse_args_with_getopt(struct scrcpy_cli_args *args, int argc, char *argv[],
return false;
#endif
case OPT_LIST_ENCODERS:
opts->list_encoders = true;
opts->list |= SC_OPTION_LIST_ENCODERS;
break;
case OPT_LIST_DISPLAYS:
opts->list_displays = true;
opts->list |= SC_OPTION_LIST_DISPLAYS;
break;
case OPT_REQUIRE_AUDIO:
opts->require_audio = true;