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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
media / gpu / v4l2 / v4l2_decode_surface.h [blame]
// Copyright 2018 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_GPU_V4L2_V4L2_DECODE_SURFACE_H_
#define MEDIA_GPU_V4L2_V4L2_DECODE_SURFACE_H_
#include <vector>
#include "base/functional/callback.h"
#include "base/memory/ref_counted.h"
#include "base/sequence_checker.h"
#include "media/base/video_color_space.h"
#include "media/gpu/v4l2/v4l2_device.h"
#include "ui/gfx/geometry/rect.h"
struct v4l2_ext_controls;
struct v4l2_buffer;
namespace media {
// A V4L2-specific decode surface generated by V4L2DecodeSurfaceHandler.
// It is used to store common picture metadata (e.g. visible_rect) and
// platform-specific metadata (e.g. {input,output}_record). All the methods
// should be called on the same sequence.
class V4L2DecodeSurface : public base::RefCounted<V4L2DecodeSurface> {
public:
REQUIRE_ADOPTION_FOR_REFCOUNTED_TYPE();
// V4L2DecodeSurfaceHandler maintains a list of InputRecords, which records
// the status and metadata of input buffers.
// |input_buffer| and |output_buffer| are the buffers to be used as input and
// output in this transaction.
// |frame| is optional, and allows the caller to keep a reference to a
// VideoFrame for as long as this decode surface exists.
// |secure_handle| is a reference to the secure input memory when doing
// secure decoding on ARM, zero otherwise.
V4L2DecodeSurface(V4L2WritableBufferRef input_buffer,
V4L2WritableBufferRef output_buffer,
scoped_refptr<FrameResource> frame,
uint64_t secure_handle);
V4L2DecodeSurface(const V4L2DecodeSurface&) = delete;
V4L2DecodeSurface& operator=(const V4L2DecodeSurface&) = delete;
// Mark the surface as decoded. This will also release all surfaces used for
// reference, as they are not needed anymore and execute the done callback,
// if not null.
void SetDecoded();
void SetVisibleRect(const gfx::Rect& visible_rect);
void SetColorSpace(const VideoColorSpace& color_space);
// Take references to each reference surface and keep them until the
// target surface is decoded.
void SetReferenceSurfaces(
std::vector<scoped_refptr<V4L2DecodeSurface>> ref_surfaces);
// Set the callback that will be called when the surface is released. This
// method must be called one time at most.
void SetReleaseCallback(base::OnceClosure release_cb);
// Update the passed v4l2_ext_controls structure to add the request
// information.
virtual void PrepareSetCtrls(struct v4l2_ext_controls* ctrls) const = 0;
// Return the ID to use in order to reference this frame.
virtual uint64_t GetReferenceID() const = 0;
// Set controls, queue buffers and submit the request corresponding to this
// surface.
virtual bool Submit() = 0;
bool decoded() const { return decoded_; }
V4L2WritableBufferRef& input_buffer() {
return input_buffer_;
}
int output_record() const { return output_record_; }
V4L2WritableBufferRef& output_buffer() {
return output_buffer_;
}
scoped_refptr<FrameResource> frame() const { return frame_; }
gfx::Rect visible_rect() const { return visible_rect_; }
const VideoColorSpace& color_space() const { return color_space_; }
uint64_t secure_handle() const { return secure_handle_; }
std::string ToString() const;
protected:
friend class base::RefCounted<V4L2DecodeSurface>;
virtual ~V4L2DecodeSurface();
SEQUENCE_CHECKER(sequence_checker_);
private:
V4L2WritableBufferRef input_buffer_;
V4L2WritableBufferRef output_buffer_;
scoped_refptr<FrameResource> frame_;
// The index of the corresponding output record.
const int output_record_;
// The visible size of the buffer.
gfx::Rect visible_rect_;
// The color space of the buffer.
VideoColorSpace color_space_;
// Indicate whether the surface is decoded or not.
bool decoded_;
// Callback function which is called when the instance is destroyed.
base::OnceClosure release_cb_;
// The decoded surfaces of the reference frames, which is kept until the
// surface has been decoded.
std::vector<scoped_refptr<V4L2DecodeSurface>> reference_surfaces_;
// Secure handle that identifies the buffer w/ the decrypted contents in the
// secure world. Used to resolve to the corresponding FD that references the
// secure world memory (V4L2 will resolve that fd back to this same value).
uint64_t secure_handle_ = 0;
};
// An implementation of V4L2DecodeSurface that uses requests to associate
// controls/buffers to frames
class V4L2RequestDecodeSurface : public V4L2DecodeSurface {
public:
V4L2RequestDecodeSurface(V4L2WritableBufferRef input_buffer,
V4L2WritableBufferRef output_buffer,
scoped_refptr<FrameResource> frame,
uint64_t secure_handle,
V4L2RequestRef request_ref)
: V4L2DecodeSurface(std::move(input_buffer),
std::move(output_buffer),
std::move(frame),
secure_handle),
request_ref_(std::move(request_ref)) {}
V4L2RequestDecodeSurface(const V4L2RequestDecodeSurface&) = delete;
V4L2RequestDecodeSurface& operator=(const V4L2RequestDecodeSurface&) = delete;
void PrepareSetCtrls(struct v4l2_ext_controls* ctrls) const override;
uint64_t GetReferenceID() const override;
bool Submit() override;
private:
~V4L2RequestDecodeSurface() override = default;
// Request reference used for the surface.
V4L2RequestRef request_ref_;
};
} // namespace media
#endif // MEDIA_GPU_V4L2_V4L2_DECODE_SURFACE_H_