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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
media / gpu / chromeos / libyuv_image_processor_backend.cc [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.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "media/gpu/chromeos/libyuv_image_processor_backend.h"
#include <sys/mman.h>
#include "base/containers/contains.h"
#include "base/memory/ptr_util.h"
#include "base/metrics/histogram_macros.h"
#include "base/numerics/checked_math.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/thread_pool.h"
#include "base/trace_event/trace_event.h"
#include "media/gpu/chromeos/fourcc.h"
#include "media/gpu/chromeos/video_frame_resource.h"
#include "media/gpu/macros.h"
#include "media/gpu/video_frame_mapper.h"
#include "media/gpu/video_frame_mapper_factory.h"
#include "third_party/libyuv/include/libyuv/convert.h"
#include "third_party/libyuv/include/libyuv/convert_from.h"
#include "third_party/libyuv/include/libyuv/convert_from_argb.h"
#include "third_party/libyuv/include/libyuv/scale.h"
namespace media {
namespace {
enum class SupportResult {
Supported,
SupportedWithI420Pivot,
SupportedWithNV12Pivot,
Unsupported,
};
enum class Transform {
kConversion,
kScaling,
};
static constexpr struct {
uint32_t input;
uint32_t output;
Transform transform;
SupportResult support_result;
} kSupportFormatConversionArray[] = {
#define CONV(in, out, trans, result) \
{Fourcc::in, Fourcc::out, Transform::trans, SupportResult::result}
// Conversion.
#if BUILDFLAG(IS_LINUX)
CONV(NV12, AR24, kConversion, Supported),
#endif
CONV(NV12, NV12, kConversion, Supported),
CONV(YM16, NV12, kConversion, Supported),
CONV(YM16, YU12, kConversion, Supported),
CONV(YU12, NV12, kConversion, Supported),
CONV(YU12, YU12, kConversion, Supported),
CONV(YUYV, NV12, kConversion, Supported),
CONV(YUYV, YU12, kConversion, Supported),
CONV(YV12, NV12, kConversion, Supported),
CONV(MM21, NV12, kConversion, Supported),
CONV(MT2T, P010, kConversion, Supported),
// Scaling.
CONV(NV12, NV12, kScaling, Supported),
CONV(YM16, NV12, kScaling, SupportedWithNV12Pivot),
CONV(YM16, YU12, kScaling, SupportedWithI420Pivot),
CONV(YU12, YU12, kScaling, Supported),
CONV(YUYV, NV12, kScaling, SupportedWithNV12Pivot),
CONV(YUYV, YU12, kScaling, SupportedWithI420Pivot),
#undef CONV
};
SupportResult IsConversionSupported(Fourcc input_fourcc,
Fourcc output_fourcc,
Transform transform) {
const auto single_input_fourcc = input_fourcc.ToSinglePlanar();
const auto single_output_fourcc = output_fourcc.ToSinglePlanar();
if (!single_input_fourcc || !single_output_fourcc)
return SupportResult::Unsupported;
// Compare fourccs by formatting single planar formats because LibyuvIP can
// process either single- or multi-planar formats.
for (const auto& conv : kSupportFormatConversionArray) {
const auto conv_input_fourcc = Fourcc::FromUint32(conv.input);
const auto conv_output_fourcc = Fourcc::FromUint32(conv.output);
if (!conv_input_fourcc || !conv_output_fourcc)
continue;
const auto single_conv_input_fourcc = conv_input_fourcc->ToSinglePlanar();
const auto single_conv_output_fourcc = conv_output_fourcc->ToSinglePlanar();
if (!single_conv_input_fourcc || !single_conv_output_fourcc)
continue;
if (single_input_fourcc == single_conv_input_fourcc &&
single_output_fourcc == single_conv_output_fourcc &&
transform == conv.transform) {
return conv.support_result;
}
}
return SupportResult::Unsupported;
}
} // namespace
// static
std::unique_ptr<ImageProcessorBackend> LibYUVImageProcessorBackend::Create(
const PortConfig& input_config,
const PortConfig& output_config,
OutputMode output_mode,
ErrorCB error_cb) {
return CreateWithTaskRunner(input_config, output_config, output_mode,
error_cb,
base::ThreadPool::CreateSequencedTaskRunner(
{base::TaskPriority::USER_VISIBLE}));
}
// static
std::unique_ptr<ImageProcessorBackend>
LibYUVImageProcessorBackend::CreateWithTaskRunner(
const PortConfig& input_config,
const PortConfig& output_config,
OutputMode output_mode,
ErrorCB error_cb,
scoped_refptr<base::SequencedTaskRunner> backend_task_runner) {
VLOGF(2);
DCHECK_EQ(output_mode, OutputMode::IMPORT)
<< "Only OutputMode::IMPORT supported";
if (!gfx::Rect(input_config.size).Contains(input_config.visible_rect)) {
VLOGF(1) << "Input size should contain input visible rect.";
return nullptr;
}
if (!gfx::Rect(output_config.size).Contains(output_config.visible_rect)) {
VLOGF(1) << "Output size should contain output visible rect.";
return nullptr;
}
// LibYUVImageProcessorBackend supports only memory-based video frame for
// input.
std::unique_ptr<VideoFrameMapper> input_frame_mapper;
if (input_config.storage_type == VideoFrame::STORAGE_DMABUFS ||
input_config.storage_type == VideoFrame::STORAGE_GPU_MEMORY_BUFFER) {
input_frame_mapper = VideoFrameMapperFactory::CreateMapper(
input_config.fourcc.ToVideoPixelFormat(), input_config.storage_type,
/*force_linear_buffer_mapper=*/true);
}
if (!input_frame_mapper &&
!VideoFrame::IsStorageTypeMappable(input_config.storage_type)) {
VLOGF(2) << "Unsupported input storage type";
return nullptr;
}
std::unique_ptr<VideoFrameMapper> output_frame_mapper;
if (output_config.storage_type == VideoFrame::STORAGE_DMABUFS ||
output_config.storage_type == VideoFrame::STORAGE_GPU_MEMORY_BUFFER) {
output_frame_mapper = VideoFrameMapperFactory::CreateMapper(
output_config.fourcc.ToVideoPixelFormat(), output_config.storage_type,
/*force_linear_buffer_mapper=*/true);
}
if (!output_frame_mapper &&
!VideoFrame::IsStorageTypeMappable(output_config.storage_type)) {
VLOGF(2) << "Unsupported output storage type";
return nullptr;
}
const gfx::Size& input_size = input_config.visible_rect.size();
const gfx::Size& output_size = output_config.visible_rect.size();
Transform transform = Transform::kConversion;
if (input_size != output_size) {
transform = Transform::kScaling;
}
SupportResult res = IsConversionSupported(input_config.fourcc,
output_config.fourcc, transform);
if (res == SupportResult::Unsupported) {
VLOGF(2) << "Conversion from " << input_size.ToString() << "/"
<< input_config.fourcc.ToString() << " to "
<< output_size.ToString() << "/" << output_config.fourcc.ToString()
<< " is not supported";
return nullptr;
}
scoped_refptr<FrameResource> intermediate_frame;
if (res == SupportResult::SupportedWithI420Pivot ||
res == SupportResult::SupportedWithNV12Pivot) {
intermediate_frame = VideoFrameResource::Create(VideoFrame::CreateFrame(
res == SupportResult::SupportedWithI420Pivot ? PIXEL_FORMAT_I420
: PIXEL_FORMAT_NV12,
input_config.visible_rect.size(),
gfx::Rect(input_config.visible_rect.size()),
input_config.visible_rect.size(), base::TimeDelta()));
if (!intermediate_frame) {
VLOGF(1) << "Failed to create intermediate frame";
return nullptr;
}
}
// This intermediate frame is only needed in the event of a crop operation
// that does not start with the upper left corner at (0,0). Tiled formats such
// as MM21 can not easily be converted starting at arbitrary origins. With
// this intermediate buffer the tiled format can be converted to a linear
// format that can be easily cropped.
scoped_refptr<FrameResource> crop_intermediate_frame;
if (input_config.visible_rect.origin() != gfx::Point(0, 0) &&
(input_config.fourcc == Fourcc(Fourcc::MM21) ||
input_config.fourcc == Fourcc(Fourcc::MT2T))) {
if (transform != Transform::kScaling) {
crop_intermediate_frame =
VideoFrameResource::Create(VideoFrame::CreateFrame(
output_config.fourcc.ToVideoPixelFormat(), input_config.size,
input_config.visible_rect, input_config.size, base::TimeDelta()));
if (!crop_intermediate_frame) {
VLOGF(1) << "Failed to create cropping intermediate frame";
return nullptr;
}
} else {
VLOGF(1) << "Scaling and cropping simultaneously are not supported for "
"MM21/M2T2.";
return nullptr;
}
}
auto processor =
base::WrapUnique<ImageProcessorBackend>(new LibYUVImageProcessorBackend(
std::move(input_frame_mapper), std::move(output_frame_mapper),
std::move(intermediate_frame), std::move(crop_intermediate_frame),
input_config, output_config, OutputMode::IMPORT, std::move(error_cb),
std::move(backend_task_runner)));
VLOGF(2) << "LibYUVImageProcessorBackend created for converting from "
<< input_config.ToString() << " to " << output_config.ToString();
return processor;
}
LibYUVImageProcessorBackend::LibYUVImageProcessorBackend(
std::unique_ptr<VideoFrameMapper> input_frame_mapper,
std::unique_ptr<VideoFrameMapper> output_frame_mapper,
scoped_refptr<FrameResource> intermediate_frame,
scoped_refptr<FrameResource> crop_intermediate_frame,
const PortConfig& input_config,
const PortConfig& output_config,
OutputMode output_mode,
ErrorCB error_cb,
scoped_refptr<base::SequencedTaskRunner> backend_task_runner)
: ImageProcessorBackend(input_config,
output_config,
output_mode,
std::move(error_cb),
std::move(backend_task_runner)),
input_frame_mapper_(std::move(input_frame_mapper)),
output_frame_mapper_(std::move(output_frame_mapper)),
intermediate_frame_(std::move(intermediate_frame)),
crop_intermediate_frame_(std::move(crop_intermediate_frame)) {}
LibYUVImageProcessorBackend::~LibYUVImageProcessorBackend() {
DCHECK_CALLED_ON_VALID_SEQUENCE(backend_sequence_checker_);
}
std::string LibYUVImageProcessorBackend::type() const {
return "LibYUVImageProcessor";
}
void LibYUVImageProcessorBackend::ProcessFrame(
scoped_refptr<FrameResource> input_frame,
scoped_refptr<FrameResource> output_frame,
FrameResourceReadyCB cb) {
DCHECK_CALLED_ON_VALID_SEQUENCE(backend_sequence_checker_);
DVLOGF(4);
if (input_frame->storage_type() == VideoFrame::STORAGE_DMABUFS ||
input_frame->storage_type() == VideoFrame::STORAGE_GPU_MEMORY_BUFFER) {
DCHECK_NE(input_frame_mapper_.get(), nullptr);
int mapping_permissions = PROT_READ;
if (input_frame->storage_type() != VideoFrame::STORAGE_DMABUFS)
mapping_permissions |= PROT_WRITE;
scoped_refptr<VideoFrame> mapped_input_frame =
input_frame_mapper_->MapFrame(input_frame, mapping_permissions);
if (!mapped_input_frame) {
VLOGF(1) << "Failed to map input FrameResource";
error_cb_.Run();
return;
}
input_frame = VideoFrameResource::Create(std::move(mapped_input_frame));
}
// We don't replace |output_frame| with a mapped frame, because |output_frame|
// is the output of ImageProcessor.
scoped_refptr<FrameResource> mapped_frame = output_frame;
if (output_frame->storage_type() == VideoFrame::STORAGE_DMABUFS ||
output_frame->storage_type() == VideoFrame::STORAGE_GPU_MEMORY_BUFFER) {
DCHECK_NE(output_frame_mapper_.get(), nullptr);
scoped_refptr<VideoFrame> mapped_output_frame =
output_frame_mapper_->MapFrame(output_frame, PROT_READ | PROT_WRITE);
if (!mapped_output_frame) {
VLOGF(1) << "Failed to map output FrameResource";
error_cb_.Run();
return;
}
mapped_frame = VideoFrameResource::Create(std::move(mapped_output_frame));
}
int res;
{
TRACE_EVENT2("media", "LibYUVImageProcessorBackend::Process", "input_frame",
input_frame->AsHumanReadableString(), "output_frame",
mapped_frame->AsHumanReadableString());
SCOPED_UMA_HISTOGRAM_TIMER("LibYUVImageProcessorBackend::Process");
if (input_config_.visible_rect.origin() == gfx::Point(0, 0) ||
(input_config_.fourcc != Fourcc(Fourcc::MM21) &&
input_config_.fourcc != Fourcc(Fourcc::MT2T))) {
res = DoConversion(input_frame.get(), mapped_frame.get());
} else {
res = DoConversion(input_frame.get(), crop_intermediate_frame_.get());
// This is cropping routine that should be able to support any (known)
// pixel format).
if (!res) {
for (size_t plane = 0;
plane < VideoFrame::NumPlanes(crop_intermediate_frame_->format());
plane++) {
const uint8_t* src_row_ptr =
crop_intermediate_frame_->visible_data(plane);
uint8_t* dst_row_ptr = mapped_frame->GetWritableVisibleData(plane);
for (size_t row = 0;
row < VideoFrame::Rows(
plane, crop_intermediate_frame_->format(),
crop_intermediate_frame_->visible_rect().height());
row++) {
memcpy(dst_row_ptr, src_row_ptr,
VideoFrame::Columns(
plane, crop_intermediate_frame_->format(),
crop_intermediate_frame_->visible_rect().width()) *
VideoFrame::BytesPerElement(
crop_intermediate_frame_->format(), plane));
src_row_ptr += crop_intermediate_frame_->row_bytes(plane);
dst_row_ptr += mapped_frame->row_bytes(plane);
}
}
}
}
}
if (res != 0) {
VLOGF(1) << "libyuv returns non-zero code: " << res;
error_cb_.Run();
return;
}
output_frame->set_timestamp(input_frame->timestamp());
output_frame->set_color_space(input_frame->ColorSpace());
std::move(cb).Run(std::move(output_frame));
}
int LibYUVImageProcessorBackend::DoConversion(const FrameResource* const input,
FrameResource* const output) {
DCHECK_CALLED_ON_VALID_SEQUENCE(backend_sequence_checker_);
#define Y_U_V_DATA(fr) \
fr->visible_data(VideoFrame::Plane::kY), fr->stride(VideoFrame::Plane::kY), \
fr->visible_data(VideoFrame::Plane::kU), \
fr->stride(VideoFrame::Plane::kU), \
fr->visible_data(VideoFrame::Plane::kV), \
fr->stride(VideoFrame::Plane::kV)
#define Y_U_V_DATA_W(fr) \
fr->GetWritableVisibleData(VideoFrame::Plane::kY), \
fr->stride(VideoFrame::Plane::kY), \
fr->GetWritableVisibleData(VideoFrame::Plane::kU), \
fr->stride(VideoFrame::Plane::kU), \
fr->GetWritableVisibleData(VideoFrame::Plane::kV), \
fr->stride(VideoFrame::Plane::kV)
#define Y_V_U_DATA(fr) \
fr->visible_data(VideoFrame::Plane::kY), fr->stride(VideoFrame::Plane::kY), \
fr->visible_data(VideoFrame::Plane::kV), \
fr->stride(VideoFrame::Plane::kV), \
fr->visible_data(VideoFrame::Plane::kU), \
fr->stride(VideoFrame::Plane::kU)
#define Y_UV_DATA(fr) \
fr->visible_data(VideoFrame::Plane::kY), fr->stride(VideoFrame::Plane::kY), \
fr->visible_data(VideoFrame::Plane::kUV), \
fr->stride(VideoFrame::Plane::kUV)
#define Y_UV_DATA_W(fr) \
fr->GetWritableVisibleData(VideoFrame::Plane::kY), \
fr->stride(VideoFrame::Plane::kY), \
fr->GetWritableVisibleData(VideoFrame::Plane::kUV), \
fr->stride(VideoFrame::Plane::kUV)
#define YUY2_DATA(fr) \
fr->visible_data(VideoFrame::Plane::kY), fr->stride(VideoFrame::Plane::kY)
#define Y_UV_DATA_10BIT(fr) \
reinterpret_cast<const uint16_t*>(fr->visible_data(VideoFrame::Plane::kY)), \
fr->stride(VideoFrame::Plane::kY), \
reinterpret_cast<const uint16_t*>( \
fr->visible_data(VideoFrame::Plane::kUV)), \
fr->stride(VideoFrame::Plane::kUV)
#define Y_UV_DATA_W_10BIT(fr) \
reinterpret_cast<uint16_t*>( \
fr->GetWritableVisibleData(VideoFrame::Plane::kY)), \
fr->stride(VideoFrame::Plane::kY), \
reinterpret_cast<uint16_t*>( \
fr->GetWritableVisibleData(VideoFrame::Plane::kUV)), \
fr->stride(VideoFrame::Plane::kUV)
#if BUILDFLAG(IS_LINUX)
#define ARGB_DATA(fr) \
fr->GetWritableVisibleData(VideoFrame::Plane::kARGB), \
fr->stride(VideoFrame::Plane::kARGB)
#endif
#define LIBYUV_FUNC(func, i, o) \
libyuv::func(i, o, output->visible_rect().width(), \
output->visible_rect().height())
if (output->format() == PIXEL_FORMAT_NV12) {
switch (input->format()) {
case PIXEL_FORMAT_I420:
return LIBYUV_FUNC(I420ToNV12, Y_U_V_DATA(input), Y_UV_DATA_W(output));
case PIXEL_FORMAT_YV12:
return LIBYUV_FUNC(I420ToNV12, Y_V_U_DATA(input), Y_UV_DATA_W(output));
case PIXEL_FORMAT_NV12:
// MM21 mode.
if (input_config_.fourcc == Fourcc(Fourcc::MM21)) {
return libyuv::MM21ToNV12(
input->data(VideoFrame::Plane::kY),
input->stride(VideoFrame::Plane::kY),
input->data(VideoFrame::Plane::kUV),
input->stride(VideoFrame::Plane::kUV),
output->writable_data(VideoFrame::Plane::kY),
output->stride(VideoFrame::Plane::kY),
output->writable_data(VideoFrame::Plane::kUV),
output->stride(VideoFrame::Plane::kUV),
std::min(output->coded_size().width(),
input->coded_size().width()),
std::min(output->coded_size().height(),
input->coded_size().height()));
}
// Scaling mode.
return libyuv::NV12Scale(
Y_UV_DATA(input), input->visible_rect().width(),
input->visible_rect().height(), Y_UV_DATA_W(output),
output->visible_rect().width(), output->visible_rect().height(),
libyuv::kFilterBilinear);
case PIXEL_FORMAT_YUY2:
if (input->visible_rect().size() == output->visible_rect().size()) {
return LIBYUV_FUNC(YUY2ToNV12, YUY2_DATA(input), Y_UV_DATA_W(output));
} else {
DCHECK_EQ(intermediate_frame_->format(), PIXEL_FORMAT_NV12);
int ret = libyuv::YUY2ToNV12(
YUY2_DATA(input), Y_UV_DATA_W(intermediate_frame_),
intermediate_frame_->visible_rect().width(),
intermediate_frame_->visible_rect().height());
if (ret != 0)
return ret;
return libyuv::NV12Scale(
Y_UV_DATA(intermediate_frame_),
intermediate_frame_->visible_rect().width(),
intermediate_frame_->visible_rect().height(), Y_UV_DATA_W(output),
output->visible_rect().width(), output->visible_rect().height(),
libyuv::kFilterBilinear);
}
case PIXEL_FORMAT_I422:
if (input->visible_rect().size() == output->visible_rect().size()) {
return LIBYUV_FUNC(I422ToNV21, Y_V_U_DATA(input),
Y_UV_DATA_W(output));
} else {
DCHECK_EQ(intermediate_frame_->format(), PIXEL_FORMAT_NV12);
int ret = libyuv::I422ToNV21(
Y_V_U_DATA(input), Y_UV_DATA_W(intermediate_frame_),
intermediate_frame_->visible_rect().width(),
intermediate_frame_->visible_rect().height());
if (ret != 0)
return ret;
return libyuv::NV12Scale(
Y_UV_DATA(intermediate_frame_),
intermediate_frame_->visible_rect().width(),
intermediate_frame_->visible_rect().height(), Y_UV_DATA_W(output),
output->visible_rect().width(), output->visible_rect().height(),
libyuv::kFilterBilinear);
}
default:
VLOGF(1) << "Unexpected input format: " << input->format();
return -1;
}
}
if (output->format() == PIXEL_FORMAT_I420) {
switch (input->format()) {
case PIXEL_FORMAT_I420:
return libyuv::I420Scale(
Y_U_V_DATA(input), input->visible_rect().width(),
input->visible_rect().height(), Y_U_V_DATA_W(output),
output->visible_rect().width(), output->visible_rect().height(),
libyuv::kFilterBilinear);
case PIXEL_FORMAT_YUY2:
if (input->visible_rect().size() == output->visible_rect().size()) {
return LIBYUV_FUNC(YUY2ToI420, YUY2_DATA(input),
Y_U_V_DATA_W(output));
} else {
DCHECK_EQ(intermediate_frame_->format(), PIXEL_FORMAT_I420);
int ret = libyuv::YUY2ToI420(
YUY2_DATA(input), Y_U_V_DATA_W(intermediate_frame_),
intermediate_frame_->visible_rect().width(),
intermediate_frame_->visible_rect().height());
if (ret != 0)
return ret;
return libyuv::I420Scale(
Y_U_V_DATA(intermediate_frame_),
intermediate_frame_->visible_rect().width(),
intermediate_frame_->visible_rect().height(),
Y_U_V_DATA_W(output), output->visible_rect().width(),
output->visible_rect().height(), libyuv::kFilterBilinear);
}
case PIXEL_FORMAT_I422:
if (input->visible_rect().size() == output->visible_rect().size()) {
return LIBYUV_FUNC(I422ToI420, Y_U_V_DATA(input),
Y_U_V_DATA_W(output));
} else {
DCHECK_EQ(intermediate_frame_->format(), PIXEL_FORMAT_I420);
int ret = libyuv::I422ToI420(
Y_U_V_DATA(input), Y_U_V_DATA_W(intermediate_frame_),
intermediate_frame_->visible_rect().width(),
intermediate_frame_->visible_rect().height());
if (ret != 0)
return ret;
return libyuv::I420Scale(
Y_U_V_DATA(intermediate_frame_),
intermediate_frame_->visible_rect().width(),
intermediate_frame_->visible_rect().height(),
Y_U_V_DATA_W(output), output->visible_rect().width(),
output->visible_rect().height(), libyuv::kFilterBilinear);
}
default:
VLOGF(1) << "Unexpected input format: " << input->format();
return -1;
}
}
if (output->format() == PIXEL_FORMAT_P010LE) {
if (input_config_.fourcc == Fourcc(Fourcc::MT2T)) {
// stride is 5/4 because MT2T is a packed 10bit format
const uint32_t src_stride_mt2t =
(input->stride(VideoFrame::Plane::kY) * 5) >> 2;
int libyuv_result = libyuv::MT2TToP010(
input->visible_data(VideoFrame::Plane::kY), src_stride_mt2t,
input->visible_data(VideoFrame::Plane::kUV), src_stride_mt2t,
reinterpret_cast<uint16_t*>(
output->GetWritableVisibleData(VideoFrame::Plane::kY)),
output->stride(VideoFrame::Plane::kY) >> 1,
reinterpret_cast<uint16_t*>(
output->GetWritableVisibleData(VideoFrame::Plane::kUV)),
output->stride(VideoFrame::Plane::kUV) >> 1,
output->visible_rect().width(), output->visible_rect().height());
if (libyuv_result) {
return libyuv_result;
}
return 0;
}
}
#if BUILDFLAG(IS_LINUX)
if (output->format() == PIXEL_FORMAT_ARGB) {
if (input_config_.fourcc == Fourcc(Fourcc::NV12)) {
return LIBYUV_FUNC(NV12ToARGB, Y_UV_DATA(input),
ARGB_DATA(output));
}
}
#endif
#undef Y_U_V_DATA
#undef Y_V_U_DATA
#undef Y_UV_DATA
#undef LIBYUV_FUNC
VLOGF(1) << "Unexpected output format: " << output->format();
return -1;
}
bool LibYUVImageProcessorBackend::needs_linear_output_buffers() const {
return true;
}
std::vector<Fourcc> LibYUVImageProcessorBackend::GetSupportedOutputFormats(
Fourcc input_format) {
std::vector<Fourcc> supported_formats;
for (const auto& conv : kSupportFormatConversionArray) {
if (Fourcc::FromUint32(conv.input) &&
*Fourcc::FromUint32(conv.input) == input_format &&
Fourcc::FromUint32(conv.output))
supported_formats.emplace_back(*Fourcc::FromUint32(conv.output));
}
return supported_formats;
}
bool LibYUVImageProcessorBackend::supports_incoherent_buffers() const {
return true;
}
} // namespace media