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

Side by Side Diff: webrtc/modules/desktop_capture/win/dxgi_frame.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
(Empty)
1 /*
2 * Copyright (c) 2017 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_DXGI_FRAME_H_
12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_DXGI_FRAME_H_
13
14 #include <memory>
15 #include <vector>
16
17 #include "webrtc/modules/desktop_capture/desktop_capturer.h"
18 #include "webrtc/modules/desktop_capture/desktop_capture_types.h"
19 #include "webrtc/modules/desktop_capture/desktop_geometry.h"
20 #include "webrtc/modules/desktop_capture/resolution_change_detector.h"
21 #include "webrtc/modules/desktop_capture/shared_desktop_frame.h"
22 #include "webrtc/modules/desktop_capture/shared_memory.h"
23 #include "webrtc/modules/desktop_capture/win/dxgi_context.h"
24
25 namespace webrtc {
26
27 class DxgiDuplicatorController;
28
29 // A pair of a SharedDesktopFrame and a DxgiDuplicatorController::Context for
30 // the client of DxgiDuplicatorController.
31 class DxgiFrame final {
32 public:
33 // DxgiFrame does not take ownership of |factory|, consumers should ensure it
34 // outlives this instance. nullptr is acceptable.
35 explicit DxgiFrame(SharedMemoryFactory* factory);
36 ~DxgiFrame();
37
38 // Should not be called if Prepare() is not executed or returns false.
39 SharedDesktopFrame* frame() const;
40
41 private:
42 // Allows DxgiDuplicatorController to access Prepare() and context() function
43 // as well as Context class.
44 friend class DxgiDuplicatorController;
45
46 // Prepares current instance with desktop size and source id.
47 bool Prepare(DesktopSize size, DesktopCapturer::SourceId source_id);
48
49 // Should not be called if Prepare() is not executed or returns false.
50 Context* context();
51
52 SharedMemoryFactory* const factory_;
53 ResolutionChangeDetector resolution_change_detector_;
54 DesktopCapturer::SourceId source_id_ = kFullDesktopScreenId;
55 std::unique_ptr<SharedDesktopFrame> frame_;
56 Context context_;
57 };
58
59 } // namespace webrtc
60
61 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_WIN_DXGI_FRAME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698