2018-01-23 15:32:29 +00:00
|
|
|
#include "scrcpy.h"
|
2017-12-12 14:12:07 +00:00
|
|
|
|
2018-01-23 15:32:29 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2017-12-12 14:12:07 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <libavformat/avformat.h>
|
2018-01-23 15:32:29 +00:00
|
|
|
#include <sys/time.h>
|
2017-12-12 14:12:07 +00:00
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
|
2020-05-08 12:54:33 +00:00
|
|
|
#ifdef _WIN32
|
2020-06-19 20:04:06 +00:00
|
|
|
// not needed here, but winsock2.h must never be included AFTER windows.h
|
|
|
|
# include <winsock2.h>
|
2020-05-08 12:54:33 +00:00
|
|
|
# include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2018-02-08 10:26:31 +00:00
|
|
|
#include "controller.h"
|
2018-01-23 15:32:29 +00:00
|
|
|
#include "decoder.h"
|
2022-02-02 19:51:07 +00:00
|
|
|
#include "demuxer.h"
|
2018-01-23 15:32:29 +00:00
|
|
|
#include "events.h"
|
2022-01-21 18:10:27 +00:00
|
|
|
#include "file_pusher.h"
|
2021-10-03 15:11:20 +00:00
|
|
|
#include "keyboard_inject.h"
|
2021-10-03 15:44:14 +00:00
|
|
|
#include "mouse_inject.h"
|
2018-11-09 11:21:17 +00:00
|
|
|
#include "recorder.h"
|
2018-02-08 10:14:13 +00:00
|
|
|
#include "screen.h"
|
2018-01-23 15:32:29 +00:00
|
|
|
#include "server.h"
|
2022-01-24 21:29:07 +00:00
|
|
|
#ifdef HAVE_USB
|
2022-01-24 21:27:15 +00:00
|
|
|
# include "usb/aoa_hid.h"
|
|
|
|
# include "usb/hid_keyboard.h"
|
|
|
|
# include "usb/hid_mouse.h"
|
2022-01-24 22:11:42 +00:00
|
|
|
# include "usb/usb.h"
|
2022-01-24 21:27:15 +00:00
|
|
|
#endif
|
Wait SET_CLIPBOARD ack before Ctrl+v via HID
To allow seamless copy-paste, on Ctrl+v, a SET_CLIPBOARD request is
performed before injecting Ctrl+v.
But when HID keyboard is enabled, the Ctrl+v injection is not sent on
the same channel as the clipboard request, so they are not serialized,
and may occur in any order. If Ctrl+v happens to be injected before the
new clipboard content is set, then the old content is pasted instead,
which is incorrect.
To minimize the probability of occurrence of the wrong order, a delay of
2 milliseconds was added before injecting Ctrl+v. Then 5ms. But even
with 5ms, the wrong behavior sometimes happens.
To handle it properly, add an acknowledgement mechanism, so that Ctrl+v
is injected over AOA only after the SET_CLIPBOARD request has been
performed and acknowledged by the server.
Refs e4163321f00bb3830c6049bdb6c1515e7cc668a0
Refs 45b0f8123a52f5c73a5860d616f4ceba2766ca6a
PR #2814 <https://github.com/Genymobile/scrcpy/pull/2814>
2021-11-21 16:40:11 +00:00
|
|
|
#include "util/acksync.h"
|
2019-11-24 10:53:00 +00:00
|
|
|
#include "util/log.h"
|
|
|
|
#include "util/net.h"
|
2023-01-27 20:48:54 +00:00
|
|
|
#include "util/rand.h"
|
2021-04-03 22:10:44 +00:00
|
|
|
#ifdef HAVE_V4L2
|
|
|
|
# include "v4l2_sink.h"
|
|
|
|
#endif
|
2018-01-23 15:32:29 +00:00
|
|
|
|
2021-05-28 19:29:14 +00:00
|
|
|
struct scrcpy {
|
2021-11-12 22:24:12 +00:00
|
|
|
struct sc_server server;
|
2022-01-14 21:17:30 +00:00
|
|
|
struct sc_screen screen;
|
2023-02-06 09:08:01 +00:00
|
|
|
struct sc_demuxer video_demuxer;
|
2023-02-06 09:33:47 +00:00
|
|
|
struct sc_demuxer audio_demuxer;
|
2022-02-02 18:27:41 +00:00
|
|
|
struct sc_decoder decoder;
|
2022-02-02 18:37:28 +00:00
|
|
|
struct sc_recorder recorder;
|
2021-04-03 22:10:44 +00:00
|
|
|
#ifdef HAVE_V4L2
|
2021-05-28 19:29:14 +00:00
|
|
|
struct sc_v4l2_sink v4l2_sink;
|
2021-04-03 22:10:44 +00:00
|
|
|
#endif
|
2022-01-14 21:17:30 +00:00
|
|
|
struct sc_controller controller;
|
2022-01-21 18:10:27 +00:00
|
|
|
struct sc_file_pusher file_pusher;
|
2022-01-24 21:29:07 +00:00
|
|
|
#ifdef HAVE_USB
|
2022-01-24 22:11:42 +00:00
|
|
|
struct sc_usb usb;
|
2021-09-10 10:57:35 +00:00
|
|
|
struct sc_aoa aoa;
|
Wait SET_CLIPBOARD ack before Ctrl+v via HID
To allow seamless copy-paste, on Ctrl+v, a SET_CLIPBOARD request is
performed before injecting Ctrl+v.
But when HID keyboard is enabled, the Ctrl+v injection is not sent on
the same channel as the clipboard request, so they are not serialized,
and may occur in any order. If Ctrl+v happens to be injected before the
new clipboard content is set, then the old content is pasted instead,
which is incorrect.
To minimize the probability of occurrence of the wrong order, a delay of
2 milliseconds was added before injecting Ctrl+v. Then 5ms. But even
with 5ms, the wrong behavior sometimes happens.
To handle it properly, add an acknowledgement mechanism, so that Ctrl+v
is injected over AOA only after the SET_CLIPBOARD request has been
performed and acknowledged by the server.
Refs e4163321f00bb3830c6049bdb6c1515e7cc668a0
Refs 45b0f8123a52f5c73a5860d616f4ceba2766ca6a
PR #2814 <https://github.com/Genymobile/scrcpy/pull/2814>
2021-11-21 16:40:11 +00:00
|
|
|
// sequence/ack helper to synchronize clipboard and Ctrl+v via HID
|
|
|
|
struct sc_acksync acksync;
|
2021-09-10 10:57:35 +00:00
|
|
|
#endif
|
|
|
|
union {
|
|
|
|
struct sc_keyboard_inject keyboard_inject;
|
2022-01-24 21:29:07 +00:00
|
|
|
#ifdef HAVE_USB
|
2021-09-10 10:57:35 +00:00
|
|
|
struct sc_hid_keyboard keyboard_hid;
|
|
|
|
#endif
|
|
|
|
};
|
2021-12-26 21:32:51 +00:00
|
|
|
union {
|
|
|
|
struct sc_mouse_inject mouse_inject;
|
2022-01-24 21:29:07 +00:00
|
|
|
#ifdef HAVE_USB
|
2021-12-26 21:32:51 +00:00
|
|
|
struct sc_hid_mouse mouse_hid;
|
|
|
|
#endif
|
|
|
|
};
|
2021-05-28 19:29:14 +00:00
|
|
|
};
|
2018-02-15 11:07:47 +00:00
|
|
|
|
2021-10-30 20:36:56 +00:00
|
|
|
static inline void
|
|
|
|
push_event(uint32_t type, const char *name) {
|
|
|
|
SDL_Event event;
|
|
|
|
event.type = type;
|
|
|
|
int ret = SDL_PushEvent(&event);
|
|
|
|
if (ret < 0) {
|
|
|
|
LOGE("Could not post %s event: %s", name, SDL_GetError());
|
|
|
|
// What could we do?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#define PUSH_EVENT(TYPE) push_event(TYPE, # TYPE)
|
|
|
|
|
2020-05-08 12:54:33 +00:00
|
|
|
#ifdef _WIN32
|
2020-05-10 23:32:54 +00:00
|
|
|
BOOL WINAPI windows_ctrl_handler(DWORD ctrl_type) {
|
2020-05-08 12:54:33 +00:00
|
|
|
if (ctrl_type == CTRL_C_EVENT) {
|
2021-10-30 20:36:56 +00:00
|
|
|
PUSH_EVENT(SDL_QUIT);
|
2020-05-08 12:54:33 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
#endif // _WIN32
|
|
|
|
|
2021-10-31 09:35:03 +00:00
|
|
|
static void
|
|
|
|
sdl_set_hints(const char *render_driver) {
|
2019-03-03 00:40:03 +00:00
|
|
|
|
2020-04-11 12:34:41 +00:00
|
|
|
if (render_driver && !SDL_SetHint(SDL_HINT_RENDER_DRIVER, render_driver)) {
|
|
|
|
LOGW("Could not set render driver");
|
|
|
|
}
|
|
|
|
|
2020-02-25 11:18:49 +00:00
|
|
|
// Linear filtering
|
|
|
|
if (!SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, "1")) {
|
|
|
|
LOGW("Could not enable linear filtering");
|
2019-03-03 00:40:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Handle a click to gain focus as any other click
|
|
|
|
if (!SDL_SetHint(SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH, "1")) {
|
|
|
|
LOGW("Could not enable mouse focus clickthrough");
|
|
|
|
}
|
|
|
|
|
2021-10-31 11:40:51 +00:00
|
|
|
#ifdef SCRCPY_SDL_HAS_HINT_TOUCH_MOUSE_EVENTS
|
|
|
|
// Disable synthetic mouse events from touch events
|
|
|
|
// Touch events with id SDL_TOUCH_MOUSEID are ignored anyway, but it is
|
|
|
|
// better not to generate them in the first place.
|
|
|
|
if (!SDL_SetHint(SDL_HINT_TOUCH_MOUSE_EVENTS, "0")) {
|
|
|
|
LOGW("Could not disable synthetic mouse events");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-05-04 15:48:20 +00:00
|
|
|
#ifdef SCRCPY_SDL_HAS_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR
|
|
|
|
// Disable compositor bypassing on X11
|
|
|
|
if (!SDL_SetHint(SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR, "0")) {
|
|
|
|
LOGW("Could not disable X11 compositor bypass");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-05-31 13:35:53 +00:00
|
|
|
// Do not minimize on focus loss
|
|
|
|
if (!SDL_SetHint(SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS, "0")) {
|
|
|
|
LOGW("Could not disable minimize on focus loss");
|
|
|
|
}
|
2021-10-31 09:35:03 +00:00
|
|
|
}
|
|
|
|
|
2021-10-31 11:03:35 +00:00
|
|
|
static void
|
|
|
|
sdl_configure(bool display, bool disable_screensaver) {
|
2021-10-31 09:35:03 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
// Clean up properly on Ctrl+C on Windows
|
|
|
|
bool ok = SetConsoleCtrlHandler(windows_ctrl_handler, TRUE);
|
|
|
|
if (!ok) {
|
|
|
|
LOGW("Could not set Ctrl+C handler");
|
|
|
|
}
|
|
|
|
#endif // _WIN32
|
|
|
|
|
|
|
|
if (!display) {
|
2021-10-31 11:03:35 +00:00
|
|
|
return;
|
2021-10-31 09:35:03 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 12:10:41 +00:00
|
|
|
if (disable_screensaver) {
|
|
|
|
SDL_DisableScreenSaver();
|
|
|
|
} else {
|
|
|
|
SDL_EnableScreenSaver();
|
|
|
|
}
|
2019-03-03 00:40:03 +00:00
|
|
|
}
|
|
|
|
|
2022-03-05 14:47:58 +00:00
|
|
|
static enum scrcpy_exit_code
|
2022-01-21 18:26:36 +00:00
|
|
|
event_loop(struct scrcpy *s) {
|
2018-01-23 15:32:29 +00:00
|
|
|
SDL_Event event;
|
|
|
|
while (SDL_WaitEvent(&event)) {
|
2022-01-21 20:43:49 +00:00
|
|
|
switch (event.type) {
|
2023-02-10 17:54:46 +00:00
|
|
|
case SC_EVENT_DEVICE_DISCONNECTED:
|
2019-11-09 20:13:20 +00:00
|
|
|
LOGW("Device disconnected");
|
2022-03-05 14:47:58 +00:00
|
|
|
return SCRCPY_EXIT_DISCONNECTED;
|
2023-02-10 17:54:46 +00:00
|
|
|
case SC_EVENT_DEMUXER_ERROR:
|
|
|
|
LOGE("Demuxer error");
|
|
|
|
return SCRCPY_EXIT_FAILURE;
|
2023-02-10 17:10:24 +00:00
|
|
|
case SC_EVENT_RECORDER_ERROR:
|
|
|
|
LOGE("Recorder error");
|
|
|
|
return SCRCPY_EXIT_FAILURE;
|
2022-01-21 20:43:49 +00:00
|
|
|
case SDL_QUIT:
|
|
|
|
LOGD("User requested to quit");
|
2022-03-05 14:47:58 +00:00
|
|
|
return SCRCPY_EXIT_SUCCESS;
|
2022-01-21 20:43:49 +00:00
|
|
|
default:
|
|
|
|
sc_screen_handle_event(&s->screen, &event);
|
2018-04-28 22:17:34 +00:00
|
|
|
break;
|
2018-01-23 15:32:29 +00:00
|
|
|
}
|
|
|
|
}
|
2022-03-05 14:47:58 +00:00
|
|
|
return SCRCPY_EXIT_FAILURE;
|
2018-01-23 15:32:29 +00:00
|
|
|
}
|
|
|
|
|
2022-03-06 21:02:46 +00:00
|
|
|
// Return true on success, false on error
|
2021-10-30 13:33:23 +00:00
|
|
|
static bool
|
2022-03-06 21:02:46 +00:00
|
|
|
await_for_server(bool *connected) {
|
2021-10-30 13:33:23 +00:00
|
|
|
SDL_Event event;
|
|
|
|
while (SDL_WaitEvent(&event)) {
|
|
|
|
switch (event.type) {
|
|
|
|
case SDL_QUIT:
|
|
|
|
LOGD("User requested to quit");
|
2022-03-06 21:02:46 +00:00
|
|
|
*connected = false;
|
|
|
|
return true;
|
2023-02-10 17:46:12 +00:00
|
|
|
case SC_EVENT_SERVER_CONNECTION_FAILED:
|
2021-10-30 13:33:23 +00:00
|
|
|
LOGE("Server connection failed");
|
|
|
|
return false;
|
2023-02-10 17:46:12 +00:00
|
|
|
case SC_EVENT_SERVER_CONNECTED:
|
2021-10-30 13:33:23 +00:00
|
|
|
LOGD("Server connected");
|
2022-03-06 21:02:46 +00:00
|
|
|
*connected = true;
|
2021-10-30 13:33:23 +00:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LOGE("SDL_WaitEvent() error: %s", SDL_GetError());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-02-10 17:10:24 +00:00
|
|
|
static void
|
|
|
|
sc_recorder_on_ended(struct sc_recorder *recorder, bool success,
|
|
|
|
void *userdata) {
|
|
|
|
(void) recorder;
|
|
|
|
(void) userdata;
|
|
|
|
|
|
|
|
if (!success) {
|
|
|
|
PUSH_EVENT(SC_EVENT_RECORDER_ERROR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-16 13:32:31 +00:00
|
|
|
static void
|
2023-02-06 09:08:01 +00:00
|
|
|
sc_video_demuxer_on_ended(struct sc_demuxer *demuxer, bool eos,
|
|
|
|
void *userdata) {
|
2022-02-02 19:51:07 +00:00
|
|
|
(void) demuxer;
|
2021-05-16 13:32:31 +00:00
|
|
|
(void) userdata;
|
|
|
|
|
2023-02-10 17:54:46 +00:00
|
|
|
if (eos) {
|
|
|
|
PUSH_EVENT(SC_EVENT_DEVICE_DISCONNECTED);
|
|
|
|
} else {
|
|
|
|
PUSH_EVENT(SC_EVENT_DEMUXER_ERROR);
|
|
|
|
}
|
2021-05-16 13:32:31 +00:00
|
|
|
}
|
|
|
|
|
2023-02-06 09:33:47 +00:00
|
|
|
static void
|
|
|
|
sc_audio_demuxer_on_ended(struct sc_demuxer *demuxer, bool eos,
|
|
|
|
void *userdata) {
|
|
|
|
(void) demuxer;
|
|
|
|
(void) eos;
|
|
|
|
(void) userdata;
|
|
|
|
|
|
|
|
// Contrary to the video demuxer, keep mirroring if only the audio fails
|
|
|
|
}
|
|
|
|
|
2021-10-30 13:33:23 +00:00
|
|
|
static void
|
2021-11-12 22:24:12 +00:00
|
|
|
sc_server_on_connection_failed(struct sc_server *server, void *userdata) {
|
2021-10-30 13:33:23 +00:00
|
|
|
(void) server;
|
|
|
|
(void) userdata;
|
|
|
|
|
2023-02-10 17:46:12 +00:00
|
|
|
PUSH_EVENT(SC_EVENT_SERVER_CONNECTION_FAILED);
|
2021-10-30 13:33:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-11-12 22:24:12 +00:00
|
|
|
sc_server_on_connected(struct sc_server *server, void *userdata) {
|
2021-10-30 13:33:23 +00:00
|
|
|
(void) server;
|
|
|
|
(void) userdata;
|
|
|
|
|
2023-02-10 17:46:12 +00:00
|
|
|
PUSH_EVENT(SC_EVENT_SERVER_CONNECTED);
|
2021-10-30 13:33:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-11-12 22:24:12 +00:00
|
|
|
sc_server_on_disconnected(struct sc_server *server, void *userdata) {
|
2021-10-30 13:33:23 +00:00
|
|
|
(void) server;
|
|
|
|
(void) userdata;
|
|
|
|
|
|
|
|
LOGD("Server disconnected");
|
|
|
|
// Do nothing, the disconnection will be handled by the "stream stopped"
|
|
|
|
// event
|
|
|
|
}
|
|
|
|
|
2023-02-11 08:52:31 +00:00
|
|
|
// Generate a scrcpy id to differentiate multiple running scrcpy instances
|
2023-01-27 20:48:54 +00:00
|
|
|
static uint32_t
|
2023-02-11 08:52:31 +00:00
|
|
|
scrcpy_generate_scid() {
|
2023-01-27 20:48:54 +00:00
|
|
|
struct sc_rand rand;
|
|
|
|
sc_rand_init(&rand);
|
|
|
|
// Only use 31 bits to avoid issues with signed values on the Java-side
|
|
|
|
return sc_rand_u32(&rand) & 0x7FFFFFFF;
|
|
|
|
}
|
|
|
|
|
2022-03-05 14:47:58 +00:00
|
|
|
enum scrcpy_exit_code
|
2021-09-10 10:57:35 +00:00
|
|
|
scrcpy(struct scrcpy_options *options) {
|
2021-05-28 19:29:14 +00:00
|
|
|
static struct scrcpy scrcpy;
|
|
|
|
struct scrcpy *s = &scrcpy;
|
|
|
|
|
2021-10-31 11:11:34 +00:00
|
|
|
// Minimal SDL initialization
|
|
|
|
if (SDL_Init(SDL_INIT_EVENTS)) {
|
2022-02-05 13:06:03 +00:00
|
|
|
LOGE("Could not initialize SDL: %s", SDL_GetError());
|
2022-03-05 14:47:58 +00:00
|
|
|
return SCRCPY_EXIT_FAILURE;
|
2021-10-31 11:11:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
atexit(SDL_Quit);
|
|
|
|
|
2022-03-05 14:47:58 +00:00
|
|
|
enum scrcpy_exit_code ret = SCRCPY_EXIT_FAILURE;
|
2021-01-03 21:40:33 +00:00
|
|
|
|
2021-01-01 15:34:47 +00:00
|
|
|
bool server_started = false;
|
2022-01-21 18:10:27 +00:00
|
|
|
bool file_pusher_initialized = false;
|
2021-01-01 15:34:47 +00:00
|
|
|
bool recorder_initialized = false;
|
2023-02-23 10:00:34 +00:00
|
|
|
bool recorder_started = false;
|
2021-04-03 22:10:44 +00:00
|
|
|
#ifdef HAVE_V4L2
|
|
|
|
bool v4l2_sink_initialized = false;
|
|
|
|
#endif
|
2023-02-06 09:08:01 +00:00
|
|
|
bool video_demuxer_started = false;
|
2023-02-06 09:33:47 +00:00
|
|
|
bool audio_demuxer_started = false;
|
2022-01-24 21:29:07 +00:00
|
|
|
#ifdef HAVE_USB
|
2021-09-10 10:57:35 +00:00
|
|
|
bool aoa_hid_initialized = false;
|
2022-01-01 19:00:33 +00:00
|
|
|
bool hid_keyboard_initialized = false;
|
2021-12-26 21:32:51 +00:00
|
|
|
bool hid_mouse_initialized = false;
|
2021-09-10 10:57:35 +00:00
|
|
|
#endif
|
2021-01-01 15:34:47 +00:00
|
|
|
bool controller_initialized = false;
|
|
|
|
bool controller_started = false;
|
2021-04-11 11:07:44 +00:00
|
|
|
bool screen_initialized = false;
|
2021-01-01 15:34:47 +00:00
|
|
|
|
Wait SET_CLIPBOARD ack before Ctrl+v via HID
To allow seamless copy-paste, on Ctrl+v, a SET_CLIPBOARD request is
performed before injecting Ctrl+v.
But when HID keyboard is enabled, the Ctrl+v injection is not sent on
the same channel as the clipboard request, so they are not serialized,
and may occur in any order. If Ctrl+v happens to be injected before the
new clipboard content is set, then the old content is pasted instead,
which is incorrect.
To minimize the probability of occurrence of the wrong order, a delay of
2 milliseconds was added before injecting Ctrl+v. Then 5ms. But even
with 5ms, the wrong behavior sometimes happens.
To handle it properly, add an acknowledgement mechanism, so that Ctrl+v
is injected over AOA only after the SET_CLIPBOARD request has been
performed and acknowledged by the server.
Refs e4163321f00bb3830c6049bdb6c1515e7cc668a0
Refs 45b0f8123a52f5c73a5860d616f4ceba2766ca6a
PR #2814 <https://github.com/Genymobile/scrcpy/pull/2814>
2021-11-21 16:40:11 +00:00
|
|
|
struct sc_acksync *acksync = NULL;
|
|
|
|
|
2023-02-11 08:52:31 +00:00
|
|
|
uint32_t scid = scrcpy_generate_scid();
|
2023-01-27 20:48:54 +00:00
|
|
|
|
2021-11-12 22:24:12 +00:00
|
|
|
struct sc_server_params params = {
|
2023-02-11 08:52:31 +00:00
|
|
|
.scid = scid,
|
2022-02-04 19:49:35 +00:00
|
|
|
.req_serial = options->serial,
|
2022-02-06 17:40:18 +00:00
|
|
|
.select_usb = options->select_usb,
|
|
|
|
.select_tcpip = options->select_tcpip,
|
2020-05-24 19:51:40 +00:00
|
|
|
.log_level = options->log_level,
|
2023-02-03 11:35:37 +00:00
|
|
|
.codec = options->codec,
|
2019-06-04 21:59:55 +00:00
|
|
|
.crop = options->crop,
|
2019-12-09 20:16:09 +00:00
|
|
|
.port_range = options->port_range,
|
2021-11-18 00:02:53 +00:00
|
|
|
.tunnel_host = options->tunnel_host,
|
|
|
|
.tunnel_port = options->tunnel_port,
|
2019-06-04 21:59:55 +00:00
|
|
|
.max_size = options->max_size,
|
|
|
|
.bit_rate = options->bit_rate,
|
2019-11-17 21:07:19 +00:00
|
|
|
.max_fps = options->max_fps,
|
2020-02-16 11:30:36 +00:00
|
|
|
.lock_video_orientation = options->lock_video_orientation,
|
2019-06-04 19:31:46 +00:00
|
|
|
.control = options->control,
|
2020-02-24 11:16:38 +00:00
|
|
|
.display_id = options->display_id,
|
2023-02-03 15:27:34 +00:00
|
|
|
.audio = options->audio,
|
2020-05-01 21:49:37 +00:00
|
|
|
.show_touches = options->show_touches,
|
2020-05-01 23:54:48 +00:00
|
|
|
.stay_awake = options->stay_awake,
|
2020-04-26 12:22:08 +00:00
|
|
|
.codec_options = options->codec_options,
|
2020-10-12 09:23:06 +00:00
|
|
|
.encoder_name = options->encoder_name,
|
2020-05-24 21:27:34 +00:00
|
|
|
.force_adb_forward = options->force_adb_forward,
|
2021-02-21 00:42:04 +00:00
|
|
|
.power_off_on_close = options->power_off_on_close,
|
2021-11-22 07:49:10 +00:00
|
|
|
.clipboard_autosync = options->clipboard_autosync,
|
2022-01-15 22:01:14 +00:00
|
|
|
.downsize_on_error = options->downsize_on_error,
|
2021-11-25 21:22:49 +00:00
|
|
|
.tcpip = options->tcpip,
|
|
|
|
.tcpip_dst = options->tcpip_dst,
|
2022-02-13 16:17:01 +00:00
|
|
|
.cleanup = options->cleanup,
|
2022-04-23 13:08:30 +00:00
|
|
|
.power_on = options->power_on,
|
2019-06-04 21:59:55 +00:00
|
|
|
};
|
2021-10-27 21:40:52 +00:00
|
|
|
|
2021-11-12 22:24:12 +00:00
|
|
|
static const struct sc_server_callbacks cbs = {
|
|
|
|
.on_connection_failed = sc_server_on_connection_failed,
|
|
|
|
.on_connected = sc_server_on_connected,
|
|
|
|
.on_disconnected = sc_server_on_disconnected,
|
2021-10-30 13:33:23 +00:00
|
|
|
};
|
2021-11-12 22:24:12 +00:00
|
|
|
if (!sc_server_init(&s->server, ¶ms, &cbs, NULL)) {
|
2022-03-05 14:47:58 +00:00
|
|
|
return SCRCPY_EXIT_FAILURE;
|
2021-10-27 21:40:52 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 22:24:12 +00:00
|
|
|
if (!sc_server_start(&s->server)) {
|
2021-01-01 15:34:47 +00:00
|
|
|
goto end;
|
2018-01-23 15:32:29 +00:00
|
|
|
}
|
|
|
|
|
2021-01-01 15:34:47 +00:00
|
|
|
server_started = true;
|
2018-02-09 11:59:36 +00:00
|
|
|
|
2021-10-31 11:03:35 +00:00
|
|
|
if (options->display) {
|
|
|
|
sdl_set_hints(options->render_driver);
|
|
|
|
}
|
|
|
|
|
2021-10-31 11:11:34 +00:00
|
|
|
// Initialize SDL video in addition if display is enabled
|
|
|
|
if (options->display && SDL_Init(SDL_INIT_VIDEO)) {
|
2022-02-05 13:06:03 +00:00
|
|
|
LOGE("Could not initialize SDL: %s", SDL_GetError());
|
2019-05-30 09:18:54 +00:00
|
|
|
goto end;
|
Improve startup time
On startup, the client has to:
1. listen on a port
2. push and start the server to the device
3. wait for the server to connect (accept)
4. read device name and size
5. initialize SDL
6. initialize the window and renderer
7. show the window
From the execution of the app_process command to start the server on the
device, to the execution of the java main method, it takes ~800ms. As a
consequence, step 3 also takes ~800ms on the client.
Once complete, the client initializes SDL, which takes ~500ms.
These two expensive actions are executed sequentially:
HOST DEVICE
listen on port | |
push/start the server |----------------->|| app_process loads the jar
accept the connection . ^ ||
. | ||
. | WASTE ||
. | OF ||
. | TIME ||
. | ||
. | ||
. v X execution of our java main
connection accepted |<-----------------| connect to the host
init SDL || |
|| ,----------------| send frames
|| |,---------------|
|| ||,--------------|
|| |||,-------------|
|| ||||,------------|
init window/renderer | |||||,-----------|
display frames |<++++++-----------|
(many frames skipped)
The rationale for step 3 occuring before step 5 is that initializing
SDL replaces the SIGTERM handler to receive the event in the event loop,
so pressing Ctrl+C during step 5 would not work (since it blocks the
event loop).
But this is not so important; let's parallelize the SDL initialization
with the app_process execution (we'll just add a timeout to the
connection):
HOST DEVICE
listen on port | |
push/start the server |----------------->||app_process loads the jar
init SDL || ||
|| ||
|| ||
|| ||
|| ||
|| ||
accept the connection . ||
. X execution of our java main
connection accepted |<-----------------| connect to the host
init window/renderer | |
display frames |<-----------------| send frames
|<-----------------|
In addition, show the window only once the first frame is available to
avoid flickering (opening a black window for 100~200ms).
Note: the window and renderer are initialized after the connection is
accepted because they use the device information received from the
device.
2018-02-09 12:50:54 +00:00
|
|
|
}
|
|
|
|
|
2021-10-31 11:03:35 +00:00
|
|
|
sdl_configure(options->display, options->disable_screensaver);
|
|
|
|
|
2021-10-30 13:33:23 +00:00
|
|
|
// Await for server without blocking Ctrl+C handling
|
2022-03-06 21:02:46 +00:00
|
|
|
bool connected;
|
|
|
|
if (!await_for_server(&connected)) {
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!connected) {
|
|
|
|
// This is not an error, user requested to quit
|
2022-03-05 14:47:58 +00:00
|
|
|
ret = SCRCPY_EXIT_SUCCESS;
|
2019-05-30 09:18:54 +00:00
|
|
|
goto end;
|
2018-01-23 15:32:29 +00:00
|
|
|
}
|
|
|
|
|
2021-10-30 13:33:23 +00:00
|
|
|
// It is necessarily initialized here, since the device is connected
|
2021-11-12 22:24:12 +00:00
|
|
|
struct sc_server_info *info = &s->server.info;
|
2021-10-30 13:33:23 +00:00
|
|
|
|
2022-02-04 19:49:35 +00:00
|
|
|
const char *serial = s->server.serial;
|
2021-11-17 20:58:36 +00:00
|
|
|
assert(serial);
|
|
|
|
|
2022-01-21 18:26:36 +00:00
|
|
|
struct sc_file_pusher *fp = NULL;
|
|
|
|
|
2021-05-16 16:26:20 +00:00
|
|
|
if (options->display && options->control) {
|
2022-01-21 18:10:27 +00:00
|
|
|
if (!sc_file_pusher_init(&s->file_pusher, serial,
|
|
|
|
options->push_target)) {
|
2019-06-07 14:55:19 +00:00
|
|
|
goto end;
|
|
|
|
}
|
2022-01-21 18:26:36 +00:00
|
|
|
fp = &s->file_pusher;
|
2022-01-21 18:10:27 +00:00
|
|
|
file_pusher_initialized = true;
|
2021-04-03 22:10:44 +00:00
|
|
|
}
|
2018-04-28 22:17:34 +00:00
|
|
|
|
2023-02-06 09:08:01 +00:00
|
|
|
static const struct sc_demuxer_callbacks video_demuxer_cbs = {
|
|
|
|
.on_ended = sc_video_demuxer_on_ended,
|
2023-02-23 11:36:59 +00:00
|
|
|
};
|
2023-02-18 23:13:54 +00:00
|
|
|
sc_demuxer_init(&s->video_demuxer, "video", s->server.video_socket,
|
2023-02-06 09:08:01 +00:00
|
|
|
&video_demuxer_cbs, NULL);
|
2023-02-23 11:36:59 +00:00
|
|
|
|
2023-02-06 09:33:47 +00:00
|
|
|
if (options->audio) {
|
|
|
|
static const struct sc_demuxer_callbacks audio_demuxer_cbs = {
|
|
|
|
.on_ended = sc_audio_demuxer_on_ended,
|
|
|
|
};
|
|
|
|
sc_demuxer_init(&s->audio_demuxer, "audio", s->server.audio_socket,
|
|
|
|
&audio_demuxer_cbs, NULL);
|
|
|
|
}
|
|
|
|
|
2021-04-03 22:10:44 +00:00
|
|
|
bool needs_decoder = options->display;
|
|
|
|
#ifdef HAVE_V4L2
|
|
|
|
needs_decoder |= !!options->v4l2_device;
|
|
|
|
#endif
|
|
|
|
if (needs_decoder) {
|
2022-02-02 18:27:41 +00:00
|
|
|
sc_decoder_init(&s->decoder);
|
2023-02-06 09:08:01 +00:00
|
|
|
sc_demuxer_add_sink(&s->video_demuxer, &s->decoder.packet_sink);
|
2019-03-02 17:06:29 +00:00
|
|
|
}
|
2019-03-02 15:43:43 +00:00
|
|
|
|
2021-10-31 11:20:45 +00:00
|
|
|
if (options->record_filename) {
|
2023-02-10 17:10:24 +00:00
|
|
|
static const struct sc_recorder_callbacks recorder_cbs = {
|
|
|
|
.on_ended = sc_recorder_on_ended,
|
|
|
|
};
|
|
|
|
if (!sc_recorder_init(&s->recorder, options->record_filename,
|
|
|
|
options->record_format, info->frame_size,
|
|
|
|
&recorder_cbs, NULL)) {
|
2019-05-30 09:18:54 +00:00
|
|
|
goto end;
|
2018-11-09 11:21:17 +00:00
|
|
|
}
|
2019-05-30 09:18:54 +00:00
|
|
|
recorder_initialized = true;
|
2023-02-23 10:00:34 +00:00
|
|
|
|
|
|
|
if (!sc_recorder_start(&s->recorder)) {
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
recorder_started = true;
|
|
|
|
|
2023-02-06 09:08:01 +00:00
|
|
|
sc_demuxer_add_sink(&s->video_demuxer, &s->recorder.packet_sink);
|
2021-04-11 13:01:05 +00:00
|
|
|
}
|
2018-01-23 15:32:29 +00:00
|
|
|
|
2022-01-23 10:43:09 +00:00
|
|
|
struct sc_controller *controller = NULL;
|
2021-12-31 15:32:07 +00:00
|
|
|
struct sc_key_processor *kp = NULL;
|
|
|
|
struct sc_mouse_processor *mp = NULL;
|
|
|
|
|
2021-06-25 19:43:44 +00:00
|
|
|
if (options->control) {
|
2022-01-24 21:29:07 +00:00
|
|
|
#ifdef HAVE_USB
|
2022-01-01 19:00:33 +00:00
|
|
|
bool use_hid_keyboard =
|
|
|
|
options->keyboard_input_mode == SC_KEYBOARD_INPUT_MODE_HID;
|
2021-12-26 21:32:51 +00:00
|
|
|
bool use_hid_mouse =
|
|
|
|
options->mouse_input_mode == SC_MOUSE_INPUT_MODE_HID;
|
|
|
|
if (use_hid_keyboard || use_hid_mouse) {
|
Wait SET_CLIPBOARD ack before Ctrl+v via HID
To allow seamless copy-paste, on Ctrl+v, a SET_CLIPBOARD request is
performed before injecting Ctrl+v.
But when HID keyboard is enabled, the Ctrl+v injection is not sent on
the same channel as the clipboard request, so they are not serialized,
and may occur in any order. If Ctrl+v happens to be injected before the
new clipboard content is set, then the old content is pasted instead,
which is incorrect.
To minimize the probability of occurrence of the wrong order, a delay of
2 milliseconds was added before injecting Ctrl+v. Then 5ms. But even
with 5ms, the wrong behavior sometimes happens.
To handle it properly, add an acknowledgement mechanism, so that Ctrl+v
is injected over AOA only after the SET_CLIPBOARD request has been
performed and acknowledged by the server.
Refs e4163321f00bb3830c6049bdb6c1515e7cc668a0
Refs 45b0f8123a52f5c73a5860d616f4ceba2766ca6a
PR #2814 <https://github.com/Genymobile/scrcpy/pull/2814>
2021-11-21 16:40:11 +00:00
|
|
|
bool ok = sc_acksync_init(&s->acksync);
|
|
|
|
if (!ok) {
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2022-01-25 18:10:23 +00:00
|
|
|
ok = sc_usb_init(&s->usb);
|
2022-01-24 22:11:42 +00:00
|
|
|
if (!ok) {
|
2022-01-25 18:10:23 +00:00
|
|
|
LOGE("Failed to initialize USB");
|
|
|
|
sc_acksync_destroy(&s->acksync);
|
|
|
|
goto aoa_hid_end;
|
|
|
|
}
|
|
|
|
|
2022-01-25 20:11:32 +00:00
|
|
|
assert(serial);
|
2022-02-05 18:12:59 +00:00
|
|
|
struct sc_usb_device usb_device;
|
|
|
|
ok = sc_usb_select_device(&s->usb, serial, &usb_device);
|
|
|
|
if (!ok) {
|
2022-01-26 21:08:55 +00:00
|
|
|
sc_usb_destroy(&s->usb);
|
|
|
|
goto aoa_hid_end;
|
|
|
|
}
|
|
|
|
|
2022-01-26 21:02:24 +00:00
|
|
|
LOGI("USB device: %s (%04" PRIx16 ":%04" PRIx16 ") %s %s",
|
2022-02-05 18:12:59 +00:00
|
|
|
usb_device.serial, usb_device.vid, usb_device.pid,
|
|
|
|
usb_device.manufacturer, usb_device.product);
|
2022-01-26 21:02:24 +00:00
|
|
|
|
2022-02-05 18:12:59 +00:00
|
|
|
ok = sc_usb_connect(&s->usb, usb_device.device, NULL, NULL);
|
|
|
|
sc_usb_device_destroy(&usb_device);
|
2022-01-25 18:10:23 +00:00
|
|
|
if (!ok) {
|
|
|
|
LOGE("Failed to connect to USB device %s", serial);
|
|
|
|
sc_usb_destroy(&s->usb);
|
2022-01-24 22:11:42 +00:00
|
|
|
sc_acksync_destroy(&s->acksync);
|
|
|
|
goto aoa_hid_end;
|
|
|
|
}
|
|
|
|
|
|
|
|
ok = sc_aoa_init(&s->aoa, &s->usb, &s->acksync);
|
2021-10-17 14:58:31 +00:00
|
|
|
if (!ok) {
|
2022-01-01 19:00:33 +00:00
|
|
|
LOGE("Failed to enable HID over AOA");
|
2022-01-25 18:10:23 +00:00
|
|
|
sc_usb_disconnect(&s->usb);
|
2022-01-24 22:11:42 +00:00
|
|
|
sc_usb_destroy(&s->usb);
|
2022-01-01 18:47:47 +00:00
|
|
|
sc_acksync_destroy(&s->acksync);
|
2021-09-10 10:57:35 +00:00
|
|
|
goto aoa_hid_end;
|
|
|
|
}
|
|
|
|
|
2022-01-01 19:00:33 +00:00
|
|
|
if (use_hid_keyboard) {
|
|
|
|
if (sc_hid_keyboard_init(&s->keyboard_hid, &s->aoa)) {
|
|
|
|
hid_keyboard_initialized = true;
|
|
|
|
kp = &s->keyboard_hid.key_processor;
|
|
|
|
} else {
|
|
|
|
LOGE("Could not initialize HID keyboard");
|
|
|
|
}
|
2021-09-10 10:57:35 +00:00
|
|
|
}
|
|
|
|
|
2021-12-26 21:32:51 +00:00
|
|
|
if (use_hid_mouse) {
|
|
|
|
if (sc_hid_mouse_init(&s->mouse_hid, &s->aoa)) {
|
|
|
|
hid_mouse_initialized = true;
|
|
|
|
mp = &s->mouse_hid.mouse_processor;
|
|
|
|
} else {
|
|
|
|
LOGE("Could not initialized HID mouse");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool need_aoa = hid_keyboard_initialized || hid_mouse_initialized;
|
2022-01-01 19:00:33 +00:00
|
|
|
|
|
|
|
if (!need_aoa || !sc_aoa_start(&s->aoa)) {
|
2022-01-01 18:47:47 +00:00
|
|
|
sc_acksync_destroy(&s->acksync);
|
2022-01-25 18:10:23 +00:00
|
|
|
sc_usb_disconnect(&s->usb);
|
2022-01-24 22:11:42 +00:00
|
|
|
sc_usb_destroy(&s->usb);
|
2021-09-10 10:57:35 +00:00
|
|
|
sc_aoa_destroy(&s->aoa);
|
|
|
|
goto aoa_hid_end;
|
|
|
|
}
|
|
|
|
|
2022-01-01 18:47:47 +00:00
|
|
|
acksync = &s->acksync;
|
2021-09-10 10:57:35 +00:00
|
|
|
|
|
|
|
aoa_hid_initialized = true;
|
|
|
|
|
|
|
|
aoa_hid_end:
|
2022-01-01 18:45:50 +00:00
|
|
|
if (!aoa_hid_initialized) {
|
2022-01-01 19:00:33 +00:00
|
|
|
if (hid_keyboard_initialized) {
|
|
|
|
sc_hid_keyboard_destroy(&s->keyboard_hid);
|
|
|
|
hid_keyboard_initialized = false;
|
|
|
|
}
|
2021-12-26 21:32:51 +00:00
|
|
|
if (hid_mouse_initialized) {
|
|
|
|
sc_hid_mouse_destroy(&s->mouse_hid);
|
|
|
|
hid_mouse_initialized = false;
|
|
|
|
}
|
2022-01-01 19:00:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (use_hid_keyboard && !hid_keyboard_initialized) {
|
|
|
|
LOGE("Fallback to default keyboard injection method "
|
2021-09-10 10:57:35 +00:00
|
|
|
"(-K/--hid-keyboard ignored)");
|
|
|
|
options->keyboard_input_mode = SC_KEYBOARD_INPUT_MODE_INJECT;
|
|
|
|
}
|
2021-12-26 21:32:51 +00:00
|
|
|
|
|
|
|
if (use_hid_mouse && !hid_mouse_initialized) {
|
|
|
|
LOGE("Fallback to default mouse injection method "
|
|
|
|
"(-M/--hid-mouse ignored)");
|
|
|
|
options->mouse_input_mode = SC_MOUSE_INPUT_MODE_INJECT;
|
|
|
|
}
|
2022-01-01 16:28:27 +00:00
|
|
|
}
|
2021-09-10 10:57:35 +00:00
|
|
|
#else
|
2022-01-01 16:28:27 +00:00
|
|
|
assert(options->keyboard_input_mode != SC_KEYBOARD_INPUT_MODE_HID);
|
2021-12-26 21:32:51 +00:00
|
|
|
assert(options->mouse_input_mode != SC_MOUSE_INPUT_MODE_HID);
|
2021-09-10 10:57:35 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// keyboard_input_mode may have been reset if HID mode failed
|
|
|
|
if (options->keyboard_input_mode == SC_KEYBOARD_INPUT_MODE_INJECT) {
|
|
|
|
sc_keyboard_inject_init(&s->keyboard_inject, &s->controller,
|
2022-01-14 19:55:44 +00:00
|
|
|
options->key_inject_mode,
|
|
|
|
options->forward_key_repeat);
|
2021-09-10 10:57:35 +00:00
|
|
|
kp = &s->keyboard_inject.key_processor;
|
|
|
|
}
|
2021-10-03 15:44:14 +00:00
|
|
|
|
2021-12-26 21:32:51 +00:00
|
|
|
// mouse_input_mode may have been reset if HID mode failed
|
|
|
|
if (options->mouse_input_mode == SC_MOUSE_INPUT_MODE_INJECT) {
|
|
|
|
sc_mouse_inject_init(&s->mouse_inject, &s->controller);
|
|
|
|
mp = &s->mouse_inject.mouse_processor;
|
|
|
|
}
|
2022-01-01 18:38:27 +00:00
|
|
|
|
2022-01-14 21:17:30 +00:00
|
|
|
if (!sc_controller_init(&s->controller, s->server.control_socket,
|
|
|
|
acksync)) {
|
2022-01-01 18:38:27 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
controller_initialized = true;
|
|
|
|
|
2022-01-14 21:17:30 +00:00
|
|
|
if (!sc_controller_start(&s->controller)) {
|
2022-01-01 18:38:27 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
controller_started = true;
|
2022-01-23 10:43:09 +00:00
|
|
|
controller = &s->controller;
|
2022-01-01 18:38:27 +00:00
|
|
|
|
|
|
|
if (options->turn_screen_off) {
|
2022-01-14 21:17:30 +00:00
|
|
|
struct sc_control_msg msg;
|
2022-01-26 20:31:30 +00:00
|
|
|
msg.type = SC_CONTROL_MSG_TYPE_SET_SCREEN_POWER_MODE;
|
|
|
|
msg.set_screen_power_mode.mode = SC_SCREEN_POWER_MODE_OFF;
|
2022-01-01 18:38:27 +00:00
|
|
|
|
2022-01-14 21:17:30 +00:00
|
|
|
if (!sc_controller_push_msg(&s->controller, &msg)) {
|
2022-01-01 18:38:27 +00:00
|
|
|
LOGW("Could not request 'set screen power mode'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-03 15:11:20 +00:00
|
|
|
}
|
|
|
|
|
2022-01-23 11:08:55 +00:00
|
|
|
// There is a controller if and only if control is enabled
|
|
|
|
assert(options->control == !!controller);
|
|
|
|
|
2021-12-31 15:32:07 +00:00
|
|
|
if (options->display) {
|
|
|
|
const char *window_title =
|
|
|
|
options->window_title ? options->window_title : info->device_name;
|
2021-12-31 15:15:41 +00:00
|
|
|
|
2022-01-14 21:17:30 +00:00
|
|
|
struct sc_screen_params screen_params = {
|
2022-01-23 10:43:09 +00:00
|
|
|
.controller = controller,
|
2022-01-21 18:26:36 +00:00
|
|
|
.fp = fp,
|
2021-12-31 15:32:07 +00:00
|
|
|
.kp = kp,
|
|
|
|
.mp = mp,
|
|
|
|
.forward_all_clicks = options->forward_all_clicks,
|
|
|
|
.legacy_paste = options->legacy_paste,
|
|
|
|
.clipboard_autosync = options->clipboard_autosync,
|
|
|
|
.shortcut_mods = &options->shortcut_mods,
|
|
|
|
.window_title = window_title,
|
|
|
|
.frame_size = info->frame_size,
|
|
|
|
.always_on_top = options->always_on_top,
|
|
|
|
.window_x = options->window_x,
|
|
|
|
.window_y = options->window_y,
|
|
|
|
.window_width = options->window_width,
|
|
|
|
.window_height = options->window_height,
|
|
|
|
.window_borderless = options->window_borderless,
|
|
|
|
.rotation = options->rotation,
|
|
|
|
.mipmaps = options->mipmaps,
|
|
|
|
.fullscreen = options->fullscreen,
|
2022-02-17 19:08:41 +00:00
|
|
|
.start_fps_counter = options->start_fps_counter,
|
2021-12-31 15:32:07 +00:00
|
|
|
.buffering_time = options->display_buffer,
|
|
|
|
};
|
|
|
|
|
2022-01-14 21:17:30 +00:00
|
|
|
if (!sc_screen_init(&s->screen, &screen_params)) {
|
2021-12-31 15:32:07 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
screen_initialized = true;
|
|
|
|
|
2022-02-02 18:27:41 +00:00
|
|
|
sc_decoder_add_sink(&s->decoder, &s->screen.frame_sink);
|
2021-12-31 15:32:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_V4L2
|
|
|
|
if (options->v4l2_device) {
|
|
|
|
if (!sc_v4l2_sink_init(&s->v4l2_sink, options->v4l2_device,
|
|
|
|
info->frame_size, options->v4l2_buffer)) {
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2022-02-02 18:27:41 +00:00
|
|
|
sc_decoder_add_sink(&s->decoder, &s->v4l2_sink.frame_sink);
|
2021-12-31 15:32:07 +00:00
|
|
|
|
|
|
|
v4l2_sink_initialized = true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// now we consumed the header values, the socket receives the video stream
|
2023-02-06 09:08:01 +00:00
|
|
|
// start the video demuxer
|
|
|
|
if (!sc_demuxer_start(&s->video_demuxer)) {
|
2021-12-31 15:32:07 +00:00
|
|
|
goto end;
|
|
|
|
}
|
2023-02-06 09:08:01 +00:00
|
|
|
video_demuxer_started = true;
|
2019-11-07 18:01:35 +00:00
|
|
|
|
2023-02-06 09:33:47 +00:00
|
|
|
if (options->audio) {
|
|
|
|
if (!sc_demuxer_start(&s->audio_demuxer)) {
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
audio_demuxer_started = true;
|
|
|
|
}
|
|
|
|
|
2022-01-21 18:26:36 +00:00
|
|
|
ret = event_loop(s);
|
2018-02-13 09:10:18 +00:00
|
|
|
LOGD("quit...");
|
2018-03-25 13:23:00 +00:00
|
|
|
|
2021-04-13 20:22:54 +00:00
|
|
|
// Close the window immediately on closing, because screen_destroy() may
|
2023-02-06 09:08:01 +00:00
|
|
|
// only be called once the video demuxer thread is joined (it may take time)
|
2022-01-14 21:17:30 +00:00
|
|
|
sc_screen_hide_window(&s->screen);
|
2021-04-13 20:22:54 +00:00
|
|
|
|
2019-05-30 09:18:54 +00:00
|
|
|
end:
|
2022-02-02 19:51:07 +00:00
|
|
|
// The demuxer is not stopped explicitly, because it will stop by itself on
|
2021-04-11 13:01:05 +00:00
|
|
|
// end-of-stream
|
2022-01-24 21:29:07 +00:00
|
|
|
#ifdef HAVE_USB
|
2021-09-10 10:57:35 +00:00
|
|
|
if (aoa_hid_initialized) {
|
2022-01-01 19:00:33 +00:00
|
|
|
if (hid_keyboard_initialized) {
|
|
|
|
sc_hid_keyboard_destroy(&s->keyboard_hid);
|
|
|
|
}
|
2022-01-23 11:31:05 +00:00
|
|
|
if (hid_mouse_initialized) {
|
|
|
|
sc_hid_mouse_destroy(&s->mouse_hid);
|
|
|
|
}
|
2021-09-10 10:57:35 +00:00
|
|
|
sc_aoa_stop(&s->aoa);
|
2022-01-24 19:02:05 +00:00
|
|
|
sc_usb_stop(&s->usb);
|
2021-09-10 10:57:35 +00:00
|
|
|
}
|
Wait SET_CLIPBOARD ack before Ctrl+v via HID
To allow seamless copy-paste, on Ctrl+v, a SET_CLIPBOARD request is
performed before injecting Ctrl+v.
But when HID keyboard is enabled, the Ctrl+v injection is not sent on
the same channel as the clipboard request, so they are not serialized,
and may occur in any order. If Ctrl+v happens to be injected before the
new clipboard content is set, then the old content is pasted instead,
which is incorrect.
To minimize the probability of occurrence of the wrong order, a delay of
2 milliseconds was added before injecting Ctrl+v. Then 5ms. But even
with 5ms, the wrong behavior sometimes happens.
To handle it properly, add an acknowledgement mechanism, so that Ctrl+v
is injected over AOA only after the SET_CLIPBOARD request has been
performed and acknowledged by the server.
Refs e4163321f00bb3830c6049bdb6c1515e7cc668a0
Refs 45b0f8123a52f5c73a5860d616f4ceba2766ca6a
PR #2814 <https://github.com/Genymobile/scrcpy/pull/2814>
2021-11-21 16:40:11 +00:00
|
|
|
if (acksync) {
|
|
|
|
sc_acksync_destroy(acksync);
|
|
|
|
}
|
2021-09-10 10:57:35 +00:00
|
|
|
#endif
|
2019-05-30 09:18:54 +00:00
|
|
|
if (controller_started) {
|
2022-01-14 21:17:30 +00:00
|
|
|
sc_controller_stop(&s->controller);
|
2019-05-30 09:18:54 +00:00
|
|
|
}
|
2022-01-21 18:10:27 +00:00
|
|
|
if (file_pusher_initialized) {
|
|
|
|
sc_file_pusher_stop(&s->file_pusher);
|
2019-05-30 09:18:54 +00:00
|
|
|
}
|
2023-02-14 08:25:50 +00:00
|
|
|
if (recorder_initialized) {
|
|
|
|
sc_recorder_stop(&s->recorder);
|
|
|
|
}
|
2021-05-16 16:26:20 +00:00
|
|
|
if (screen_initialized) {
|
2022-01-14 21:17:30 +00:00
|
|
|
sc_screen_interrupt(&s->screen);
|
2019-06-07 14:55:19 +00:00
|
|
|
}
|
2019-05-30 09:18:54 +00:00
|
|
|
|
2021-01-01 15:34:47 +00:00
|
|
|
if (server_started) {
|
|
|
|
// shutdown the sockets and kill the server
|
2021-11-12 22:24:12 +00:00
|
|
|
sc_server_stop(&s->server);
|
2021-01-01 15:34:47 +00:00
|
|
|
}
|
2019-05-30 09:18:54 +00:00
|
|
|
|
2022-02-02 19:51:07 +00:00
|
|
|
// now that the sockets are shutdown, the demuxer and controller are
|
2019-05-30 09:18:54 +00:00
|
|
|
// interrupted, we can join them
|
2023-02-06 09:08:01 +00:00
|
|
|
if (video_demuxer_started) {
|
|
|
|
sc_demuxer_join(&s->video_demuxer);
|
2019-05-30 09:18:54 +00:00
|
|
|
}
|
2021-04-11 12:32:42 +00:00
|
|
|
|
2023-02-06 09:33:47 +00:00
|
|
|
if (audio_demuxer_started) {
|
|
|
|
sc_demuxer_join(&s->audio_demuxer);
|
|
|
|
}
|
|
|
|
|
2021-04-03 22:10:44 +00:00
|
|
|
#ifdef HAVE_V4L2
|
|
|
|
if (v4l2_sink_initialized) {
|
2021-05-28 19:29:14 +00:00
|
|
|
sc_v4l2_sink_destroy(&s->v4l2_sink);
|
2021-04-03 22:10:44 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-01-24 21:29:07 +00:00
|
|
|
#ifdef HAVE_USB
|
2021-09-10 10:57:35 +00:00
|
|
|
if (aoa_hid_initialized) {
|
|
|
|
sc_aoa_join(&s->aoa);
|
|
|
|
sc_aoa_destroy(&s->aoa);
|
2022-01-24 19:02:05 +00:00
|
|
|
sc_usb_join(&s->usb);
|
2022-01-25 18:10:23 +00:00
|
|
|
sc_usb_disconnect(&s->usb);
|
2022-01-24 22:11:42 +00:00
|
|
|
sc_usb_destroy(&s->usb);
|
2021-09-10 10:57:35 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-02-06 09:08:01 +00:00
|
|
|
// Destroy the screen only after the video demuxer is guaranteed to be
|
|
|
|
// finished, because otherwise the screen could receive new frames after
|
|
|
|
// destruction
|
2021-04-11 12:32:42 +00:00
|
|
|
if (screen_initialized) {
|
2022-01-14 21:17:30 +00:00
|
|
|
sc_screen_join(&s->screen);
|
|
|
|
sc_screen_destroy(&s->screen);
|
2021-04-11 12:32:42 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 09:18:54 +00:00
|
|
|
if (controller_started) {
|
2022-01-14 21:17:30 +00:00
|
|
|
sc_controller_join(&s->controller);
|
2019-03-02 17:06:29 +00:00
|
|
|
}
|
2019-05-30 09:18:54 +00:00
|
|
|
if (controller_initialized) {
|
2022-01-14 21:17:30 +00:00
|
|
|
sc_controller_destroy(&s->controller);
|
2019-03-02 17:06:29 +00:00
|
|
|
}
|
2019-05-30 09:18:54 +00:00
|
|
|
|
2023-02-23 10:00:34 +00:00
|
|
|
if (recorder_started) {
|
2023-02-14 08:25:50 +00:00
|
|
|
sc_recorder_join(&s->recorder);
|
2023-02-23 10:00:34 +00:00
|
|
|
}
|
|
|
|
if (recorder_initialized) {
|
2022-02-02 18:37:28 +00:00
|
|
|
sc_recorder_destroy(&s->recorder);
|
2018-11-09 11:21:17 +00:00
|
|
|
}
|
2019-05-30 09:18:54 +00:00
|
|
|
|
2022-01-21 18:10:27 +00:00
|
|
|
if (file_pusher_initialized) {
|
|
|
|
sc_file_pusher_join(&s->file_pusher);
|
|
|
|
sc_file_pusher_destroy(&s->file_pusher);
|
2019-03-02 17:06:29 +00:00
|
|
|
}
|
2019-05-30 09:18:54 +00:00
|
|
|
|
2023-02-22 17:41:22 +00:00
|
|
|
if (server_started) {
|
|
|
|
sc_server_join(&s->server);
|
|
|
|
}
|
|
|
|
|
2021-11-12 22:24:12 +00:00
|
|
|
sc_server_destroy(&s->server);
|
2017-12-18 10:29:34 +00:00
|
|
|
|
2018-01-23 15:32:29 +00:00
|
|
|
return ret;
|
2017-12-12 14:12:07 +00:00
|
|
|
}
|