[feat] update ScreenCapturerSck

This commit is contained in:
dijunkun
2025-05-20 19:11:17 +08:00
parent 9138ca771f
commit 97f6c18296
3 changed files with 21 additions and 11 deletions

View File

@@ -29,9 +29,19 @@ int ScreenCapturerSck::Start() {
int ScreenCapturerSck::Stop() { return 0; }
int ScreenCapturerSck::Pause(int monitor_index) { return 0; }
int ScreenCapturerSck::Pause(int monitor_index) {
if (screen_capturer_sck_impl_) {
return screen_capturer_sck_impl_->Pause(monitor_index);
}
return 0;
}
int ScreenCapturerSck::Resume(int monitor_index) { return 0; }
int ScreenCapturerSck::Resume(int monitor_index) {
if (screen_capturer_sck_impl_) {
return screen_capturer_sck_impl_->Resume(monitor_index);
}
return 0;
}
int ScreenCapturerSck::SwitchTo(int monitor_index) {
if (screen_capturer_sck_impl_) {