|
|
|
@ -37,6 +37,11 @@ main(int argc, char *argv[]) {
|
|
|
|
setbuf(stdout, NULL);
|
|
|
|
setbuf(stdout, NULL);
|
|
|
|
setbuf(stderr, NULL);
|
|
|
|
setbuf(stderr, NULL);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
|
|
|
|
SDL_LogSetAllPriority(SDL_LOG_PRIORITY_DEBUG);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
struct scrcpy_cli_args args = {
|
|
|
|
struct scrcpy_cli_args args = {
|
|
|
|
.opts = SCRCPY_OPTIONS_DEFAULT,
|
|
|
|
.opts = SCRCPY_OPTIONS_DEFAULT,
|
|
|
|
.help = false,
|
|
|
|
.help = false,
|
|
|
|
@ -67,10 +72,6 @@ main(int argc, char *argv[]) {
|
|
|
|
return 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
|
|
|
|
SDL_LogSetAllPriority(SDL_LOG_PRIORITY_DEBUG);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int res = scrcpy(&args.opts) ? 0 : 1;
|
|
|
|
int res = scrcpy(&args.opts) ? 0 : 1;
|
|
|
|
|
|
|
|
|
|
|
|
avformat_network_deinit(); // ignore failure
|
|
|
|
avformat_network_deinit(); // ignore failure
|
|
|
|
|