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

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

Issue 2788863006: Merge ScreenCapturerWinDirectx::frames_ and contexts_ (Closed)
Patch Set: Resolve review comments Created 3 years, 8 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
(...skipping 16 matching lines...) Expand all
27 #include "webrtc/modules/desktop_capture/shared_desktop_frame.h" 27 #include "webrtc/modules/desktop_capture/shared_desktop_frame.h"
28 #include "webrtc/modules/desktop_capture/win/d3d_device.h" 28 #include "webrtc/modules/desktop_capture/win/d3d_device.h"
29 #include "webrtc/modules/desktop_capture/win/dxgi_texture.h" 29 #include "webrtc/modules/desktop_capture/win/dxgi_texture.h"
30 30
31 namespace webrtc { 31 namespace webrtc {
32 32
33 // Duplicates the content on one IDXGIOutput, i.e. one monitor attached to one 33 // Duplicates the content on one IDXGIOutput, i.e. one monitor attached to one
34 // video card. None of functions in this class is thread-safe. 34 // video card. None of functions in this class is thread-safe.
35 class DxgiOutputDuplicator { 35 class DxgiOutputDuplicator {
36 public: 36 public:
37 struct Context { 37 struct Context final {
38 // The updated region DxgiOutputDuplicator::DetectUpdatedRegion() output 38 // The updated region DxgiOutputDuplicator::DetectUpdatedRegion() output
39 // during last Duplicate() function call. It's a DesktopRegion translated by 39 // during last Duplicate() function call. It's a DesktopRegion translated by
40 // offset of each DxgiOutputDuplicator instance. 40 // offset of each DxgiOutputDuplicator instance.
41 DesktopRegion updated_region; 41 DesktopRegion updated_region;
42 }; 42 };
43 43
44 // Creates an instance of DxgiOutputDuplicator from a D3dDevice and one of its 44 // Creates an instance of DxgiOutputDuplicator from a D3dDevice and one of its
45 // IDXGIOutput1. Caller must maintain the lifetime of device, to make sure it 45 // IDXGIOutput1. Caller must maintain the lifetime of device, to make sure it
46 // outlives this instance. Only DxgiAdapterDuplicator can create an instance. 46 // outlives this instance. Only DxgiAdapterDuplicator can create an instance.
47 DxgiOutputDuplicator(const D3dDevice& device, 47 DxgiOutputDuplicator(const D3dDevice& device,
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 // |last_frame_|. 127 // |last_frame_|.
128 std::unique_ptr<SharedDesktopFrame> last_frame_; 128 std::unique_ptr<SharedDesktopFrame> last_frame_;
129 DesktopVector last_frame_offset_; 129 DesktopVector last_frame_offset_;
130 130
131 int64_t num_frames_captured_ = 0; 131 int64_t num_frames_captured_ = 0;
132 }; 132 };
133 133
134 } // namespace webrtc 134 } // namespace webrtc
135 135
136 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_DXGI_OUTPUT_DUPLICATOR_H_ 136 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_DXGI_OUTPUT_DUPLICATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698