Disable downsizing on error if V4L2 is enabled

V4L2 device is created with the initial device size, it does not support
resizing.

PR #2947 <https://github.com/Genymobile/scrcpy/pull/2947>
This commit is contained in:
Romain Vimont 2022-01-17 20:16:03 +01:00
parent 75c5dc6859
commit 3a0ba7d0a4

View file

@ -1545,11 +1545,18 @@ parse_args_with_getopt(struct scrcpy_cli_args *args, int argc, char *argv[],
return false; return false;
} }
if (opts->v4l2_device && opts->lock_video_orientation if (opts->v4l2_device) {
== SC_LOCK_VIDEO_ORIENTATION_UNLOCKED) { if (opts->lock_video_orientation ==
LOGI("Video orientation is locked for v4l2 sink. " SC_LOCK_VIDEO_ORIENTATION_UNLOCKED) {
"See --lock-video-orientation."); LOGI("Video orientation is locked for v4l2 sink. "
opts->lock_video_orientation = SC_LOCK_VIDEO_ORIENTATION_INITIAL; "See --lock-video-orientation.");
opts->lock_video_orientation = SC_LOCK_VIDEO_ORIENTATION_INITIAL;
}
// V4L2 could not handle size change.
// Do not log because downsizing on error is the default behavior,
// not an explicit request from the user.
opts->downsize_on_error = false;
} }
if (opts->v4l2_buffer && !opts->v4l2_device) { if (opts->v4l2_buffer && !opts->v4l2_device) {