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
media / gpu / test / video_frame_helpers.cc [blame]
// Copyright 2019 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/gpu/test/video_frame_helpers.h"
#include <utility>
#include <vector>
#include "base/bits.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/memory/scoped_refptr.h"
#include "gpu/ipc/common/gpu_memory_buffer_support.h"
#include "media/base/color_plane_layout.h"
#include "media/base/format_utils.h"
#include "media/base/video_frame.h"
#include "media/gpu/test/image.h"
#include "media/media_buildflags.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/libyuv/include/libyuv.h"
#include "ui/gfx/buffer_format_util.h"
#include "ui/gfx/gpu_memory_buffer.h"
#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
#include <sys/mman.h>
#endif // BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
#if BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
#include "media/gpu/chromeos/platform_video_frame_utils.h"
#include "media/gpu/video_frame_mapper.h"
#include "media/gpu/video_frame_mapper_factory.h"
#endif // BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
namespace media {
namespace test {
namespace {
#define ASSERT_TRUE_OR_RETURN(predicate, return_value) \
do { \
if (!(predicate)) { \
ADD_FAILURE(); \
return (return_value); \
} \
} while (0)
bool ConvertVideoFrameToI420(const VideoFrame* src_frame,
VideoFrame* dst_frame) {
ASSERT_TRUE_OR_RETURN(src_frame->visible_rect() == dst_frame->visible_rect(),
false);
ASSERT_TRUE_OR_RETURN(dst_frame->format() == PIXEL_FORMAT_I420, false);
// Convert the visible area.
const auto& visible_rect = src_frame->visible_rect();
const int width = visible_rect.width();
const int height = visible_rect.height();
uint8_t* const dst_y =
dst_frame->GetWritableVisibleData(VideoFrame::Plane::kY);
uint8_t* const dst_u =
dst_frame->GetWritableVisibleData(VideoFrame::Plane::kU);
uint8_t* const dst_v =
dst_frame->GetWritableVisibleData(VideoFrame::Plane::kV);
const int dst_stride_y = dst_frame->stride(VideoFrame::Plane::kY);
const int dst_stride_u = dst_frame->stride(VideoFrame::Plane::kU);
const int dst_stride_v = dst_frame->stride(VideoFrame::Plane::kV);
switch (src_frame->format()) {
case PIXEL_FORMAT_I420:
return libyuv::I420Copy(src_frame->visible_data(VideoFrame::Plane::kY),
src_frame->stride(VideoFrame::Plane::kY),
src_frame->visible_data(VideoFrame::Plane::kU),
src_frame->stride(VideoFrame::Plane::kU),
src_frame->visible_data(VideoFrame::Plane::kV),
src_frame->stride(VideoFrame::Plane::kV), dst_y,
dst_stride_y, dst_u, dst_stride_u, dst_v,
dst_stride_v, width, height) == 0;
case PIXEL_FORMAT_NV12:
return libyuv::NV12ToI420(src_frame->visible_data(VideoFrame::Plane::kY),
src_frame->stride(VideoFrame::Plane::kY),
src_frame->visible_data(VideoFrame::Plane::kUV),
src_frame->stride(VideoFrame::Plane::kUV),
dst_y, dst_stride_y, dst_u, dst_stride_u, dst_v,
dst_stride_v, width, height) == 0;
case PIXEL_FORMAT_YV12:
// Swap U and V planes.
return libyuv::I420Copy(src_frame->visible_data(VideoFrame::Plane::kY),
src_frame->stride(VideoFrame::Plane::kY),
src_frame->visible_data(VideoFrame::Plane::kV),
src_frame->stride(VideoFrame::Plane::kV),
src_frame->visible_data(VideoFrame::Plane::kU),
src_frame->stride(VideoFrame::Plane::kU), dst_y,
dst_stride_y, dst_u, dst_stride_u, dst_v,
dst_stride_v, width, height) == 0;
default:
LOG(ERROR) << "Unsupported input format: " << src_frame->format();
return false;
}
}
bool ConvertVideoFrameToYUV420P10(const VideoFrame* src_frame,
VideoFrame* dst_frame) {
if (src_frame->format() != PIXEL_FORMAT_P010LE) {
LOG(ERROR) << "Unsupported input format: "
<< VideoPixelFormatToString(src_frame->format());
return false;
}
// Both P010LE and I010 store 10 bit pixels unpacked as 16-bit little endian
// values. In P010LE the pixel data is stored in the MSB. It is a bi-planar
// format with the same Y U/V layout as NV12. I010 is a tri-planar format with
// the same layout as YUV420.
// P010 is P010LE with the lower 6 bits zeroed out.
// |15|14|13|12|11|10| 9| 8| 7| 6| 5| 4| 3| 2| 1| 0|
// | valid data | 0| 0| 0| 0| 0| 0|
//
// I010 has the upper 6 bits zeroed out and the pixel data in the LSB.
// |15|14|13|12|11|10| 9| 8| 7| 6| 5| 4| 3| 2| 1| 0|
// | 0| 0| 0| 0| 0| 0| valid data |
// libyuv conversions take stride as the number of pixels while |VideoFrame|
// stores the stride as the number of bytes. For 16 pixels that means the
// stride needs to be converted from bytes to pixels by dividing by 2.
const int conversion_result = libyuv::P010ToI010(
reinterpret_cast<const uint16_t*>(
src_frame->visible_data(VideoFrame::Plane::kY)),
src_frame->stride(VideoFrame::Plane::kY) >> 1,
reinterpret_cast<const uint16_t*>(
src_frame->visible_data(VideoFrame::Plane::kUV)),
src_frame->stride(VideoFrame::Plane::kUV) >> 1,
reinterpret_cast<uint16_t*>(
dst_frame->GetWritableVisibleData(VideoFrame::Plane::kY)),
dst_frame->stride(VideoFrame::Plane::kY) >> 1,
reinterpret_cast<uint16_t*>(
dst_frame->GetWritableVisibleData(VideoFrame::Plane::kU)),
dst_frame->stride(VideoFrame::Plane::kU) >> 1,
reinterpret_cast<uint16_t*>(
dst_frame->GetWritableVisibleData(VideoFrame::Plane::kV)),
dst_frame->stride(VideoFrame::Plane::kV) >> 1,
src_frame->visible_rect().width(), src_frame->visible_rect().height());
return conversion_result == 0;
}
bool ConvertVideoFrameToARGB(const VideoFrame* src_frame,
VideoFrame* dst_frame) {
ASSERT_TRUE_OR_RETURN(src_frame->visible_rect() == dst_frame->visible_rect(),
false);
ASSERT_TRUE_OR_RETURN(dst_frame->format() == PIXEL_FORMAT_ARGB, false);
// Convert the visible area.
const auto& visible_rect = src_frame->visible_rect();
const int width = visible_rect.width();
const int height = visible_rect.height();
uint8_t* const dst_argb =
dst_frame->GetWritableVisibleData(VideoFrame::Plane::kARGB);
const int dst_stride = dst_frame->stride(VideoFrame::Plane::kARGB);
switch (src_frame->format()) {
case PIXEL_FORMAT_I420:
// Note that we use J420ToARGB instead of I420ToARGB so that the
// kYuvJPEGConstants YUV-to-RGB conversion matrix is used.
return libyuv::J420ToARGB(src_frame->visible_data(VideoFrame::Plane::kY),
src_frame->stride(VideoFrame::Plane::kY),
src_frame->visible_data(VideoFrame::Plane::kU),
src_frame->stride(VideoFrame::Plane::kU),
src_frame->visible_data(VideoFrame::Plane::kV),
src_frame->stride(VideoFrame::Plane::kV),
dst_argb, dst_stride, width, height) == 0;
case PIXEL_FORMAT_NV12:
return libyuv::NV12ToARGB(src_frame->visible_data(VideoFrame::Plane::kY),
src_frame->stride(VideoFrame::Plane::kY),
src_frame->visible_data(VideoFrame::Plane::kUV),
src_frame->stride(VideoFrame::Plane::kUV),
dst_argb, dst_stride, width, height) == 0;
case PIXEL_FORMAT_YV12:
// Same as I420, but U and V planes are swapped.
return libyuv::J420ToARGB(src_frame->visible_data(VideoFrame::Plane::kY),
src_frame->stride(VideoFrame::Plane::kY),
src_frame->visible_data(VideoFrame::Plane::kV),
src_frame->stride(VideoFrame::Plane::kV),
src_frame->visible_data(VideoFrame::Plane::kU),
src_frame->stride(VideoFrame::Plane::kU),
dst_argb, dst_stride, width, height) == 0;
case PIXEL_FORMAT_P010LE: {
auto i010_frame = VideoFrame::CreateFrame(
PIXEL_FORMAT_YUV420AP10, src_frame->coded_size(),
src_frame->visible_rect(), src_frame->natural_size(),
src_frame->timestamp());
if (!i010_frame) {
return false;
}
if (!ConvertVideoFrameToYUV420P10(src_frame, i010_frame.get())) {
return false;
}
return libyuv::I010ToARGB(
reinterpret_cast<const uint16_t*>(
i010_frame->visible_data(VideoFrame::Plane::kY)),
i010_frame->stride(VideoFrame::Plane::kY) >> 1,
reinterpret_cast<const uint16_t*>(
i010_frame->visible_data(VideoFrame::Plane::kU)),
i010_frame->stride(VideoFrame::Plane::kU) >> 1,
reinterpret_cast<const uint16_t*>(
i010_frame->visible_data(VideoFrame::Plane::kV)),
i010_frame->stride(VideoFrame::Plane::kV) >> 1, dst_argb,
dst_stride, width, height) == 0;
}
default:
LOG(ERROR) << "Unsupported input format: " << src_frame->format();
return false;
}
}
// Copy memory based |src_frame| buffer to |dst_frame| buffer.
bool CopyVideoFrame(const VideoFrame* src_frame,
scoped_refptr<VideoFrame> dst_frame) {
ASSERT_TRUE_OR_RETURN(src_frame->IsMappable(), false);
#if BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
// If |dst_frame| is a Dmabuf-backed VideoFrame, we need to map its underlying
// buffer into memory. We use a VideoFrameMapper to create a memory-based
// VideoFrame that refers to the |dst_frame|'s buffer.
if (dst_frame->storage_type() == VideoFrame::STORAGE_DMABUFS) {
auto video_frame_mapper = VideoFrameMapperFactory::CreateMapper(
dst_frame->format(), VideoFrame::STORAGE_DMABUFS,
/*force_linear_buffer_mapper=*/true);
ASSERT_TRUE_OR_RETURN(video_frame_mapper, false);
dst_frame =
video_frame_mapper->Map(std::move(dst_frame), PROT_READ | PROT_WRITE);
if (!dst_frame) {
LOG(ERROR) << "Failed to map DMABuf video frame.";
return false;
}
}
#endif // BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
ASSERT_TRUE_OR_RETURN(dst_frame->IsMappable(), false);
ASSERT_TRUE_OR_RETURN(src_frame->format() == dst_frame->format(), false);
// Copy every plane's content from |src_frame| to |dst_frame|.
const size_t num_planes = VideoFrame::NumPlanes(dst_frame->format());
ASSERT_TRUE_OR_RETURN(dst_frame->layout().planes().size() == num_planes,
false);
ASSERT_TRUE_OR_RETURN(src_frame->layout().planes().size() == num_planes,
false);
for (size_t i = 0; i < num_planes; ++i) {
// |width| in libyuv::CopyPlane() is in bytes, not pixels.
gfx::Size plane_size =
VideoFrame::PlaneSize(dst_frame->format(), i, dst_frame->coded_size());
libyuv::CopyPlane(
src_frame->data(i), src_frame->layout().planes()[i].stride,
dst_frame->writable_data(i), dst_frame->layout().planes()[i].stride,
plane_size.width(), plane_size.height());
}
return true;
}
} // namespace
bool ConvertVideoFrame(const VideoFrame* src_frame, VideoFrame* dst_frame) {
ASSERT_TRUE_OR_RETURN(src_frame->visible_rect() == dst_frame->visible_rect(),
false);
ASSERT_TRUE_OR_RETURN(src_frame->IsMappable() && dst_frame->IsMappable(),
false);
// Writing into non-owned memory might produce some unexpected side effects.
if (dst_frame->storage_type() != VideoFrame::STORAGE_OWNED_MEMORY)
LOG(WARNING) << "writing into non-owned memory";
// Only I420, YUV420P10 and ARGB are currently supported as output formats.
switch (dst_frame->format()) {
case PIXEL_FORMAT_I420:
return ConvertVideoFrameToI420(src_frame, dst_frame);
case PIXEL_FORMAT_YUV420P10:
return ConvertVideoFrameToYUV420P10(src_frame, dst_frame);
case PIXEL_FORMAT_ARGB:
return ConvertVideoFrameToARGB(src_frame, dst_frame);
default:
LOG(ERROR) << "Unsupported output format: " << dst_frame->format();
return false;
}
}
scoped_refptr<VideoFrame> ConvertVideoFrame(const VideoFrame* src_frame,
VideoPixelFormat dst_pixel_format) {
auto dst_frame = VideoFrame::CreateFrame(
dst_pixel_format, src_frame->coded_size(), src_frame->visible_rect(),
src_frame->natural_size(), src_frame->timestamp());
if (!dst_frame) {
LOG(ERROR) << "Failed to convert video frame to " << dst_frame->format();
return nullptr;
}
bool conversion_success = ConvertVideoFrame(src_frame, dst_frame.get());
if (!conversion_success) {
LOG(ERROR) << "Failed to convert video frame to " << dst_frame->format();
return nullptr;
}
return dst_frame;
}
scoped_refptr<VideoFrame> ScaleVideoFrame(const VideoFrame* src_frame,
const gfx::Size& dst_resolution) {
if (src_frame->format() != PIXEL_FORMAT_NV12) {
LOG(ERROR) << src_frame->format() << " is not supported";
return nullptr;
}
auto scaled_frame = VideoFrame::CreateFrame(
PIXEL_FORMAT_NV12, dst_resolution, gfx::Rect(dst_resolution),
dst_resolution, src_frame->timestamp());
const int fail_scaling = libyuv::NV12Scale(
src_frame->visible_data(VideoFrame::Plane::kY),
src_frame->stride(VideoFrame::Plane::kY),
src_frame->visible_data(VideoFrame::Plane::kUV),
src_frame->stride(VideoFrame::Plane::kUV),
src_frame->visible_rect().width(), src_frame->visible_rect().height(),
scaled_frame->GetWritableVisibleData(VideoFrame::Plane::kY),
scaled_frame->stride(VideoFrame::Plane::kY),
scaled_frame->GetWritableVisibleData(VideoFrame::Plane::kUV),
scaled_frame->stride(VideoFrame::Plane::kUV), dst_resolution.width(),
dst_resolution.height(), libyuv::FilterMode::kFilterBilinear);
if (fail_scaling) {
LOG(ERROR) << "Failed scaling the source frame";
return nullptr;
}
return scaled_frame;
}
scoped_refptr<VideoFrame> CloneVideoFrame(
const VideoFrame* const src_frame,
const VideoFrameLayout& dst_layout,
VideoFrame::StorageType dst_storage_type,
std::optional<gfx::BufferUsage> dst_buffer_usage) {
if (!src_frame)
return nullptr;
if (!src_frame->IsMappable()) {
LOG(ERROR) << "The source video frame must be memory-backed VideoFrame";
return nullptr;
}
scoped_refptr<VideoFrame> dst_frame;
switch (dst_storage_type) {
#if BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
case VideoFrame::STORAGE_GPU_MEMORY_BUFFER:
case VideoFrame::STORAGE_DMABUFS:
if (!dst_buffer_usage) {
LOG(ERROR) << "Buffer usage is not specified for a graphic buffer";
return nullptr;
}
dst_frame = CreatePlatformVideoFrame(
dst_layout.format(), dst_layout.coded_size(),
src_frame->visible_rect(), src_frame->natural_size(),
src_frame->timestamp(), *dst_buffer_usage);
break;
#endif // BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
case VideoFrame::STORAGE_OWNED_MEMORY:
// Create VideoFrame, which allocates and owns data.
dst_frame = VideoFrame::CreateFrameWithLayout(
dst_layout, src_frame->visible_rect(), src_frame->natural_size(),
src_frame->timestamp(), false /* zero_initialize_memory*/);
break;
default:
LOG(ERROR) << "Clone video frame must have the ownership of the buffer";
return nullptr;
}
if (!dst_frame) {
LOG(ERROR) << "Failed to create VideoFrame";
return nullptr;
}
if (!CopyVideoFrame(src_frame, dst_frame)) {
LOG(ERROR) << "Failed to copy VideoFrame";
return nullptr;
}
if (dst_storage_type == VideoFrame::STORAGE_GPU_MEMORY_BUFFER) {
// Here, the content in |src_frame| is already copied to |dst_frame|, which
// is a DMABUF based VideoFrame.
// Create GpuMemoryBuffer based VideoFrame from |dst_frame|.
dst_frame =
CreateGpuMemoryBufferVideoFrame(dst_frame.get(), *dst_buffer_usage);
}
return dst_frame;
}
scoped_refptr<VideoFrame> CreateDmabufVideoFrame(
const VideoFrame* const frame) {
#if BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
if (!frame || frame->storage_type() != VideoFrame::STORAGE_GPU_MEMORY_BUFFER)
return nullptr;
gfx::GpuMemoryBufferHandle gmb_handle = frame->GetGpuMemoryBufferHandle();
DCHECK_EQ(gmb_handle.type, gfx::GpuMemoryBufferType::NATIVE_PIXMAP);
std::vector<ColorPlaneLayout> planes;
std::vector<base::ScopedFD> dmabuf_fds;
for (auto& plane : gmb_handle.native_pixmap_handle.planes) {
planes.emplace_back(plane.stride, plane.offset, plane.size);
dmabuf_fds.emplace_back(plane.fd.release());
}
scoped_refptr<VideoFrame> video_frame = VideoFrame::WrapExternalDmabufs(
frame->layout(), frame->visible_rect(), frame->natural_size(),
std::move(dmabuf_fds), frame->timestamp());
video_frame->set_metadata(frame->metadata());
return video_frame;
#else
return nullptr;
#endif // BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)}
}
scoped_refptr<VideoFrame> CreateGpuMemoryBufferVideoFrame(
const VideoFrame* const frame,
gfx::BufferUsage buffer_usage) {
gfx::GpuMemoryBufferHandle gmb_handle;
#if BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
gmb_handle = CreateGpuMemoryBufferHandle(frame);
#endif
if (gmb_handle.is_null() || gmb_handle.type != gfx::NATIVE_PIXMAP) {
LOG(ERROR) << "Failed to create native GpuMemoryBufferHandle";
return nullptr;
}
std::optional<gfx::BufferFormat> buffer_format =
VideoPixelFormatToGfxBufferFormat(frame->format());
if (!buffer_format) {
LOG(ERROR) << "Unexpected format: " << frame->format();
return nullptr;
}
// Create GpuMemoryBuffer from GpuMemoryBufferHandle.
gpu::GpuMemoryBufferSupport support;
std::unique_ptr<gfx::GpuMemoryBuffer> gpu_memory_buffer =
support.CreateGpuMemoryBufferImplFromHandle(
std::move(gmb_handle), frame->coded_size(), *buffer_format,
buffer_usage, base::DoNothing());
if (!gpu_memory_buffer) {
LOG(ERROR) << "Failed to create GpuMemoryBuffer from GpuMemoryBufferHandle";
return nullptr;
}
scoped_refptr<VideoFrame> video_frame =
media::VideoFrame::WrapExternalGpuMemoryBuffer(
frame->visible_rect(), frame->natural_size(),
std::move(gpu_memory_buffer), frame->timestamp());
video_frame->metadata().tracking_token = base::UnguessableToken::Create();
return video_frame;
}
scoped_refptr<const VideoFrame> CreateVideoFrameFromImage(const Image& image) {
DCHECK(image.IsLoaded());
const auto format = image.PixelFormat();
const auto& image_size = image.Size();
// Loaded image data must be tight.
DCHECK_EQ(image.DataSize(), VideoFrame::AllocationSize(format, image_size));
// Create planes for layout. We cannot use WrapExternalData() because it
// calls GetDefaultLayout() and it supports only a few pixel formats.
std::optional<VideoFrameLayout> layout =
CreateVideoFrameLayout(format, image_size, /*alignment=*/1u);
if (!layout) {
LOG(ERROR) << "Failed to create VideoFrameLayout";
return nullptr;
}
scoped_refptr<VideoFrame> video_frame =
VideoFrame::WrapExternalDataWithLayout(
*layout, image.VisibleRect(), image.VisibleRect().size(),
image.Data(), image.DataSize(), base::TimeDelta());
if (!video_frame) {
LOG(ERROR) << "Failed to create VideoFrame";
return nullptr;
}
video_frame->metadata().tracking_token = base::UnguessableToken::Create();
return video_frame;
}
std::optional<VideoFrameLayout> CreateVideoFrameLayout(
VideoPixelFormat pixel_format,
const gfx::Size& dimension,
const uint32_t alignment,
std::vector<size_t>* plane_rows) {
const size_t num_planes = VideoFrame::NumPlanes(pixel_format);
std::vector<ColorPlaneLayout> planes(num_planes);
size_t offset = 0;
if (plane_rows)
plane_rows->resize(num_planes);
for (size_t i = 0; i < num_planes; ++i) {
const int32_t stride =
VideoFrame::RowBytes(i, pixel_format, dimension.width());
const size_t rows = VideoFrame::Rows(i, pixel_format, dimension.height());
const size_t plane_size = stride * rows;
const size_t aligned_size =
base::bits::AlignUp(plane_size, size_t{alignment});
planes[i].stride = stride;
planes[i].offset = offset;
planes[i].size = aligned_size;
offset += planes[i].size;
if (plane_rows)
(*plane_rows)[i] = rows;
}
return VideoFrameLayout::CreateWithPlanes(pixel_format, dimension,
std::move(planes));
}
} // namespace test
} // namespace media