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
media / gpu / test / video_frame_file_writer.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.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "media/gpu/test/video_frame_file_writer.h"
#include <utility>
#include <vector>
#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/strings/stringprintf.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "media/gpu/buildflags.h"
#include "media/gpu/video_frame_mapper.h"
#include "media/gpu/video_frame_mapper_factory.h"
#include "media/media_buildflags.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gfx/codec/png_codec.h"
#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
#include <sys/mman.h>
#endif // BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
namespace media {
namespace test {
VideoFrameFileWriter::VideoFrameFileWriter(
const base::FilePath& output_folder,
OutputFormat output_format,
size_t output_limit,
const base::FilePath::StringType& output_file_prefix)
: output_folder_(output_folder),
output_format_(output_format),
output_limit_(output_limit),
output_file_prefix_(output_file_prefix),
num_frames_writing_(0),
frame_writer_thread_("FrameWriterThread"),
frame_writer_cv_(&frame_writer_lock_) {
DETACH_FROM_SEQUENCE(writer_sequence_checker_);
DETACH_FROM_SEQUENCE(writer_thread_sequence_checker_);
}
VideoFrameFileWriter::~VideoFrameFileWriter() {
DCHECK_CALLED_ON_VALID_SEQUENCE(writer_sequence_checker_);
if (frame_writer_thread_.task_runner()) {
// It's safe to use base::Unretained(this) because we own
// |frame_writer_thread_|, so |this| should be valid until at least the
// frame_writer_thread_.Stop() returns below which won't happen until
// CleanUpOnWriterThread() returns.
frame_writer_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&VideoFrameFileWriter::CleanUpOnWriterThread,
base::Unretained(this)));
}
frame_writer_thread_.Stop();
base::AutoLock auto_lock(frame_writer_lock_);
DCHECK_EQ(0u, num_frames_writing_);
}
void VideoFrameFileWriter::CleanUpOnWriterThread() {
DCHECK_CALLED_ON_VALID_SEQUENCE(writer_thread_sequence_checker_);
video_frame_mapper_.reset();
}
// static
std::unique_ptr<VideoFrameFileWriter> VideoFrameFileWriter::Create(
const base::FilePath& output_folder,
OutputFormat output_format,
size_t output_limit,
const base::FilePath::StringType& output_file_prefix) {
// If the directory is not absolute, consider it relative to our working dir.
base::FilePath resolved_output_folder(output_folder);
if (!resolved_output_folder.IsAbsolute()) {
resolved_output_folder =
base::MakeAbsoluteFilePath(
base::FilePath(base::FilePath::kCurrentDirectory))
.Append(resolved_output_folder);
}
// Create the directory tree if it doesn't exist yet.
if (!DirectoryExists(resolved_output_folder) &&
!base::CreateDirectory(resolved_output_folder)) {
LOG(ERROR) << "Failed to create a output directory: "
<< resolved_output_folder;
return nullptr;
}
auto frame_file_writer = base::WrapUnique(new VideoFrameFileWriter(
resolved_output_folder, output_format, output_limit, output_file_prefix));
if (!frame_file_writer->Initialize()) {
LOG(ERROR) << "Failed to initialize VideoFrameFileWriter";
return nullptr;
}
return frame_file_writer;
}
bool VideoFrameFileWriter::Initialize() {
DCHECK_CALLED_ON_VALID_SEQUENCE(writer_sequence_checker_);
if (!frame_writer_thread_.Start()) {
LOG(ERROR) << "Failed to start file writer thread";
return false;
}
return true;
}
void VideoFrameFileWriter::ProcessVideoFrame(
scoped_refptr<const VideoFrame> video_frame,
size_t frame_index) {
// Don't write more frames than the specified output limit.
if (num_frames_writes_requested_ >= output_limit_)
return;
if (video_frame->visible_rect().IsEmpty()) {
// This occurs in bitstream buffer in webrtc scenario.
DLOG(WARNING) << "Skipping writing, frame_index=" << frame_index
<< " because visible_rect is empty";
return;
}
num_frames_writes_requested_++;
base::AutoLock auto_lock(frame_writer_lock_);
num_frames_writing_++;
// Unretained is safe here, as we should not destroy the writer while there
// are still frames being written.
frame_writer_thread_.task_runner()->PostTask(
FROM_HERE,
base::BindOnce(&VideoFrameFileWriter::ProcessVideoFrameTask,
base::Unretained(this), video_frame, frame_index));
}
bool VideoFrameFileWriter::WaitUntilDone() {
base::AutoLock auto_lock(frame_writer_lock_);
while (num_frames_writing_ > 0) {
frame_writer_cv_.Wait();
}
return true;
}
void VideoFrameFileWriter::ProcessVideoFrameTask(
scoped_refptr<const VideoFrame> video_frame,
size_t frame_index) {
DCHECK_CALLED_ON_VALID_SEQUENCE(writer_thread_sequence_checker_);
const gfx::Size& visible_size = video_frame->visible_rect().size();
base::FilePath file_path;
if (!output_file_prefix_.empty()) {
file_path = base::FilePath(output_file_prefix_)
.AppendASCII("_")
.Append(base::FilePath::FromASCII(base::StringPrintf(
"frame_%04zu_%dx%d", frame_index, visible_size.width(),
visible_size.height())));
} else {
file_path = base::FilePath::FromASCII(
base::StringPrintf("frame_%04zu_%dx%d", frame_index,
visible_size.width(), visible_size.height()));
}
// Copies to |frame| in this function so that |video_frame| stays alive until
// in the end of function.
auto frame = video_frame;
#if BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
if (frame->storage_type() == VideoFrame::STORAGE_GPU_MEMORY_BUFFER) {
// TODO(andrescj): This is a workaround. ClientNativePixmapFactoryDmabuf
// creates ClientNativePixmapOpaque for SCANOUT_VDA_WRITE buffers which
// does not allow us to map GpuMemoryBuffers easily for testing.
// Therefore, we extract the dma-buf FDs. Alternatively, we could consider
// creating our own ClientNativePixmapFactory for testing.
frame = CreateDmabufVideoFrame(frame.get());
if (!frame) {
LOG(ERROR) << "Failed to create Dmabuf-backed VideoFrame from "
<< "GpuMemoryBuffer-based VideoFrame";
return;
}
}
// Create VideoFrameMapper if not yet created. The decoder's output pixel
// format is not known yet when creating the VideoFrameWriter. We can only
// create the VideoFrameMapper upon receiving the first video frame.
if ((frame->storage_type() == VideoFrame::STORAGE_DMABUFS) &&
!video_frame_mapper_) {
video_frame_mapper_ = VideoFrameMapperFactory::CreateMapper(
frame->format(), frame->storage_type());
ASSERT_TRUE(video_frame_mapper_) << "Failed to create VideoFrameMapper";
}
#endif // BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
switch (output_format_) {
case OutputFormat::kPNG:
WriteVideoFramePNG(frame, file_path);
break;
case OutputFormat::kYUV:
WriteVideoFrameYUV(frame, file_path);
break;
}
base::AutoLock auto_lock(frame_writer_lock_);
num_frames_writing_--;
frame_writer_cv_.Signal();
}
void VideoFrameFileWriter::WriteVideoFramePNG(
scoped_refptr<const VideoFrame> video_frame,
const base::FilePath& filename) {
DCHECK_CALLED_ON_VALID_SEQUENCE(writer_thread_sequence_checker_);
auto mapped_frame = video_frame;
#if BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
if (video_frame->storage_type() == VideoFrame::STORAGE_DMABUFS) {
CHECK(video_frame_mapper_);
mapped_frame = video_frame_mapper_->Map(std::move(video_frame), PROT_READ);
}
#endif // BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
if (!mapped_frame) {
LOG(ERROR) << "Failed to map video frame";
return;
}
scoped_refptr<const VideoFrame> argb_out_frame = mapped_frame;
if (argb_out_frame->format() != PIXEL_FORMAT_ARGB) {
argb_out_frame = ConvertVideoFrame(argb_out_frame.get(),
VideoPixelFormat::PIXEL_FORMAT_ARGB);
}
// Convert the ARGB frame to PNG.
std::optional<std::vector<uint8_t>> png_output = gfx::PNGCodec::Encode(
argb_out_frame->visible_data(VideoFrame::Plane::kARGB),
gfx::PNGCodec::FORMAT_BGRA, argb_out_frame->visible_rect().size(),
argb_out_frame->stride(VideoFrame::Plane::kARGB),
/*discard_transparency=*/true, std::vector<gfx::PNGCodec::Comment>());
// Write the PNG data to file.
base::FilePath file_path(
output_folder_.Append(filename).AddExtension(FILE_PATH_LITERAL(".png")));
ASSERT_TRUE(base::WriteFile(file_path, png_output.value()));
}
void VideoFrameFileWriter::WriteVideoFrameYUV(
scoped_refptr<const VideoFrame> video_frame,
const base::FilePath& filename) {
DCHECK_CALLED_ON_VALID_SEQUENCE(writer_thread_sequence_checker_);
auto mapped_frame = video_frame;
#if BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
if (video_frame->storage_type() == VideoFrame::STORAGE_DMABUFS) {
CHECK(video_frame_mapper_);
mapped_frame = video_frame_mapper_->Map(std::move(video_frame), PROT_READ);
}
#endif // BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
if (!mapped_frame) {
LOG(ERROR) << "Failed to map video frame";
return;
}
const VideoPixelFormat yuv_out_format =
VideoFrame::BytesPerElement(mapped_frame->format(), 0) > 1
? PIXEL_FORMAT_YUV420P10
: PIXEL_FORMAT_I420;
scoped_refptr<const VideoFrame> out_frame = mapped_frame;
if (out_frame->format() != PIXEL_FORMAT_I420 &&
out_frame->format() != PIXEL_FORMAT_YUV420P10) {
out_frame = ConvertVideoFrame(out_frame.get(), yuv_out_format);
}
// Write the YUV data to file.
base::FilePath file_path(
output_folder_.Append(filename)
.AddExtension(FILE_PATH_LITERAL(".yuv"))
.InsertBeforeExtension(yuv_out_format == PIXEL_FORMAT_I420
? FILE_PATH_LITERAL("_I420")
: FILE_PATH_LITERAL("_I420P10")));
base::File yuv_file(file_path,
base::File::FLAG_CREATE_ALWAYS | base::File::FLAG_WRITE);
const gfx::Size visible_size = out_frame->visible_rect().size();
const VideoPixelFormat pixel_format = out_frame->format();
const size_t num_planes = VideoFrame::NumPlanes(pixel_format);
for (size_t i = 0; i < num_planes; i++) {
const uint8_t* data = out_frame->visible_data(i);
const int stride = out_frame->stride(i);
const size_t rows =
VideoFrame::Rows(i, pixel_format, visible_size.height());
const int row_bytes =
VideoFrame::RowBytes(i, pixel_format, visible_size.width());
ASSERT_TRUE(stride > 0);
for (size_t row = 0; row < rows; ++row) {
if (yuv_file.WriteAtCurrentPos(
reinterpret_cast<const char*>(data + (stride * row)),
row_bytes) != row_bytes) {
LOG(ERROR) << "Failed to write plane #" << i << " to file: "
<< base::File::ErrorToString(base::File::GetLastFileError());
}
}
}
}
} // namespace test
} // namespace media