forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmjpeg_decode_accelerator_unittest.cc
1173 lines (1027 loc) · 44.5 KB
/
mjpeg_decode_accelerator_unittest.cc
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
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stddef.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "base/at_exit.h"
#include "base/bind.h"
#include "base/command_line.h"
#include "base/files/file_util.h"
#include "base/files/scoped_file.h"
#include "base/logging.h"
#include "base/macros.h"
#include "base/memory/platform_shared_memory_region.h"
#include "base/memory/shared_memory_mapping.h"
#include "base/memory/unsafe_shared_memory_region.h"
#include "base/numerics/safe_conversions.h"
#include "base/optional.h"
#include "base/path_service.h"
#include "base/posix/eintr_wrapper.h"
#include "base/stl_util.h"
#include "base/strings/string_split.h"
#include "base/strings/stringprintf.h"
#include "base/threading/thread.h"
#include "base/threading/thread_task_runner_handle.h"
#include "base/time/time.h"
#include "base/timer/elapsed_timer.h"
#include "build/build_config.h"
#include "components/chromeos_camera/gpu_mjpeg_decode_accelerator_factory.h"
#include "components/chromeos_camera/mjpeg_decode_accelerator.h"
#include "media/base/color_plane_layout.h"
#include "media/base/format_utils.h"
#include "media/base/test_data_util.h"
#include "media/base/video_frame_layout.h"
#include "media/gpu/buildflags.h"
#include "media/gpu/test/local_gpu_memory_buffer_manager.h"
#include "media/gpu/test/video_frame_helpers.h"
#include "media/gpu/test/video_test_helpers.h"
#include "media/parsers/jpeg_parser.h"
#include "mojo/core/embedder/embedder.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/libyuv/include/libyuv.h"
#include "ui/gfx/buffer_types.h"
#include "ui/gfx/codec/jpeg_codec.h"
#include "ui/gfx/codec/png_codec.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/gpu_memory_buffer.h"
#include "ui/gfx/native_pixmap_handle.h"
#if BUILDFLAG(USE_VAAPI)
#include "media/gpu/vaapi/vaapi_wrapper.h"
#endif
namespace chromeos_camera {
namespace {
// Default test image file.
const base::FilePath::CharType* kDefaultJpegFilename =
FILE_PATH_LITERAL("peach_pi-1280x720.jpg");
constexpr int kDefaultPerfDecodeTimes = 600;
// Decide to save decode results to files or not. Output files will be saved
// in the same directory with unittest. File name is like input file but
// changing the extension to "yuv".
bool g_save_to_file = false;
// Threshold for mean absolute difference of hardware and software decode.
// Absolute difference is to calculate the difference between each pixel in two
// images. This is used for measuring of the similarity of two images.
constexpr double kDecodeSimilarityThreshold = 1.25;
// The buffer usage used to create GpuMemoryBuffer for testing.
constexpr gfx::BufferUsage kBufferUsage =
gfx::BufferUsage::SCANOUT_CPU_READ_WRITE;
// Environment to create test data for all test cases.
class MjpegDecodeAcceleratorTestEnvironment;
MjpegDecodeAcceleratorTestEnvironment* g_env;
// This struct holds a parsed, complete JPEG blob. It can be created from a
// FilePath or can be simply a black image.
struct ParsedJpegImage {
static std::unique_ptr<ParsedJpegImage> CreateFromFile(
const base::FilePath& file_path) {
auto image = std::make_unique<ParsedJpegImage>(file_path);
LOG_ASSERT(base::ReadFileToString(file_path, &image->data_str))
<< file_path;
media::JpegParseResult parse_result;
LOG_ASSERT(ParseJpegPicture(
reinterpret_cast<const uint8_t*>(image->data_str.data()),
image->data_str.size(), &parse_result));
image->InitializeSizes(parse_result.frame_header.visible_width,
parse_result.frame_header.visible_height);
return image;
}
static std::unique_ptr<ParsedJpegImage> CreateBlackImage(
int width,
int height,
SkJpegEncoder::Downsample downsample = SkJpegEncoder::Downsample::k420) {
// Generate a black image with the specified resolution.
constexpr size_t kBytesPerPixel = 4;
const std::vector<unsigned char> input_buffer(width * height *
kBytesPerPixel);
const SkImageInfo info = SkImageInfo::Make(
width, height, kRGBA_8888_SkColorType, kOpaque_SkAlphaType);
const SkPixmap src(info, input_buffer.data(), width * kBytesPerPixel);
// Encode the generated image in the JPEG format, the output buffer will be
// automatically resized while encoding.
constexpr int kJpegQuality = 100;
std::vector<unsigned char> encoded;
LOG_ASSERT(gfx::JPEGCodec::Encode(src, kJpegQuality, downsample, &encoded));
base::FilePath filename;
LOG_ASSERT(base::GetTempDir(&filename));
filename =
filename.Append(base::StringPrintf("black-%dx%d.jpg", width, height));
auto image = std::make_unique<ParsedJpegImage>(filename);
image->data_str.append(encoded.begin(), encoded.end());
image->InitializeSizes(width, height);
return image;
}
explicit ParsedJpegImage(const base::FilePath& path) : file_path(path) {}
void InitializeSizes(int width, int height) {
visible_size.SetSize(width, height);
// We don't expect odd dimensions for camera captures.
ASSERT_EQ(0, width % 2);
ASSERT_EQ(0, height % 2);
coded_size.SetSize((visible_size.width() + 1) & ~1,
(visible_size.height() + 1) & ~1);
}
const base::FilePath::StringType& filename() const {
return file_path.value();
}
const base::FilePath file_path;
std::string data_str;
gfx::Size visible_size;
gfx::Size coded_size;
};
// Global singleton to hold on to common data and other user-defined options.
class MjpegDecodeAcceleratorTestEnvironment : public ::testing::Environment {
public:
MjpegDecodeAcceleratorTestEnvironment(
const base::FilePath::CharType* jpeg_filenames,
const base::FilePath::CharType* test_data_path,
int perf_decode_times)
: perf_decode_times_(perf_decode_times ? perf_decode_times
: kDefaultPerfDecodeTimes),
user_jpeg_filenames_(jpeg_filenames ? jpeg_filenames
: kDefaultJpegFilename),
test_data_path_(test_data_path) {}
void SetUp() override;
// Resolve the specified file path. The file path can be either an absolute
// path, relative to the current directory, or relative to the test data path.
// This is either a custom test data path provided by --test_data_path, or the
// default test data path (//media/test/data).
base::FilePath GetOriginalOrTestDataFilePath(const std::string& file_path) {
const base::FilePath original_file_path = base::FilePath(file_path);
if (base::PathExists(original_file_path))
return original_file_path;
if (test_data_path_)
return base::FilePath(test_data_path_).Append(original_file_path);
return media::GetTestDataFilePath(file_path);
}
// Creates a zero-initialized shared memory backed VideoFrame.
scoped_refptr<media::VideoFrame> CreateShmVideoFrame(
media::VideoPixelFormat format,
const gfx::Size& coded_size,
const gfx::Size& visible_size);
// Creates a zero-initialized DMA-buf backed VideoFrame. Also returns the
// backing GpuMemoryBuffer in |backing_gmb| if it is not null.
scoped_refptr<media::VideoFrame> CreateDmaBufVideoFrame(
media::VideoPixelFormat format,
const gfx::Size& coded_size,
const gfx::Size& visible_size,
std::unique_ptr<gfx::GpuMemoryBuffer>* backing_gmb = nullptr);
// Maps |gmb| into a VideoFrame containing the data pointers. |gmb| should
// outlive the returned Videoframe.
scoped_refptr<media::VideoFrame> MapToVideoFrame(
gfx::GpuMemoryBuffer* gmb,
const media::VideoFrameLayout& layout,
const gfx::Rect& visible_rect);
// Creates a DMA buffer file descriptor that contains |size| bytes of linear
// data initialized with |data|.
base::ScopedFD CreateDmaBufFd(const void* data, size_t size);
// Gets a list of supported DMA-buf frame formats for
// CreateDmaBufVideoFrame().
std::vector<media::VideoPixelFormat> GetSupportedDmaBufFormats();
// Used for InputSizeChange test case. The image size should be smaller than
// |kDefaultJpegFilename|.
std::unique_ptr<ParsedJpegImage> image_data_1280x720_black_;
// Used for ResolutionChange test case.
std::unique_ptr<ParsedJpegImage> image_data_640x368_black_;
// Used for testing some drivers which will align the output resolution to a
// multiple of 16. 640x360 will be aligned to 640x368.
std::unique_ptr<ParsedJpegImage> image_data_640x360_black_;
// Generated black image used to test different JPEG sampling formats.
std::unique_ptr<ParsedJpegImage> image_data_640x368_422_black_;
// Parsed data of "peach_pi-1280x720.jpg".
std::unique_ptr<ParsedJpegImage> image_data_1280x720_default_;
// Parsed data of failure image.
std::unique_ptr<ParsedJpegImage> image_data_invalid_;
// Parsed data from command line.
std::vector<std::unique_ptr<ParsedJpegImage>> image_data_user_;
// Decode times for performance measurement.
int perf_decode_times_;
private:
const base::FilePath::CharType* user_jpeg_filenames_;
const base::FilePath::CharType* test_data_path_;
std::unique_ptr<media::LocalGpuMemoryBufferManager>
gpu_memory_buffer_manager_;
};
void MjpegDecodeAcceleratorTestEnvironment::SetUp() {
image_data_1280x720_black_ = ParsedJpegImage::CreateBlackImage(1280, 720);
image_data_640x368_black_ = ParsedJpegImage::CreateBlackImage(640, 368);
image_data_640x360_black_ = ParsedJpegImage::CreateBlackImage(640, 360);
image_data_640x368_422_black_ = ParsedJpegImage::CreateBlackImage(
640, 368, SkJpegEncoder::Downsample::k422);
image_data_1280x720_default_ = ParsedJpegImage::CreateFromFile(
GetOriginalOrTestDataFilePath(kDefaultJpegFilename));
image_data_invalid_ =
std::make_unique<ParsedJpegImage>(base::FilePath("failure.jpg"));
image_data_invalid_->data_str.resize(100, 0);
image_data_invalid_->InitializeSizes(1280, 720);
// |user_jpeg_filenames_| may include many files and use ';' as delimiter.
std::vector<base::FilePath::StringType> filenames = base::SplitString(
user_jpeg_filenames_, base::FilePath::StringType(1, ';'),
base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL);
for (const auto& filename : filenames) {
const base::FilePath input_file = GetOriginalOrTestDataFilePath(filename);
auto image_data = ParsedJpegImage::CreateFromFile(input_file);
image_data_user_.push_back(std::move(image_data));
}
gpu_memory_buffer_manager_ =
std::make_unique<media::LocalGpuMemoryBufferManager>();
}
scoped_refptr<media::VideoFrame>
MjpegDecodeAcceleratorTestEnvironment::CreateShmVideoFrame(
media::VideoPixelFormat format,
const gfx::Size& coded_size,
const gfx::Size& visible_size) {
const size_t data_size =
media::VideoFrame::AllocationSize(format, coded_size);
auto shm_region = base::UnsafeSharedMemoryRegion::Create(data_size);
if (!shm_region.IsValid()) {
LOG(ERROR) << "Failed to create shared memory";
return nullptr;
}
base::WritableSharedMemoryMapping shm_mapping = shm_region.Map();
if (!shm_mapping.IsValid()) {
LOG(ERROR) << "Failed to map shared memory region";
return nullptr;
}
memset(shm_mapping.memory(), 0, data_size);
scoped_refptr<media::VideoFrame> frame = media::VideoFrame::WrapExternalData(
format, coded_size, gfx::Rect(visible_size), visible_size,
shm_mapping.GetMemoryAsSpan<uint8_t>().data(), data_size,
base::TimeDelta());
if (!frame) {
LOG(ERROR) << "Failed to create video frame";
return nullptr;
}
frame->BackWithOwnedSharedMemory(std::move(shm_region),
std::move(shm_mapping));
return frame;
}
scoped_refptr<media::VideoFrame>
MjpegDecodeAcceleratorTestEnvironment::CreateDmaBufVideoFrame(
media::VideoPixelFormat format,
const gfx::Size& coded_size,
const gfx::Size& visible_size,
std::unique_ptr<gfx::GpuMemoryBuffer>* backing_gmb) {
DCHECK(gpu_memory_buffer_manager_);
// Create a GpuMemoryBuffer and get a NativePixmapHandle from it.
const base::Optional<gfx::BufferFormat> gfx_format =
media::VideoPixelFormatToGfxBufferFormat(format);
if (!gfx_format) {
LOG(ERROR) << "Unsupported pixel format: " << format;
return nullptr;
}
std::unique_ptr<gfx::GpuMemoryBuffer> gmb =
gpu_memory_buffer_manager_->CreateGpuMemoryBuffer(
coded_size, *gfx_format, kBufferUsage, gpu::kNullSurfaceHandle);
if (!gmb) {
LOG(ERROR) << "Failed to create GpuMemoryBuffer";
return nullptr;
}
gfx::GpuMemoryBufferHandle gmb_handle = gmb->CloneHandle();
if (gmb_handle.type != gfx::NATIVE_PIXMAP) {
LOG(ERROR) << "The GpuMemoryBufferHandle doesn't have type NATIVE_PIXMAP";
return nullptr;
}
const size_t num_planes = media::VideoFrame::NumPlanes(format);
if (gmb_handle.native_pixmap_handle.planes.size() != num_planes) {
LOG(ERROR) << "The number of planes of NativePixmapHandle doesn't match "
"the pixel format";
return nullptr;
}
// Fill in the memory with zeros.
if (!gmb->Map()) {
LOG(ERROR) << "Failed to map GpuMemoryBuffer";
return nullptr;
}
for (size_t i = 0; i < num_planes; i++) {
gfx::NativePixmapPlane& plane = gmb_handle.native_pixmap_handle.planes[i];
memset(gmb->memory(i), 0, plane.size);
}
gmb->Unmap();
// Create a VideoFrame from the NativePixmapHandle.
std::vector<media::ColorPlaneLayout> planes;
std::vector<base::ScopedFD> dmabuf_fds;
for (size_t i = 0; i < num_planes; i++) {
gfx::NativePixmapPlane& plane = gmb_handle.native_pixmap_handle.planes[i];
planes.emplace_back(base::checked_cast<int32_t>(plane.stride),
base::checked_cast<size_t>(plane.offset),
base::checked_cast<size_t>(plane.size));
dmabuf_fds.push_back(std::move(plane.fd));
}
const base::Optional<media::VideoFrameLayout> layout =
media::VideoFrameLayout::CreateWithPlanes(format, coded_size,
std::move(planes));
if (!layout) {
LOG(ERROR) << "Failed to create VideoFrameLayout";
return nullptr;
}
if (backing_gmb)
*backing_gmb = std::move(gmb);
return media::VideoFrame::WrapExternalDmabufs(
*layout, gfx::Rect(visible_size), visible_size, std::move(dmabuf_fds),
base::TimeDelta());
}
scoped_refptr<media::VideoFrame>
MjpegDecodeAcceleratorTestEnvironment::MapToVideoFrame(
gfx::GpuMemoryBuffer* gmb,
const media::VideoFrameLayout& layout,
const gfx::Rect& visible_rect) {
DCHECK(gmb);
if (!gmb->Map()) {
LOG(ERROR) << "Failed to map GpuMemoryBuffer";
return nullptr;
}
std::array<uint8_t*, 3> data{};
for (size_t i = 0; i < layout.num_planes(); i++)
data[i] = static_cast<uint8_t*>(gmb->memory(i));
scoped_refptr<media::VideoFrame> frame =
media::VideoFrame::WrapExternalYuvDataWithLayout(
layout, visible_rect, visible_rect.size(), data[0], data[1], data[2],
base::TimeDelta());
if (!frame) {
LOG(ERROR) << "Failed to create VideoFrame";
return nullptr;
}
frame->AddDestructionObserver(
base::BindOnce(&gfx::GpuMemoryBuffer::Unmap, base::Unretained(gmb)));
return frame;
}
base::ScopedFD MjpegDecodeAcceleratorTestEnvironment::CreateDmaBufFd(
const void* data,
size_t size) {
DCHECK(data);
DCHECK_GT(size, 0u);
DCHECK(gpu_memory_buffer_manager_);
// The DMA-buf FD is intended to allow importing into hardware accelerators,
// so we allocate the buffer by GMB manager instead of simply memfd_create().
// The GMB has R_8 format and dimensions (|size|, 1).
std::unique_ptr<gfx::GpuMemoryBuffer> gmb =
gpu_memory_buffer_manager_->CreateGpuMemoryBuffer(
gfx::Size(base::checked_cast<int>(size), 1), gfx::BufferFormat::R_8,
kBufferUsage, gpu::kNullSurfaceHandle);
if (!gmb) {
LOG(ERROR) << "Failed to create GpuMemoryBuffer";
return base::ScopedFD();
}
gfx::GpuMemoryBufferHandle gmb_handle = gmb->CloneHandle();
if (gmb_handle.type != gfx::NATIVE_PIXMAP) {
LOG(ERROR) << "The GpuMemoryBufferHandle doesn't have type NATIVE_PIXMAP";
return base::ScopedFD();
}
if (gmb_handle.native_pixmap_handle.planes.size() != 1) {
LOG(ERROR) << "The number of planes of NativePixmapHandle is not 1 for R_8 "
"format";
return base::ScopedFD();
}
if (gmb_handle.native_pixmap_handle.planes[0].offset != 0) {
LOG(ERROR) << "The memory offset is not zero";
return base::ScopedFD();
}
// Fill in the memory with |data|.
if (!gmb->Map()) {
LOG(ERROR) << "Failed to map GpuMemoryBuffer";
return base::ScopedFD();
}
memcpy(gmb->memory(0), data, size);
gmb->Unmap();
return std::move(gmb_handle.native_pixmap_handle.planes[0].fd);
}
std::vector<media::VideoPixelFormat>
MjpegDecodeAcceleratorTestEnvironment::GetSupportedDmaBufFormats() {
constexpr media::VideoPixelFormat kPreferredFormats[] = {
media::PIXEL_FORMAT_NV12,
media::PIXEL_FORMAT_YV12,
};
std::vector<media::VideoPixelFormat> supported_formats;
for (const media::VideoPixelFormat format : kPreferredFormats) {
const base::Optional<gfx::BufferFormat> gfx_format =
media::VideoPixelFormatToGfxBufferFormat(format);
if (gfx_format && gpu_memory_buffer_manager_->IsFormatAndUsageSupported(
*gfx_format, kBufferUsage))
supported_formats.push_back(format);
}
return supported_formats;
}
enum ClientState {
CS_CREATED,
CS_INITIALIZED,
CS_DECODE_PASS,
CS_ERROR,
};
class JpegClient : public MjpegDecodeAccelerator::Client {
public:
// JpegClient takes ownership of |note|.
JpegClient(
const std::vector<ParsedJpegImage*>& test_image_files,
std::unique_ptr<media::test::ClientStateNotification<ClientState>> note,
bool use_dmabuf,
bool is_skip);
~JpegClient() override;
void CreateJpegDecoder();
void StartDecode(int32_t task_id, bool do_prepare_memory);
void PrepareMemory(int32_t task_id);
bool GetSoftwareDecodeResult(int32_t task_id);
// MjpegDecodeAccelerator::Client implementation.
void VideoFrameReady(int32_t task_id) override;
void NotifyError(int32_t task_id,
MjpegDecodeAccelerator::Error error) override;
// Accessors.
media::test::ClientStateNotification<ClientState>* note() const {
return note_.get();
}
private:
FRIEND_TEST_ALL_PREFIXES(JpegClientTest, GetMeanAbsoluteDifference);
void SetState(ClientState new_state);
// Save a video frame that contains a decoded JPEG. The output is a PNG file.
// The suffix will be added before the .png extension.
void SaveToFile(int32_t task_id,
scoped_refptr<media::VideoFrame> in_frame,
const std::string& suffix = "");
// Calculate mean absolute difference of hardware and software decode results
// to check the similarity.
double GetMeanAbsoluteDifference();
// JpegClient doesn't own |test_image_files_|.
const std::vector<ParsedJpegImage*>& test_image_files_;
ClientState state_;
// Used to notify another thread about the state. JpegClient owns this.
std::unique_ptr<media::test::ClientStateNotification<ClientState>> note_;
// Use DMA-buf backed output buffer for hardware decoder.
bool use_dmabuf_;
// Skip JDA decode result. Used for testing performance.
bool is_skip_;
// Input shared memory and mapping.
base::UnsafeSharedMemoryRegion in_shm_;
base::WritableSharedMemoryMapping in_shm_mapping_;
// Input DMA buffer file descriptor.
base::ScopedFD in_dmabuf_fd_;
// Output video frame from the hardware decoder.
std::unique_ptr<gfx::GpuMemoryBuffer> hw_out_gmb_;
scoped_refptr<media::VideoFrame> hw_out_dmabuf_frame_;
scoped_refptr<media::VideoFrame> hw_out_frame_;
// Output video frame from the software decoder.
scoped_refptr<media::VideoFrame> sw_out_frame_;
// This should be the first member to get destroyed because |decoder_|
// potentially uses other members in the JpegClient instance. For example,
// as decode tasks finish in a new thread spawned by |decoder_|,
// |hw_out_frame_| can be accessed.
std::unique_ptr<MjpegDecodeAccelerator> decoder_;
DISALLOW_COPY_AND_ASSIGN(JpegClient);
};
JpegClient::JpegClient(
const std::vector<ParsedJpegImage*>& test_image_files,
std::unique_ptr<media::test::ClientStateNotification<ClientState>> note,
bool use_dmabuf,
bool is_skip)
: test_image_files_(test_image_files),
state_(CS_CREATED),
note_(std::move(note)),
use_dmabuf_(use_dmabuf),
is_skip_(is_skip) {}
JpegClient::~JpegClient() {}
void JpegClient::CreateJpegDecoder() {
decoder_ = nullptr;
auto jda_factories =
GpuMjpegDecodeAcceleratorFactory::GetAcceleratorFactories();
if (jda_factories.empty()) {
LOG(ERROR) << "MjpegDecodeAccelerator not supported on this platform.";
SetState(CS_ERROR);
return;
}
for (auto& create_jda_func : jda_factories) {
decoder_ =
std::move(create_jda_func).Run(base::ThreadTaskRunnerHandle::Get());
if (decoder_)
break;
}
if (!decoder_) {
LOG(ERROR) << "Failed to create MjpegDecodeAccelerator.";
SetState(CS_ERROR);
return;
}
if (!decoder_->Initialize(this)) {
LOG(ERROR) << "MjpegDecodeAccelerator::Initialize() failed";
SetState(CS_ERROR);
return;
}
SetState(CS_INITIALIZED);
}
void JpegClient::VideoFrameReady(int32_t task_id) {
if (is_skip_) {
SetState(CS_DECODE_PASS);
return;
}
if (!GetSoftwareDecodeResult(task_id)) {
SetState(CS_ERROR);
return;
}
if (use_dmabuf_) {
// Map and convert the output frame to I420.
scoped_refptr<media::VideoFrame> mapped_frame = g_env->MapToVideoFrame(
hw_out_gmb_.get(), hw_out_dmabuf_frame_->layout(),
hw_out_dmabuf_frame_->visible_rect());
ASSERT_TRUE(mapped_frame);
hw_out_frame_ = media::test::ConvertVideoFrame(mapped_frame.get(),
media::PIXEL_FORMAT_I420);
ASSERT_TRUE(hw_out_frame_);
}
if (g_save_to_file) {
SaveToFile(task_id, hw_out_frame_, "_hw");
SaveToFile(task_id, sw_out_frame_, "_sw");
}
double difference = GetMeanAbsoluteDifference();
if (difference <= kDecodeSimilarityThreshold) {
SetState(CS_DECODE_PASS);
} else {
LOG(ERROR) << "The mean absolute difference between software and hardware "
<< "decode is " << difference;
SetState(CS_ERROR);
}
}
void JpegClient::NotifyError(int32_t task_id,
MjpegDecodeAccelerator::Error error) {
LOG(ERROR) << "Notifying of error " << error << " for task id " << task_id;
SetState(CS_ERROR);
}
void JpegClient::PrepareMemory(int32_t task_id) {
ParsedJpegImage* image_file = test_image_files_[task_id];
if (use_dmabuf_) {
in_dmabuf_fd_ = g_env->CreateDmaBufFd(image_file->data_str.data(),
image_file->data_str.size());
ASSERT_TRUE(in_dmabuf_fd_.is_valid());
// TODO(kamesan): create test cases for more formats when they're used.
std::vector<media::VideoPixelFormat> supported_formats =
g_env->GetSupportedDmaBufFormats();
ASSERT_FALSE(supported_formats.empty());
hw_out_dmabuf_frame_ = g_env->CreateDmaBufVideoFrame(
supported_formats[0], image_file->coded_size, image_file->visible_size,
&hw_out_gmb_);
ASSERT_TRUE(hw_out_dmabuf_frame_);
ASSERT_TRUE(hw_out_gmb_);
} else {
in_shm_mapping_ = base::WritableSharedMemoryMapping();
in_shm_ =
base::UnsafeSharedMemoryRegion::Create(image_file->data_str.size());
ASSERT_TRUE(in_shm_.IsValid());
in_shm_mapping_ = in_shm_.Map();
ASSERT_TRUE(in_shm_mapping_.IsValid());
memcpy(in_shm_mapping_.memory(), image_file->data_str.data(),
image_file->data_str.size());
// MJDA only supports I420 format for SHM output buffer.
hw_out_frame_ = g_env->CreateShmVideoFrame(media::PIXEL_FORMAT_I420,
image_file->coded_size,
image_file->visible_size);
ASSERT_TRUE(hw_out_frame_);
}
sw_out_frame_ = g_env->CreateShmVideoFrame(media::PIXEL_FORMAT_I420,
image_file->coded_size,
image_file->visible_size);
ASSERT_TRUE(sw_out_frame_);
}
void JpegClient::SetState(ClientState new_state) {
DVLOG(2) << "Changing state " << state_ << "->" << new_state;
note_->Notify(new_state);
state_ = new_state;
}
void JpegClient::SaveToFile(int32_t task_id,
scoped_refptr<media::VideoFrame> in_frame,
const std::string& suffix) {
LOG_ASSERT(in_frame);
ParsedJpegImage* image_file = test_image_files_[task_id];
// First convert to ARGB format. Note that in our case, the coded size and the
// visible size will be the same.
scoped_refptr<media::VideoFrame> argb_out_frame =
media::VideoFrame::CreateFrame(
media::VideoPixelFormat::PIXEL_FORMAT_ARGB, image_file->visible_size,
gfx::Rect(image_file->visible_size), image_file->visible_size,
base::TimeDelta());
LOG_ASSERT(argb_out_frame);
LOG_ASSERT(in_frame->visible_rect() == argb_out_frame->visible_rect());
// Note that we use J420ToARGB instead of I420ToARGB so that the
// kYuvJPEGConstants YUV-to-RGB conversion matrix is used.
const int conversion_status =
libyuv::J420ToARGB(in_frame->data(media::VideoFrame::kYPlane),
in_frame->stride(media::VideoFrame::kYPlane),
in_frame->data(media::VideoFrame::kUPlane),
in_frame->stride(media::VideoFrame::kUPlane),
in_frame->data(media::VideoFrame::kVPlane),
in_frame->stride(media::VideoFrame::kVPlane),
argb_out_frame->data(media::VideoFrame::kARGBPlane),
argb_out_frame->stride(media::VideoFrame::kARGBPlane),
argb_out_frame->visible_rect().width(),
argb_out_frame->visible_rect().height());
LOG_ASSERT(conversion_status == 0);
// Save as a PNG.
std::vector<uint8_t> png_output;
const bool png_encode_status = gfx::PNGCodec::Encode(
argb_out_frame->data(media::VideoFrame::kARGBPlane),
gfx::PNGCodec::FORMAT_BGRA, argb_out_frame->visible_rect().size(),
argb_out_frame->stride(media::VideoFrame::kARGBPlane),
true, /* discard_transparency */
std::vector<gfx::PNGCodec::Comment>(), &png_output);
LOG_ASSERT(png_encode_status);
const base::FilePath in_filename(image_file->filename());
const base::FilePath out_filename =
in_filename.ReplaceExtension(".png").InsertBeforeExtension(suffix);
const int size = base::checked_cast<int>(png_output.size());
const int file_written_bytes = base::WriteFile(
out_filename, reinterpret_cast<char*>(png_output.data()), size);
LOG_ASSERT(file_written_bytes == size);
}
double JpegClient::GetMeanAbsoluteDifference() {
double mean_abs_difference = 0;
size_t num_samples = 0;
const size_t planes[] = {media::VideoFrame::kYPlane,
media::VideoFrame::kUPlane,
media::VideoFrame::kVPlane};
for (size_t plane : planes) {
const uint8_t* hw_data = hw_out_frame_->data(plane);
const uint8_t* sw_data = sw_out_frame_->data(plane);
LOG_ASSERT(hw_out_frame_->visible_rect() == sw_out_frame_->visible_rect());
const size_t rows =
media::VideoFrame::Rows(plane, media::PIXEL_FORMAT_I420,
hw_out_frame_->visible_rect().height());
const size_t columns = media::VideoFrame::Columns(
plane, media::PIXEL_FORMAT_I420, hw_out_frame_->visible_rect().width());
const int hw_stride = hw_out_frame_->stride(plane);
const int sw_stride = sw_out_frame_->stride(plane);
for (size_t row = 0; row < rows; ++row) {
for (size_t col = 0; col < columns; ++col)
mean_abs_difference += std::abs(hw_data[col] - sw_data[col]);
hw_data += hw_stride;
sw_data += sw_stride;
}
num_samples += rows * columns;
}
LOG_ASSERT(num_samples > 0);
mean_abs_difference /= num_samples;
return mean_abs_difference;
}
void JpegClient::StartDecode(int32_t task_id, bool do_prepare_memory) {
ASSERT_LT(base::checked_cast<size_t>(task_id), test_image_files_.size());
ParsedJpegImage* image_file = test_image_files_[task_id];
if (do_prepare_memory)
PrepareMemory(task_id);
if (use_dmabuf_) {
base::ScopedFD duped_in_dmabuf_fd(HANDLE_EINTR(dup(in_dmabuf_fd_.get())));
ASSERT_TRUE(duped_in_dmabuf_fd.is_valid());
decoder_->Decode(task_id, std::move(duped_in_dmabuf_fd),
image_file->data_str.size(), 0 /* src_offset */,
hw_out_dmabuf_frame_);
} else {
base::subtle::PlatformSharedMemoryRegion dup_region =
base::UnsafeSharedMemoryRegion::TakeHandleForSerialization(
in_shm_.Duplicate());
ASSERT_EQ(dup_region.GetSize(), image_file->data_str.size());
media::BitstreamBuffer bitstream_buffer(task_id, std::move(dup_region),
dup_region.GetSize());
decoder_->Decode(std::move(bitstream_buffer), hw_out_frame_);
}
}
bool JpegClient::GetSoftwareDecodeResult(int32_t task_id) {
DCHECK(sw_out_frame_->IsMappable());
DCHECK_EQ(sw_out_frame_->format(), media::PIXEL_FORMAT_I420);
ParsedJpegImage* image_file = test_image_files_[task_id];
if (libyuv::ConvertToI420(
reinterpret_cast<const uint8_t*>(image_file->data_str.data()),
image_file->data_str.size(),
sw_out_frame_->data(media::VideoFrame::kYPlane),
sw_out_frame_->stride(media::VideoFrame::kYPlane),
sw_out_frame_->data(media::VideoFrame::kUPlane),
sw_out_frame_->stride(media::VideoFrame::kUPlane),
sw_out_frame_->data(media::VideoFrame::kVPlane),
sw_out_frame_->stride(media::VideoFrame::kVPlane), 0, 0,
sw_out_frame_->visible_rect().width(),
sw_out_frame_->visible_rect().height(),
sw_out_frame_->visible_rect().width(),
sw_out_frame_->visible_rect().height(), libyuv::kRotate0,
libyuv::FOURCC_MJPG) != 0) {
LOG(ERROR) << "Software decode " << image_file->filename() << " failed.";
return false;
}
return true;
}
// This class holds a |client| that will be deleted on |task_runner|. This is
// necessary because |client->decoder_| expects to be destroyed on the thread on
// which it was created.
class ScopedJpegClient {
public:
ScopedJpegClient(scoped_refptr<base::SingleThreadTaskRunner> task_runner,
std::unique_ptr<JpegClient> client)
: task_runner_(task_runner), client_(std::move(client)) {}
~ScopedJpegClient() {
task_runner_->DeleteSoon(FROM_HERE, std::move(client_));
}
JpegClient* client() const { return client_.get(); }
private:
scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
std::unique_ptr<JpegClient> client_;
DISALLOW_COPY_AND_ASSIGN(ScopedJpegClient);
};
class MjpegDecodeAcceleratorTest : public ::testing::TestWithParam<bool> {
protected:
MjpegDecodeAcceleratorTest() = default;
void TestDecode(const std::vector<ParsedJpegImage*>& images,
const std::vector<ClientState>& expected_status,
size_t num_concurrent_decoders = 1);
void PerfDecodeByJDA(int decode_times,
const std::vector<ParsedJpegImage*>& images);
void PerfDecodeBySW(int decode_times,
const std::vector<ParsedJpegImage*>& images);
protected:
DISALLOW_COPY_AND_ASSIGN(MjpegDecodeAcceleratorTest);
};
void MjpegDecodeAcceleratorTest::TestDecode(
const std::vector<ParsedJpegImage*>& images,
const std::vector<ClientState>& expected_status,
size_t num_concurrent_decoders) {
LOG_ASSERT(images.size() >= expected_status.size());
base::Thread decoder_thread("DecoderThread");
ASSERT_TRUE(decoder_thread.Start());
std::vector<std::unique_ptr<ScopedJpegClient>> scoped_clients;
for (size_t i = 0; i < num_concurrent_decoders; i++) {
auto client = std::make_unique<JpegClient>(
images,
std::make_unique<media::test::ClientStateNotification<ClientState>>(),
GetParam() /* use_dmabuf */, false /* is_skip */);
scoped_clients.emplace_back(
new ScopedJpegClient(decoder_thread.task_runner(), std::move(client)));
decoder_thread.task_runner()->PostTask(
FROM_HERE,
base::BindOnce(&JpegClient::CreateJpegDecoder,
base::Unretained(scoped_clients.back()->client())));
ASSERT_EQ(scoped_clients.back()->client()->note()->Wait(), CS_INITIALIZED);
}
for (size_t index = 0; index < images.size(); index++) {
for (const auto& scoped_client : scoped_clients) {
decoder_thread.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&JpegClient::StartDecode,
base::Unretained(scoped_client->client()),
index, true /* do_prepare_memory */));
}
if (index < expected_status.size()) {
for (const auto& scoped_client : scoped_clients) {
ASSERT_EQ(scoped_client->client()->note()->Wait(),
expected_status[index]);
}
}
}
}
void MjpegDecodeAcceleratorTest::PerfDecodeByJDA(
int decode_times,
const std::vector<ParsedJpegImage*>& images) {
LOG_ASSERT(images.size() == 1);
base::Thread decoder_thread("DecoderThread");
ASSERT_TRUE(decoder_thread.Start());
auto client = std::make_unique<JpegClient>(
images,
std::make_unique<media::test::ClientStateNotification<ClientState>>(),
GetParam() /* use_dmabuf */, true /* is_skip */);
auto scoped_client = std::make_unique<ScopedJpegClient>(
decoder_thread.task_runner(), std::move(client));
decoder_thread.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&JpegClient::CreateJpegDecoder,
base::Unretained(scoped_client->client())));
ASSERT_EQ(scoped_client->client()->note()->Wait(), CS_INITIALIZED);
const int32_t task_id = 0;
scoped_client->client()->PrepareMemory(task_id);
const base::ElapsedTimer timer;
for (int index = 0; index < decode_times; index++) {
decoder_thread.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&JpegClient::StartDecode,
base::Unretained(scoped_client->client()),
task_id, false /* do_prepare_memory */));
ASSERT_EQ(scoped_client->client()->note()->Wait(), CS_DECODE_PASS);
}
const base::TimeDelta elapsed_time = timer.Elapsed();
LOG(INFO) << elapsed_time << " for " << decode_times
<< " iterations (avg: " << elapsed_time / decode_times << ") -- "
<< images[0]->visible_size.ToString() << ", ("
<< images[0]->visible_size.GetArea() << " pixels) "
<< images[0]->filename();
}
void MjpegDecodeAcceleratorTest::PerfDecodeBySW(
int decode_times,
const std::vector<ParsedJpegImage*>& images) {
LOG_ASSERT(images.size() == 1);
std::unique_ptr<JpegClient> client = std::make_unique<JpegClient>(
images,
std::make_unique<media::test::ClientStateNotification<ClientState>>(),
false /* use_dmabuf */, true /* is_skip */);
const int32_t task_id = 0;
client->PrepareMemory(task_id);
const base::ElapsedTimer timer;
for (int index = 0; index < decode_times; index++)
client->GetSoftwareDecodeResult(task_id);
const base::TimeDelta elapsed_time = timer.Elapsed();
LOG(INFO) << elapsed_time << " for " << decode_times
<< " iterations (avg: " << elapsed_time / decode_times << ") -- "
<< images[0]->visible_size.ToString() << ", ("
<< images[0]->visible_size.GetArea() << " pixels) "
<< images[0]->filename();
}
// Returns a media::VideoFrame that contains YUV data using 4:2:0 subsampling.
// The visible size is 3x3, and the coded size is 4x4 which is 3x3 rounded up to
// the next even dimensions.
scoped_refptr<media::VideoFrame> GetTestDecodedData() {
scoped_refptr<media::VideoFrame> frame =
media::VideoFrame::CreateZeroInitializedFrame(
media::PIXEL_FORMAT_I420, gfx::Size(4, 4) /* coded_size */,
gfx::Rect(3, 3) /* visible_rect */,
gfx::Size(3, 3) /* natural_size */, base::TimeDelta());
LOG_ASSERT(frame.get());
uint8_t* y_data = frame->data(media::VideoFrame::kYPlane);
int y_stride = frame->stride(media::VideoFrame::kYPlane);
uint8_t* u_data = frame->data(media::VideoFrame::kUPlane);
int u_stride = frame->stride(media::VideoFrame::kUPlane);
uint8_t* v_data = frame->data(media::VideoFrame::kVPlane);
int v_stride = frame->stride(media::VideoFrame::kVPlane);
// Data for the Y plane.
memcpy(&y_data[0 * y_stride], "\x01\x02\x03", 3);
memcpy(&y_data[1 * y_stride], "\x04\x05\x06", 3);
memcpy(&y_data[2 * y_stride], "\x07\x08\x09", 3);
// Data for the U plane.
memcpy(&u_data[0 * u_stride], "\x0A\x0B", 2);
memcpy(&u_data[1 * u_stride], "\x0C\x0D", 2);
// Data for the V plane.
memcpy(&v_data[0 * v_stride], "\x0E\x0F", 2);
memcpy(&v_data[1 * v_stride], "\x10\x11", 2);
return frame;
}
TEST(JpegClientTest, GetMeanAbsoluteDifference) {
JpegClient client(std::vector<ParsedJpegImage*>(), nullptr, false, false);
client.hw_out_frame_ = GetTestDecodedData();
client.sw_out_frame_ = GetTestDecodedData();
uint8_t* y_data = client.sw_out_frame_->data(media::VideoFrame::kYPlane);
const int y_stride = client.sw_out_frame_->stride(media::VideoFrame::kYPlane);
uint8_t* u_data = client.sw_out_frame_->data(media::VideoFrame::kUPlane);
const int u_stride = client.sw_out_frame_->stride(media::VideoFrame::kUPlane);
uint8_t* v_data = client.sw_out_frame_->data(media::VideoFrame::kVPlane);
const int v_stride = client.sw_out_frame_->stride(media::VideoFrame::kVPlane);
// Change some visible data in the software decoding result.
double expected_abs_mean_diff = 0;
y_data[0] = 0xF0; // Previously 0x01.
expected_abs_mean_diff += 0xF0 - 0x01;
y_data[y_stride + 1] = 0x8A; // Previously 0x05.
expected_abs_mean_diff += 0x8A - 0x05;
u_data[u_stride] = 0x02; // Previously 0x0C.
expected_abs_mean_diff += 0x0C - 0x02;
v_data[v_stride + 1] = 0x54; // Previously 0x11.
expected_abs_mean_diff += 0x54 - 0x11;
expected_abs_mean_diff /= 3 * 3 + 2 * 2 * 2;
constexpr double kMaxAllowedDifference = 1e-7;