OLD | NEW |
(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 MODULES_DESKTOP_CAPTURE_WIN_DXGI_TEXTURE_H_ |
| 12 #define MODULES_DESKTOP_CAPTURE_WIN_DXGI_TEXTURE_H_ |
| 13 |
| 14 #include <DXGI1_2.h> |
| 15 |
| 16 #include <memory> |
| 17 |
| 18 #include "webrtc/modules/desktop_capture/desktop_frame.h" |
| 19 #include "webrtc/modules/desktop_capture/desktop_geometry.h" |
| 20 |
| 21 namespace webrtc { |
| 22 |
| 23 class DesktopRegion; |
| 24 |
| 25 // A texture copied or mapped from a DXGI_OUTDUPL_FRAME_INFO and IDXGIResource. |
| 26 class DxgiTexture { |
| 27 public: |
| 28 // Creates a DxgiTexture instance, which represents the DesktopRect area of |
| 29 // entire screen -- usually a monitor on the system. |
| 30 explicit DxgiTexture(const DesktopRect& desktop_rect); |
| 31 |
| 32 virtual ~DxgiTexture() = default; |
| 33 |
| 34 // Copies selected regions of a frame represented by frame_info and resource. |
| 35 // Returns false if anything wrong. |
| 36 virtual bool CopyFrom(const DXGI_OUTDUPL_FRAME_INFO& frame_info, |
| 37 IDXGIResource* resource, |
| 38 const DesktopRegion& region) = 0; |
| 39 |
| 40 const DesktopRect& desktop_rect() const { |
| 41 return desktop_rect_; |
| 42 } |
| 43 |
| 44 uint8_t* bits() const { |
| 45 return static_cast<uint8_t*>(rect_.pBits); |
| 46 } |
| 47 |
| 48 int pitch() const { |
| 49 return static_cast<int>(rect_.Pitch); |
| 50 } |
| 51 |
| 52 // Releases the resource currently holds by this instance. Returns false if |
| 53 // anything wrong, and this instance should be deprecated in this state. bits, |
| 54 // pitch and AsDesktopFrame are only valid after a success CopyFrom() call, |
| 55 // but before Release() call. |
| 56 bool Release(); |
| 57 |
| 58 // Returns a DesktopFrame snapshot of a DxgiTexture instance. This |
| 59 // DesktopFrame is used to copy a DxgiTexture content to another DesktopFrame |
| 60 // only. And it should not outlive its DxgiTexture instance. |
| 61 const DesktopFrame& AsDesktopFrame(); |
| 62 |
| 63 protected: |
| 64 DXGI_MAPPED_RECT rect_ = {0}; |
| 65 |
| 66 private: |
| 67 virtual bool DoRelease() = 0; |
| 68 |
| 69 const DesktopRect desktop_rect_; |
| 70 std::unique_ptr<DesktopFrame> frame_; |
| 71 }; |
| 72 |
| 73 } // namespace webrtc |
| 74 |
| 75 #endif // MODULES_DESKTOP_CAPTURE_WIN_DXGI_TEXTURE_H_ |
OLD | NEW |