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 #include "webrtc/modules/desktop_capture/win/dxgi_texture.h" | 11 #include "webrtc/modules/desktop_capture/win/dxgi_texture.h" |
12 | 12 |
| 13 #include <comdef.h> |
| 14 #include <wrl/client.h> |
| 15 #include <D3D11.h> |
| 16 |
| 17 #include "webrtc/base/checks.h" |
13 #include "webrtc/modules/desktop_capture/desktop_region.h" | 18 #include "webrtc/modules/desktop_capture/desktop_region.h" |
| 19 #include "webrtc/system_wrappers/include/logging.h" |
| 20 |
| 21 using Microsoft::WRL::ComPtr; |
14 | 22 |
15 namespace webrtc { | 23 namespace webrtc { |
16 | 24 |
17 namespace { | 25 namespace { |
18 | 26 |
19 class DxgiDesktopFrame : public DesktopFrame { | 27 class DxgiDesktopFrame : public DesktopFrame { |
20 public: | 28 public: |
21 explicit DxgiDesktopFrame(const DxgiTexture& texture) | 29 explicit DxgiDesktopFrame(const DxgiTexture& texture) |
22 : DesktopFrame(texture.desktop_size(), | 30 : DesktopFrame(texture.desktop_size(), |
23 texture.pitch(), | 31 texture.pitch(), |
24 texture.bits(), | 32 texture.bits(), |
25 nullptr) {} | 33 nullptr) {} |
26 | 34 |
27 ~DxgiDesktopFrame() override = default; | 35 ~DxgiDesktopFrame() override = default; |
28 }; | 36 }; |
29 | 37 |
30 } // namespace | 38 } // namespace |
31 | 39 |
32 DxgiTexture::DxgiTexture(const DesktopSize& desktop_size) | 40 DxgiTexture::DxgiTexture() = default; |
33 : desktop_size_(desktop_size) {} | 41 DxgiTexture::~DxgiTexture() = default; |
34 | 42 |
35 DxgiTexture::~DxgiTexture() {} | 43 bool DxgiTexture::CopyFrom(const DXGI_OUTDUPL_FRAME_INFO& frame_info, |
| 44 IDXGIResource* resource) { |
| 45 RTC_DCHECK(resource && frame_info.AccumulatedFrames > 0); |
| 46 ComPtr<ID3D11Texture2D> texture; |
| 47 _com_error error = resource->QueryInterface( |
| 48 __uuidof(ID3D11Texture2D), |
| 49 reinterpret_cast<void**>(texture.GetAddressOf())); |
| 50 if (error.Error() != S_OK || !texture) { |
| 51 LOG(LS_ERROR) << "Failed to convert IDXGIResource to ID3D11Texture2D, " |
| 52 "error " |
| 53 << error.ErrorMessage() << ", code " << error.Error(); |
| 54 return false; |
| 55 } |
| 56 |
| 57 D3D11_TEXTURE2D_DESC desc = {0}; |
| 58 texture->GetDesc(&desc); |
| 59 desktop_size_.set(desc.Width, desc.Height); |
| 60 if (resolution_change_detector_.IsChanged(desktop_size_)) { |
| 61 LOG(LS_ERROR) << "Texture size is not consistent with current DxgiTexture."; |
| 62 return false; |
| 63 } |
| 64 |
| 65 return CopyFromTexture(frame_info, texture.Get()); |
| 66 } |
36 | 67 |
37 const DesktopFrame& DxgiTexture::AsDesktopFrame() { | 68 const DesktopFrame& DxgiTexture::AsDesktopFrame() { |
38 if (!frame_) { | 69 if (!frame_) { |
39 frame_.reset(new DxgiDesktopFrame(*this)); | 70 frame_.reset(new DxgiDesktopFrame(*this)); |
40 } | 71 } |
41 return *frame_; | 72 return *frame_; |
42 } | 73 } |
43 | 74 |
44 bool DxgiTexture::Release() { | 75 bool DxgiTexture::Release() { |
45 frame_.reset(); | 76 frame_.reset(); |
46 return DoRelease(); | 77 return DoRelease(); |
47 } | 78 } |
48 | 79 |
| 80 DXGI_MAPPED_RECT* DxgiTexture::rect() { |
| 81 return &rect_; |
| 82 } |
| 83 |
49 } // namespace webrtc | 84 } // namespace webrtc |
OLD | NEW |