1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
media / base / win / dcomp_texture_wrapper.h [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_BASE_WIN_DCOMP_TEXTURE_WRAPPER_H_
#define MEDIA_BASE_WIN_DCOMP_TEXTURE_WRAPPER_H_
#include "base/functional/callback.h"
#include "base/unguessable_token.h"
#include "ui/gfx/gpu_memory_buffer.h"
namespace gfx {
class Rect;
class Size;
} // namespace gfx
namespace gpu {
struct Mailbox;
} // namespace gpu
namespace media {
class VideoFrame;
// DCOMPTextureWrapper encapsulates a DCOMPTexture's initialization and other
// operations related to composition output path.
class DCOMPTextureWrapper {
public:
virtual ~DCOMPTextureWrapper() = default;
// Initializes the DCOMPTexture and returns success/failure.
using OutputRectChangeCB = base::RepeatingCallback<void(gfx::Rect)>;
virtual bool Initialize(const gfx::Size& output_size,
OutputRectChangeCB output_rect_change_cb) = 0;
// Called whenever the video's output size changes.
virtual void UpdateTextureSize(const gfx::Size& output_size) = 0;
// Sets the DirectComposition surface identified by `token`.
using SetDCOMPSurfaceHandleCB = base::OnceCallback<void(bool)>;
virtual void SetDCOMPSurfaceHandle(
const base::UnguessableToken& token,
SetDCOMPSurfaceHandleCB set_dcomp_surface_handle_cb) = 0;
// Creates VideoFrame which will be returned in `create_video_frame_cb`.
using CreateVideoFrameCB =
base::OnceCallback<void(scoped_refptr<VideoFrame>, const gpu::Mailbox&)>;
virtual void CreateVideoFrame(const gfx::Size& natural_size,
CreateVideoFrameCB create_video_frame_cb) = 0;
using CreateDXVideoFrameCB =
base::OnceCallback<void(scoped_refptr<VideoFrame>, const gpu::Mailbox&)>;
virtual void CreateVideoFrame(const gfx::Size& natural_size,
gfx::GpuMemoryBufferHandle dx_handle,
CreateDXVideoFrameCB create_video_frame_cb) = 0;
};
} // namespace media
#endif // MEDIA_BASE_WIN_DCOMP_TEXTURE_WRAPPER_H_