| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_ | 11 #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_ |
| 12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_ | 12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_ |
| 13 | 13 |
| 14 #include <memory> | 14 #include <memory> |
| 15 | 15 |
| 16 #include "webrtc/modules/desktop_capture/desktop_capture_options.h" | 16 #include "webrtc/modules/desktop_capture/desktop_capture_options.h" |
| 17 #include "webrtc/modules/desktop_capture/screen_capturer.h" | 17 #include "webrtc/modules/desktop_capture/screen_capturer.h" |
| 18 #include "webrtc/modules/desktop_capture/window_capturer.h" | 18 #include "webrtc/modules/desktop_capture/window_capturer.h" |
| 19 | 19 |
| 20 namespace webrtc { | 20 namespace webrtc { |
| 21 | 21 |
| 22 // WindowCapturer implementation that uses a screen capturer to capture the | 22 // WindowCapturer implementation that uses a screen capturer to capture the |
| 23 // whole screen and crops the video frame to the window area when the captured | 23 // whole screen and crops the video frame to the window area when the captured |
| 24 // window is on top. | 24 // window is on top. |
| 25 class CroppingWindowCapturer : public WindowCapturer, | 25 class CroppingWindowCapturer : public WindowCapturer, |
| 26 public DesktopCapturer::Callback { | 26 public DesktopCapturer::Callback { |
| 27 public: | 27 public: |
| 28 static WindowCapturer* Create(const DesktopCaptureOptions& options); | 28 static WindowCapturer* Create(const DesktopCaptureOptions& options); |
| 29 virtual ~CroppingWindowCapturer(); | 29 ~CroppingWindowCapturer() override; |
| 30 | 30 |
| 31 // DesktopCapturer implementation. | 31 // DesktopCapturer implementation. |
| 32 void Start(DesktopCapturer::Callback* callback) override; | 32 void Start(DesktopCapturer::Callback* callback) override; |
| 33 void SetSharedMemoryFactory( | 33 void SetSharedMemoryFactory( |
| 34 std::unique_ptr<SharedMemoryFactory> shared_memory_factory) override; | 34 std::unique_ptr<SharedMemoryFactory> shared_memory_factory) override; |
| 35 void CaptureFrame() override; | 35 void CaptureFrame() override; |
| 36 void SetExcludedWindow(WindowId window) override; | 36 void SetExcludedWindow(WindowId window) override; |
| 37 | 37 |
| 38 // WindowCapturer implementation. | 38 // WindowCapturer implementation. |
| 39 bool GetWindowList(WindowList* windows) override; | 39 bool GetWindowList(WindowList* windows) override; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 68 std::unique_ptr<WindowCapturer> window_capturer_; | 68 std::unique_ptr<WindowCapturer> window_capturer_; |
| 69 std::unique_ptr<ScreenCapturer> screen_capturer_; | 69 std::unique_ptr<ScreenCapturer> screen_capturer_; |
| 70 WindowId selected_window_; | 70 WindowId selected_window_; |
| 71 WindowId excluded_window_; | 71 WindowId excluded_window_; |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } // namespace webrtc | 74 } // namespace webrtc |
| 75 | 75 |
| 76 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_ | 76 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_ |
| 77 | 77 |
| OLD | NEW |