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_WIN_SCREEN_CAPTURER_WIN_MAGNIFIER_H_ | 11 #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_SCREEN_CAPTURER_WIN_MAGNIFIER_H_ |
12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_SCREEN_CAPTURER_WIN_MAGNIFIER_H_ | 12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_SCREEN_CAPTURER_WIN_MAGNIFIER_H_ |
13 | 13 |
14 #include <memory> | 14 #include <memory> |
15 | 15 |
16 #include <windows.h> | 16 #include <windows.h> |
17 #include <magnification.h> | 17 #include <magnification.h> |
18 #include <wincodec.h> | 18 #include <wincodec.h> |
19 | 19 |
20 #include "webrtc/base/constructormagic.h" | 20 #include "webrtc/base/constructormagic.h" |
| 21 #include "webrtc/base/scoped_ptr.h" |
21 #include "webrtc/modules/desktop_capture/screen_capture_frame_queue.h" | 22 #include "webrtc/modules/desktop_capture/screen_capture_frame_queue.h" |
22 #include "webrtc/modules/desktop_capture/screen_capturer.h" | 23 #include "webrtc/modules/desktop_capture/screen_capturer.h" |
23 #include "webrtc/modules/desktop_capture/screen_capturer_helper.h" | 24 #include "webrtc/modules/desktop_capture/screen_capturer_helper.h" |
24 #include "webrtc/modules/desktop_capture/shared_desktop_frame.h" | 25 #include "webrtc/modules/desktop_capture/shared_desktop_frame.h" |
25 #include "webrtc/modules/desktop_capture/win/scoped_thread_desktop.h" | 26 #include "webrtc/modules/desktop_capture/win/scoped_thread_desktop.h" |
26 #include "webrtc/system_wrappers/include/atomic32.h" | 27 #include "webrtc/system_wrappers/include/atomic32.h" |
27 | 28 |
28 namespace webrtc { | 29 namespace webrtc { |
29 | 30 |
30 class DesktopFrame; | 31 class DesktopFrame; |
31 class DesktopRect; | 32 class DesktopRect; |
32 class Differ; | 33 class Differ; |
33 | 34 |
34 // Captures the screen using the Magnification API to support window exclusion. | 35 // Captures the screen using the Magnification API to support window exclusion. |
35 // Each capturer must run on a dedicated thread because it uses thread local | 36 // Each capturer must run on a dedicated thread because it uses thread local |
36 // storage for redirecting the library callback. Also the thread must have a UI | 37 // storage for redirecting the library callback. Also the thread must have a UI |
37 // message loop to handle the window messages for the magnifier window. | 38 // message loop to handle the window messages for the magnifier window. |
38 class ScreenCapturerWinMagnifier : public ScreenCapturer { | 39 class ScreenCapturerWinMagnifier : public ScreenCapturer { |
39 public: | 40 public: |
40 // |fallback_capturer| will be used to capture the screen if a non-primary | 41 // |fallback_capturer| will be used to capture the screen if a non-primary |
41 // screen is being captured, or the OS does not support Magnification API, or | 42 // screen is being captured, or the OS does not support Magnification API, or |
42 // the magnifier capturer fails (e.g. in Windows8 Metro mode). | 43 // the magnifier capturer fails (e.g. in Windows8 Metro mode). |
43 explicit ScreenCapturerWinMagnifier( | 44 explicit ScreenCapturerWinMagnifier( |
44 std::unique_ptr<ScreenCapturer> fallback_capturer); | 45 std::unique_ptr<ScreenCapturer> fallback_capturer); |
45 virtual ~ScreenCapturerWinMagnifier(); | 46 virtual ~ScreenCapturerWinMagnifier(); |
46 | 47 |
47 // Overridden from ScreenCapturer: | 48 // Overridden from ScreenCapturer: |
48 void Start(Callback* callback) override; | 49 void Start(Callback* callback) override; |
49 void SetSharedMemoryFactory( | 50 void SetSharedMemoryFactory( |
50 std::unique_ptr<SharedMemoryFactory> shared_memory_factory) override; | 51 rtc::scoped_ptr<SharedMemoryFactory> shared_memory_factory) override; |
51 void Capture(const DesktopRegion& region) override; | 52 void Capture(const DesktopRegion& region) override; |
52 bool GetScreenList(ScreenList* screens) override; | 53 bool GetScreenList(ScreenList* screens) override; |
53 bool SelectScreen(ScreenId id) override; | 54 bool SelectScreen(ScreenId id) override; |
54 void SetExcludedWindow(WindowId window) override; | 55 void SetExcludedWindow(WindowId window) override; |
55 | 56 |
56 private: | 57 private: |
57 typedef BOOL(WINAPI* MagImageScalingCallback)(HWND hwnd, | 58 typedef BOOL(WINAPI* MagImageScalingCallback)(HWND hwnd, |
58 void* srcdata, | 59 void* srcdata, |
59 MAGIMAGEHEADER srcheader, | 60 MAGIMAGEHEADER srcheader, |
60 void* destdata, | 61 void* destdata, |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 // True if the last OnMagImageScalingCallback was called and handled | 150 // True if the last OnMagImageScalingCallback was called and handled |
150 // successfully. Reset at the beginning of each CaptureImage call. | 151 // successfully. Reset at the beginning of each CaptureImage call. |
151 bool magnifier_capture_succeeded_; | 152 bool magnifier_capture_succeeded_; |
152 | 153 |
153 RTC_DISALLOW_COPY_AND_ASSIGN(ScreenCapturerWinMagnifier); | 154 RTC_DISALLOW_COPY_AND_ASSIGN(ScreenCapturerWinMagnifier); |
154 }; | 155 }; |
155 | 156 |
156 } // namespace webrtc | 157 } // namespace webrtc |
157 | 158 |
158 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_SCREEN_CAPTURER_WIN_MAGNIFIER_H_ | 159 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_SCREEN_CAPTURER_WIN_MAGNIFIER_H_ |
OLD | NEW |