Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Side by Side Diff: webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h

Issue 1845113002: DirectX based screen capturer logic (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: REsolve review comments Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_SCREEN_CAPTURER_WIN_DIRECTX_H_
12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_SCREEN_CAPTURER_WIN_DIRECTX_H_
13
14 #include "webrtc/modules/desktop_capture/screen_capturer.h"
15
16 #include <comdef.h>
17 #include <D3DCommon.h>
18 #include <D3D11.h>
19 #include <DXGI.h>
20 #include <DXGI1_2.h>
21 #include <windows.h>
22 #include <wrl/client.h>
23
24 #include <memory>
25 #include <vector>
26
27 #include "webrtc/base/thread_annotations.h"
28 #include "webrtc/modules/desktop_capture/desktop_capture_options.h"
29 #include "webrtc/modules/desktop_capture/desktop_geometry.h"
30 #include "webrtc/modules/desktop_capture/desktop_region.h"
31 #include "webrtc/modules/desktop_capture/screen_capture_frame_queue.h"
32 #include "webrtc/modules/desktop_capture/shared_desktop_frame.h"
33
34 namespace webrtc {
35
36 // ScreenCapturerWinDirectx captures 32bit RGBA using DirectX.
37 class ScreenCapturerWinDirectx : public ScreenCapturer {
38 public:
39 // Initializes DirectX related components. Returns false if any error
40 // happened, any instance of this class won't be able to work in such status.
41 // Thread safe, guarded by initialize_lock.
42 static bool Initialize();
43
44 explicit ScreenCapturerWinDirectx(const DesktopCaptureOptions& options);
45 virtual ~ScreenCapturerWinDirectx();
46
47 void Start(Callback* callback) override;
48 void SetSharedMemoryFactory(
49 std::unique_ptr<SharedMemoryFactory> shared_memory_factory) override;
50 void Capture(const DesktopRegion& region) override;
51 bool GetScreenList(ScreenList* screens) override;
52 bool SelectScreen(ScreenId id) override;
53
54 private:
55 // Texture is a pair of an ID3D11Texture2D and an IDXGISurface. Refer to its
56 // implementation in source code for details.
57 class Texture;
58
59 // An implementation of DesktopFrame to return data from a Texture instance.
60 class DxgiDesktopFrame;
61
62 static bool DoInitialize();
63
64 // Initializes dxgi_output_duplication. Returns false if it fails to execute
65 // windows api.
66 static bool DuplicateOutput();
67
68 // Detects update regions in last frame, if anything wrong, returns false.
69 // ProcessFrame will insert a whole desktop size as updated region instead.
70 static bool DetectUpdatedRegion(const DXGI_OUTDUPL_FRAME_INFO& frame_info,
71 DesktopRegion* updated_region);
72
73 // A helper function to handle _com_error result in DetectUpdatedRegion.
74 // Returns false if the _com_error shows an error.
75 static bool HandleDetectUpdatedRegionError(const _com_error& error,
76 const char* stage);
77
78 // Processes one frame received from AcquireNextFrame function, returns a
79 // nullptr if anything wrong, and Capture function will call
80 // callback_->OnCaptureCompleted(nullptr), otherwise
81 // callback_->OnCaptureCompleted(frame) will be called.
82 DesktopFrame* ProcessFrame(
83 const DXGI_OUTDUPL_FRAME_INFO& frame_info,
84 IDXGIResource* resource);
85
86 // A shortcut to execute callback with current frame in frames.
87 void EmitCurrentFrame();
88
89 ScreenCaptureFrameQueue<rtc::scoped_refptr<Texture>> surfaces_;
90 ScreenCaptureFrameQueue<SharedDesktopFrame> frames_;
91 std::unique_ptr<SharedMemoryFactory> shared_memory_factory_;
92 Callback* callback_ = nullptr;
93
94 bool set_thread_execution_state_failed_ = false;
95
96 RTC_DISALLOW_COPY_AND_ASSIGN(ScreenCapturerWinDirectx);
97 };
98
99 } // namespace webrtc
100
101 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_SCREEN_CAPTURER_WIN_DIRECTX_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698