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

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

Issue 2682913002: [DesktopCapture] Detect screen resolution changes in DirectX capturer (Closed)
Patch Set: Avoid a CaptureFrame failure in first place Created 3 years, 10 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
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_WIN_DXGI_TEXTURE_H_ 11 #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_DXGI_TEXTURE_H_
12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_DXGI_TEXTURE_H_ 12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_DXGI_TEXTURE_H_
13 13
14 #include <D3D11.h>
14 #include <DXGI1_2.h> 15 #include <DXGI1_2.h>
15 16
16 #include <memory> 17 #include <memory>
17 18
18 #include "webrtc/modules/desktop_capture/desktop_frame.h" 19 #include "webrtc/modules/desktop_capture/desktop_frame.h"
19 #include "webrtc/modules/desktop_capture/desktop_geometry.h" 20 #include "webrtc/modules/desktop_capture/desktop_geometry.h"
21 #include "webrtc/modules/desktop_capture/resolution_change_detector.h"
20 22
21 namespace webrtc { 23 namespace webrtc {
22 24
23 class DesktopRegion; 25 class DesktopRegion;
24 26
25 // A texture copied or mapped from a DXGI_OUTDUPL_FRAME_INFO and IDXGIResource. 27 // A texture copied or mapped from a DXGI_OUTDUPL_FRAME_INFO and IDXGIResource.
26 class DxgiTexture { 28 class DxgiTexture {
27 public: 29 public:
28 // Creates a DxgiTexture instance, which represents the |desktop_size| area of 30 // Creates a DxgiTexture instance, which represents the |desktop_size| area of
29 // entire screen -- usually a monitor on the system. 31 // entire screen -- usually a monitor on the system.
30 explicit DxgiTexture(const DesktopSize& desktop_size); 32 DxgiTexture();
31 33
32 virtual ~DxgiTexture(); 34 virtual ~DxgiTexture();
33 35
34 // Copies selected regions of a frame represented by frame_info and resource. 36 // Copies selected regions of a frame represented by frame_info and resource.
35 // Returns false if anything wrong. 37 // Returns false if anything wrong.
36 virtual bool CopyFrom(const DXGI_OUTDUPL_FRAME_INFO& frame_info, 38 bool CopyFrom(const DXGI_OUTDUPL_FRAME_INFO& frame_info,
37 IDXGIResource* resource) = 0; 39 IDXGIResource* resource);
38 40
39 const DesktopSize& desktop_size() const { return desktop_size_; } 41 const DesktopSize& desktop_size() const { return desktop_size_; }
40 42
41 uint8_t* bits() const { return static_cast<uint8_t*>(rect_.pBits); } 43 uint8_t* bits() const { return static_cast<uint8_t*>(rect_.pBits); }
42 44
43 int pitch() const { return static_cast<int>(rect_.Pitch); } 45 int pitch() const { return static_cast<int>(rect_.Pitch); }
44 46
45 // Releases the resource currently holds by this instance. Returns false if 47 // Releases the resource currently holds by this instance. Returns false if
46 // anything wrong, and this instance should be deprecated in this state. bits, 48 // anything wrong, and this instance should be deprecated in this state. bits,
47 // pitch and AsDesktopFrame are only valid after a success CopyFrom() call, 49 // pitch and AsDesktopFrame are only valid after a success CopyFrom() call,
48 // but before Release() call. 50 // but before Release() call.
49 bool Release(); 51 bool Release();
50 52
51 // Returns a DesktopFrame snapshot of a DxgiTexture instance. This 53 // Returns a DesktopFrame snapshot of a DxgiTexture instance. This
52 // DesktopFrame is used to copy a DxgiTexture content to another DesktopFrame 54 // DesktopFrame is used to copy a DxgiTexture content to another DesktopFrame
53 // only. And it should not outlive its DxgiTexture instance. 55 // only. And it should not outlive its DxgiTexture instance.
54 const DesktopFrame& AsDesktopFrame(); 56 const DesktopFrame& AsDesktopFrame();
55 57
56 protected: 58 protected:
57 DXGI_MAPPED_RECT rect_ = {0}; 59 DXGI_MAPPED_RECT rect_ = {0};
Sergey Ulanov 2017/02/15 01:38:52 BTW, style guide doesn't allow protected data fiel
58 60
59 private: 61 private:
62 virtual bool CopyFromTexture(const DXGI_OUTDUPL_FRAME_INFO& frame_info,
63 ID3D11Texture2D* texture) = 0;
64
60 virtual bool DoRelease() = 0; 65 virtual bool DoRelease() = 0;
Sergey Ulanov 2017/02/10 19:58:25 These two methods are intended to be overwritten b
Hzj_jie 2017/02/11 01:51:22 In C++, private functions are also overrideable, t
Sergey Ulanov 2017/02/15 01:38:51 Right, private methods can still be overridden, bu
Hzj_jie 2017/02/15 03:53:16 I have no opinion on this. Indeed, some modern lan
61 66
62 const DesktopSize desktop_size_; 67 DesktopSize desktop_size_;
63 std::unique_ptr<DesktopFrame> frame_; 68 std::unique_ptr<DesktopFrame> frame_;
69 ResolutionChangeDetector resolution_change_detector_;
64 }; 70 };
65 71
66 } // namespace webrtc 72 } // namespace webrtc
67 73
68 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_DXGI_TEXTURE_H_ 74 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_DXGI_TEXTURE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698