OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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_SCREEN_CAPTURER_DIFFER_WRAPPER_H_ | 11 #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_SCREEN_CAPTURER_DIFFER_WRAPPER_H_ |
12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_SCREEN_CAPTURER_DIFFER_WRAPPER_H_ | 12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_SCREEN_CAPTURER_DIFFER_WRAPPER_H_ |
13 | 13 |
14 #include <memory> | 14 #include <memory> |
15 | 15 |
16 #include "webrtc/modules/desktop_capture/screen_capturer.h" | 16 #include "webrtc/modules/desktop_capture/screen_capturer.h" |
17 #include "webrtc/modules/desktop_capture/shared_desktop_frame.h" | 17 #include "webrtc/modules/desktop_capture/shared_desktop_frame.h" |
18 | 18 |
19 namespace webrtc { | 19 namespace webrtc { |
20 | 20 |
21 // TODO(zijiehe): Remove, use DesktopCapturerDifferWrapper. | |
22 // ScreenCapturer wrapper that calculates updated_region() by comparing frames | 21 // ScreenCapturer wrapper that calculates updated_region() by comparing frames |
23 // content. This class always expects the underlying ScreenCapturer | 22 // content. This class always expects the underlying ScreenCapturer |
24 // implementation returns a superset of updated regions in DestkopFrame. If a | 23 // implementation returns a superset of updated regions in DestkopFrame. If a |
25 // ScreenCapturer implementation does not know the updated region, it should | 24 // ScreenCapturer implementation does not know the updated region, it should |
26 // set updated_region() to full frame. | 25 // set updated_region() to full frame. |
27 // | 26 // |
28 // This class marks entire frame as updated if the frame size or frame stride | 27 // This class marks entire frame as updated if the frame size or frame stride |
29 // has been changed. | 28 // has been changed. |
30 class ScreenCapturerDifferWrapper : public ScreenCapturer, | 29 class ScreenCapturerDifferWrapper : public ScreenCapturer, |
31 public DesktopCapturer::Callback { | 30 public DesktopCapturer::Callback { |
(...skipping 18 matching lines...) Expand all Loading... |
50 std::unique_ptr<DesktopFrame> frame) override; | 49 std::unique_ptr<DesktopFrame> frame) override; |
51 | 50 |
52 const std::unique_ptr<ScreenCapturer> base_capturer_; | 51 const std::unique_ptr<ScreenCapturer> base_capturer_; |
53 DesktopCapturer::Callback* callback_; | 52 DesktopCapturer::Callback* callback_; |
54 std::unique_ptr<SharedDesktopFrame> last_frame_; | 53 std::unique_ptr<SharedDesktopFrame> last_frame_; |
55 }; | 54 }; |
56 | 55 |
57 } // namespace webrtc | 56 } // namespace webrtc |
58 | 57 |
59 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_SCREEN_CAPTURER_DIFFER_WRAPPER_H_ | 58 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_SCREEN_CAPTURER_DIFFER_WRAPPER_H_ |
OLD | NEW |