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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
media / mojo / clients / mojo_video_encode_accelerator.cc [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/mojo/clients/mojo_video_encode_accelerator.h"
#include <utility>
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/memory/raw_ptr.h"
#include "base/metrics/histogram_macros.h"
#include "base/threading/thread_restrictions.h"
#include "base/trace_event/trace_event.h"
#include "build/build_config.h"
#include "gpu/ipc/client/gpu_channel_host.h"
#include "media/base/media_log.h"
#include "media/base/video_frame.h"
#include "media/gpu/gpu_video_accelerator_util.h"
#include "media/mojo/clients/mojo_media_log_service.h"
#include "media/mojo/mojom/video_encoder_info.mojom.h"
#include "mojo/public/cpp/bindings/associated_receiver.h"
#include "mojo/public/cpp/bindings/pending_associated_receiver.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "mojo/public/cpp/bindings/self_owned_receiver.h"
namespace media {
namespace {
// File-static mojom::VideoEncodeAcceleratorClient implementation to trampoline
// method calls to its |client_|. Note that this class is thread hostile when
// bound.
class VideoEncodeAcceleratorClient
: public mojom::VideoEncodeAcceleratorClient {
public:
VideoEncodeAcceleratorClient(
VideoEncodeAccelerator::Client* client,
mojo::PendingAssociatedReceiver<mojom::VideoEncodeAcceleratorClient>
receiver);
VideoEncodeAcceleratorClient(const VideoEncodeAcceleratorClient&) = delete;
VideoEncodeAcceleratorClient& operator=(const VideoEncodeAcceleratorClient&) =
delete;
~VideoEncodeAcceleratorClient() override = default;
// mojom::VideoEncodeAcceleratorClient impl.
void RequireBitstreamBuffers(uint32_t input_count,
const gfx::Size& input_coded_size,
uint32_t output_buffer_size) override;
void BitstreamBufferReady(
int32_t bitstream_buffer_id,
const media::BitstreamBufferMetadata& metadata) override;
void NotifyErrorStatus(const EncoderStatus& status) override;
void NotifyEncoderInfoChange(const VideoEncoderInfo& info) override;
private:
raw_ptr<VideoEncodeAccelerator::Client, DanglingUntriaged> client_;
mojo::AssociatedReceiver<mojom::VideoEncodeAcceleratorClient> receiver_;
};
VideoEncodeAcceleratorClient::VideoEncodeAcceleratorClient(
VideoEncodeAccelerator::Client* client,
mojo::PendingAssociatedReceiver<mojom::VideoEncodeAcceleratorClient>
receiver)
: client_(client), receiver_(this, std::move(receiver)) {
DCHECK(client_);
}
void VideoEncodeAcceleratorClient::RequireBitstreamBuffers(
uint32_t input_count,
const gfx::Size& input_coded_size,
uint32_t output_buffer_size) {
DVLOG(2) << __func__ << " input_count= " << input_count
<< " input_coded_size= " << input_coded_size.ToString()
<< " output_buffer_size=" << output_buffer_size;
client_->RequireBitstreamBuffers(input_count, input_coded_size,
output_buffer_size);
}
void VideoEncodeAcceleratorClient::BitstreamBufferReady(
int32_t bitstream_buffer_id,
const media::BitstreamBufferMetadata& metadata) {
DVLOG(2) << __func__ << " bitstream_buffer_id=" << bitstream_buffer_id
<< ", payload_size=" << metadata.payload_size_bytes
<< "B, key_frame=" << metadata.key_frame;
client_->BitstreamBufferReady(bitstream_buffer_id, metadata);
}
void VideoEncodeAcceleratorClient::NotifyErrorStatus(
const EncoderStatus& status) {
DVLOG(2) << __func__;
CHECK(!status.is_ok());
client_->NotifyErrorStatus(status);
}
void VideoEncodeAcceleratorClient::NotifyEncoderInfoChange(
const VideoEncoderInfo& info) {
DVLOG(2) << __func__;
client_->NotifyEncoderInfoChange(info);
}
} // anonymous namespace
MojoVideoEncodeAccelerator::MojoVideoEncodeAccelerator(
mojo::PendingRemote<mojom::VideoEncodeAccelerator> vea)
: vea_(std::move(vea)) {
DVLOG(1) << __func__;
DCHECK(vea_);
vea_.set_disconnect_handler(
base::BindOnce(&MojoVideoEncodeAccelerator::MojoDisconnectionHandler,
base::Unretained(this)));
}
VideoEncodeAccelerator::SupportedProfiles
MojoVideoEncodeAccelerator::GetSupportedProfiles() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
NOTREACHED() << "GetSupportedProfiles() should never be called. Use VEA "
"provider or GPU factories";
}
bool MojoVideoEncodeAccelerator::Initialize(
const Config& config,
Client* client,
std::unique_ptr<MediaLog> media_log) {
DVLOG(2) << __func__ << " " << config.AsHumanReadableString();
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!client)
return false;
// Get a mojom::VideoEncodeAcceleratorClient bound to a local implementation
// (VideoEncodeAcceleratorClient) and send the remote.
mojo::PendingAssociatedRemote<mojom::VideoEncodeAcceleratorClient>
vea_client_remote;
vea_client_ = std::make_unique<VideoEncodeAcceleratorClient>(
client, vea_client_remote.InitWithNewEndpointAndPassReceiver());
// Use `mojo::MakeSelfOwnedReceiver` for MediaLog so logs may go through even
// after `MojoVideoEncodeAccelerator` is destructed.
mojo::PendingReceiver<mojom::MediaLog> media_log_pending_receiver;
auto media_log_pending_remote =
media_log_pending_receiver.InitWithNewPipeAndPassRemote();
mojo::MakeSelfOwnedReceiver(
std::make_unique<MojoMediaLogService>(media_log->Clone()),
std::move(media_log_pending_receiver));
bool result = false;
base::ScopedAllowBaseSyncPrimitives allow;
vea_->Initialize(config, std::move(vea_client_remote),
std::move(media_log_pending_remote), &result);
init_format_ = config.input_format;
return result;
}
void MojoVideoEncodeAccelerator::Encode(scoped_refptr<VideoFrame> frame,
bool force_keyframe) {
media::VideoEncoder::EncodeOptions options;
options.key_frame = force_keyframe;
Encode(std::move(frame), options);
}
void MojoVideoEncodeAccelerator::Encode(
scoped_refptr<VideoFrame> frame,
const VideoEncoder::EncodeOptions& options) {
TRACE_EVENT1("media", "MojoVideoEncodeAccelerator::Encode", "timestamp",
frame->timestamp().InMicroseconds());
DVLOG(2) << __func__ << " tstamp=" << frame->timestamp();
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK_EQ(VideoFrame::NumPlanes(frame->format()),
frame->layout().num_planes());
DCHECK(vea_.is_bound());
UMA_HISTOGRAM_ENUMERATION("Media.MojoVideoEncodeAccelerator.InputStorageType",
frame->storage_type(),
static_cast<int>(VideoFrame::STORAGE_MAX) + 1);
if (frame->format() != PIXEL_FORMAT_I420 &&
frame->format() != PIXEL_FORMAT_NV12 && frame->format() != init_format_) {
if (vea_client_) {
vea_client_->NotifyErrorStatus(
{EncoderStatus::Codes::kUnsupportedFrameFormat,
"Unexpected pixel format: " +
VideoPixelFormatToString(frame->format())});
}
return;
}
vea_->Encode(frame, options, base::DoNothingWithBoundArgs(frame));
}
void MojoVideoEncodeAccelerator::UseOutputBitstreamBuffer(
BitstreamBuffer buffer) {
DVLOG(2) << __func__ << " buffer.id()= " << buffer.id()
<< " buffer.size()= " << buffer.size() << "B";
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(buffer.region().IsValid());
vea_->UseOutputBitstreamBuffer(buffer.id(), buffer.TakeRegion());
}
void MojoVideoEncodeAccelerator::RequestEncodingParametersChange(
const Bitrate& bitrate,
uint32_t framerate,
const std::optional<gfx::Size>& size) {
DVLOG(2) << __func__;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(vea_.is_bound());
vea_->RequestEncodingParametersChangeWithBitrate(bitrate, framerate, size);
}
void MojoVideoEncodeAccelerator::RequestEncodingParametersChange(
const VideoBitrateAllocation& bitrate,
uint32_t framerate,
const std::optional<gfx::Size>& size) {
DVLOG(2) << __func__;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(vea_.is_bound());
vea_->RequestEncodingParametersChangeWithLayers(bitrate, framerate, size);
}
bool MojoVideoEncodeAccelerator::IsFlushSupported() {
DVLOG(2) << __func__;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(vea_.is_bound());
bool flush_support = false;
vea_->IsFlushSupported(&flush_support);
return flush_support;
}
void MojoVideoEncodeAccelerator::Flush(FlushCallback flush_callback) {
DVLOG(2) << __func__;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(vea_.is_bound());
vea_->Flush(std::move(flush_callback));
}
void MojoVideoEncodeAccelerator::Destroy() {
DVLOG(1) << __func__;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
vea_client_.reset();
vea_.reset();
// See media::VideoEncodeAccelerator for more info on this peculiar pattern.
delete this;
}
MojoVideoEncodeAccelerator::~MojoVideoEncodeAccelerator() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
}
void MojoVideoEncodeAccelerator::MojoDisconnectionHandler() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (vea_client_) {
vea_client_->NotifyErrorStatus(
{EncoderStatus::Codes::kEncoderMojoConnectionError,
"Mojo is disconnected"});
}
}
} // namespace media