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
gpu / command_buffer / service / shared_image / video_image_reader_image_backing.cc [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gpu/command_buffer/service/shared_image/video_image_reader_image_backing.h"
#include <utility>
#include "base/android/android_hardware_buffer_compat.h"
#include "base/android/scoped_hardware_buffer_fence_sync.h"
#include "base/android/scoped_hardware_buffer_handle.h"
#include "base/debug/dump_without_crashing.h"
#include "base/task/bind_post_task.h"
#include "base/task/single_thread_task_runner.h"
#include "components/viz/common/gpu/vulkan_context_provider.h"
#include "gpu/command_buffer/common/shared_image_usage.h"
#include "gpu/command_buffer/service/abstract_texture_android.h"
#include "gpu/command_buffer/service/ahardwarebuffer_utils.h"
#include "gpu/command_buffer/service/dawn_context_provider.h"
#include "gpu/command_buffer/service/memory_tracking.h"
#include "gpu/command_buffer/service/shared_context_state.h"
#include "gpu/command_buffer/service/shared_image/dawn_ahardwarebuffer_image_representation.h"
#include "gpu/command_buffer/service/shared_image/shared_image_representation.h"
#include "gpu/command_buffer/service/shared_image/skia_gl_image_representation.h"
#include "gpu/command_buffer/service/shared_image/skia_vk_android_image_representation.h"
#include "gpu/command_buffer/service/skia_utils.h"
#include "gpu/command_buffer/service/texture_manager.h"
#include "gpu/command_buffer/service/texture_owner.h"
#include "gpu/vulkan/vulkan_device_queue.h"
#include "gpu/vulkan/vulkan_fence_helper.h"
#include "gpu/vulkan/vulkan_function_pointers.h"
#include "gpu/vulkan/vulkan_image.h"
#include "gpu/vulkan/vulkan_implementation.h"
#include "gpu/vulkan/vulkan_util.h"
#include "third_party/skia/include/gpu/ganesh/GrBackendSemaphore.h"
#include "third_party/skia/include/gpu/ganesh/GrBackendSurface.h"
#include "third_party/skia/include/gpu/ganesh/vk/GrVkBackendSurface.h"
#include "third_party/skia/include/private/chromium/GrPromiseImageTexture.h"
#include "ui/gl/android/egl_fence_utils.h"
#include "ui/gl/gl_utils.h"
#include "ui/gl/scoped_restore_texture.h"
#if BUILDFLAG(SKIA_USE_DAWN)
#include "third_party/skia/include/gpu/graphite/dawn/DawnTypes.h"
#endif
namespace gpu {
namespace {
void CreateAndBindEglImageFromAHB(AHardwareBuffer* buffer, GLuint service_id) {
DCHECK(buffer);
AHardwareBuffer_Desc desc;
base::AndroidHardwareBufferCompat::GetInstance().Describe(buffer, &desc);
auto egl_image = CreateEGLImageFromAHardwareBuffer(buffer);
if (egl_image.is_valid()) {
// We should never alter gl binding without updating state tracking, which
// we can't do here, so restore previous after we done.
gl::ScopedRestoreTexture scoped_restore(gl::g_current_gl_context,
GL_TEXTURE_EXTERNAL_OES);
glBindTexture(GL_TEXTURE_EXTERNAL_OES, service_id);
glEGLImageTargetTexture2DOES(GL_TEXTURE_EXTERNAL_OES, egl_image.get());
} else {
LOG(ERROR) << "Failed to create EGL image ";
}
}
class VideoImage : public base::RefCounted<VideoImage> {
public:
VideoImage() = default;
VideoImage(AHardwareBuffer* buffer)
: handle_(base::android::ScopedHardwareBufferHandle::Create(buffer)) {}
std::unique_ptr<base::android::ScopedHardwareBufferFenceSync>
GetAHardwareBuffer() {
if (!handle_.is_valid())
return nullptr;
return std::make_unique<ScopedHardwareBufferFenceSyncImpl>(
this, base::android::ScopedHardwareBufferHandle::Create(handle_.get()));
}
base::ScopedFD TakeEndReadFence() { return std::move(end_read_fence_); }
protected:
private:
friend class base::RefCounted<VideoImage>;
class ScopedHardwareBufferFenceSyncImpl
: public base::android::ScopedHardwareBufferFenceSync {
public:
ScopedHardwareBufferFenceSyncImpl(
scoped_refptr<VideoImage> image,
base::android::ScopedHardwareBufferHandle handle)
: ScopedHardwareBufferFenceSync(std::move(handle),
base::ScopedFD(),
base::ScopedFD()),
image_(std::move(image)) {}
~ScopedHardwareBufferFenceSyncImpl() override = default;
void SetReadFence(base::ScopedFD fence_fd) override {
image_->end_read_fence_ =
gl::MergeFDs(std::move(image_->end_read_fence_), std::move(fence_fd));
}
private:
scoped_refptr<VideoImage> image_;
};
~VideoImage() = default;
base::android::ScopedHardwareBufferHandle handle_;
// This fence should be waited upon to ensure that the reader is finished
// reading from the buffer.
base::ScopedFD end_read_fence_;
};
} // namespace
VideoImageReaderImageBacking::VideoImageReaderImageBacking(
const Mailbox& mailbox,
const gfx::Size& size,
const gfx::ColorSpace color_space,
GrSurfaceOrigin surface_origin,
SkAlphaType alpha_type,
std::string debug_label,
scoped_refptr<StreamTextureSharedImageInterface> stream_texture_sii,
scoped_refptr<SharedContextState> context_state,
scoped_refptr<RefCountedLock> drdc_lock)
: AndroidVideoImageBacking(mailbox,
size,
color_space,
surface_origin,
alpha_type,
std::move(debug_label),
!!drdc_lock),
RefCountedLockHelperDrDc(std::move(drdc_lock)),
stream_texture_sii_(std::move(stream_texture_sii)),
gpu_main_task_runner_(base::SingleThreadTaskRunner::GetCurrentDefault()) {
DCHECK(stream_texture_sii_);
context_lost_helper_ = std::make_unique<ContextLostObserverHelper>(
std::move(context_state), stream_texture_sii_, gpu_main_task_runner_,
GetDrDcLock());
}
VideoImageReaderImageBacking::~VideoImageReaderImageBacking() {
// This backing is created on gpu main thread but can be destroyed on DrDc
// thread if the last representation was on DrDc thread.
// |context_lost_helper_| is destroyed here by posting task to the
// |gpu_main_thread_| to ensure that resources are cleaned up correvtly on
// the gpu main thread.
if (!gpu_main_task_runner_->RunsTasksInCurrentSequence()) {
auto helper_destruction_cb = base::BindPostTask(
gpu_main_task_runner_,
base::BindOnce(
[](std::unique_ptr<ContextLostObserverHelper> context_lost_helper,
scoped_refptr<StreamTextureSharedImageInterface>
stream_texture_sii) {
// Reset the |stream_texture_sii| first so that its ref in the
// |context_lost_helper| gets reset under the DrDc lock.
stream_texture_sii.reset();
context_lost_helper.reset();
}));
std::move(helper_destruction_cb)
.Run(std::move(context_lost_helper_), std::move(stream_texture_sii_));
}
}
// Representation of VideoImageReaderImageBacking as a GL Texture.
class VideoImageReaderImageBacking::GLTextureVideoImageRepresentation
: public GLTextureImageRepresentation,
public RefCountedLockHelperDrDc {
public:
GLTextureVideoImageRepresentation(
SharedImageManager* manager,
VideoImageReaderImageBacking* backing,
MemoryTypeTracker* tracker,
std::unique_ptr<AbstractTextureAndroid> texture,
scoped_refptr<RefCountedLock> drdc_lock)
: GLTextureImageRepresentation(manager, backing, tracker),
RefCountedLockHelperDrDc(std::move(drdc_lock)),
texture_(std::move(texture)) {}
~GLTextureVideoImageRepresentation() override {
if (!has_context()) {
texture_->NotifyOnContextLost();
}
}
// Disallow copy and assign.
GLTextureVideoImageRepresentation(const GLTextureVideoImageRepresentation&) =
delete;
GLTextureVideoImageRepresentation& operator=(
const GLTextureVideoImageRepresentation&) = delete;
gles2::Texture* GetTexture(int plane_index) override {
DCHECK_EQ(plane_index, 0);
auto* texture = gles2::Texture::CheckedCast(texture_->GetTextureBase());
DCHECK(texture);
return texture;
}
bool BeginAccess(GLenum mode) override {
// This representation should only be called for read.
DCHECK(mode == GL_SHARED_IMAGE_ACCESS_MODE_READ_CHROMIUM);
auto* video_backing = static_cast<VideoImageReaderImageBacking*>(backing());
{
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
scoped_hardware_buffer_ =
video_backing->stream_texture_sii_->GetAHardwareBuffer();
}
if (!scoped_hardware_buffer_) {
LOG(ERROR) << "Failed to get the hardware buffer.";
return false;
}
CreateAndBindEglImageFromAHB(scoped_hardware_buffer_->buffer(),
texture_->service_id());
return true;
}
void EndAccess() override {
DCHECK(scoped_hardware_buffer_);
base::ScopedFD sync_fd = gl::CreateEglFenceAndExportFd();
scoped_hardware_buffer_->SetReadFence(std::move(sync_fd));
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
scoped_hardware_buffer_ = nullptr;
}
private:
std::unique_ptr<AbstractTextureAndroid> texture_;
std::unique_ptr<base::android::ScopedHardwareBufferFenceSync>
scoped_hardware_buffer_;
};
// Representation of VideoImageReaderImageBacking as a GL Texture.
class VideoImageReaderImageBacking::GLTexturePassthroughVideoImageRepresentation
: public GLTexturePassthroughImageRepresentation,
public RefCountedLockHelperDrDc {
public:
GLTexturePassthroughVideoImageRepresentation(
SharedImageManager* manager,
VideoImageReaderImageBacking* backing,
MemoryTypeTracker* tracker,
std::unique_ptr<AbstractTextureAndroid> abstract_texture,
scoped_refptr<RefCountedLock> drdc_lock)
: GLTexturePassthroughImageRepresentation(manager, backing, tracker),
RefCountedLockHelperDrDc(std::move(drdc_lock)),
abstract_texture_(std::move(abstract_texture)),
passthrough_texture_(gles2::TexturePassthrough::CheckedCast(
abstract_texture_->GetTextureBase())) {
// TODO(crbug.com/40166788): Remove this CHECK.
CHECK(passthrough_texture_);
}
~GLTexturePassthroughVideoImageRepresentation() override {
if (!has_context()) {
abstract_texture_->NotifyOnContextLost();
}
}
// Disallow copy and assign.
GLTexturePassthroughVideoImageRepresentation(
const GLTexturePassthroughVideoImageRepresentation&) = delete;
GLTexturePassthroughVideoImageRepresentation& operator=(
const GLTexturePassthroughVideoImageRepresentation&) = delete;
const scoped_refptr<gles2::TexturePassthrough>& GetTexturePassthrough(
int plane_index) override {
DCHECK_EQ(plane_index, 0);
return passthrough_texture_;
}
bool BeginAccess(GLenum mode) override {
// This representation should only be called for read.
DCHECK(mode == GL_SHARED_IMAGE_ACCESS_MODE_READ_CHROMIUM);
auto* video_backing = static_cast<VideoImageReaderImageBacking*>(backing());
{
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
scoped_hardware_buffer_ =
video_backing->stream_texture_sii_->GetAHardwareBuffer();
}
if (!scoped_hardware_buffer_) {
LOG(ERROR) << "Failed to get the hardware buffer.";
return false;
}
CreateAndBindEglImageFromAHB(scoped_hardware_buffer_->buffer(),
passthrough_texture_->service_id());
return true;
}
void EndAccess() override {
DCHECK(scoped_hardware_buffer_);
base::ScopedFD sync_fd = gl::CreateEglFenceAndExportFd();
scoped_hardware_buffer_->SetReadFence(std::move(sync_fd));
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
scoped_hardware_buffer_ = nullptr;
}
private:
std::unique_ptr<AbstractTextureAndroid> abstract_texture_;
scoped_refptr<gles2::TexturePassthrough> passthrough_texture_;
std::unique_ptr<base::android::ScopedHardwareBufferFenceSync>
scoped_hardware_buffer_;
};
#if BUILDFLAG(SKIA_USE_DAWN)
// TODO(crbug.com/41488897): Determine what code can be shared between this
// class and DawnAHardwareBufferImageRepresentation once (a) initial video
// playback support is in and (b) we have fixed
// DawnAHardwareBufferImageRepresentation to not always do write accesses. In
// the limit, it might be feasible for this class to wrap
// DawnAHardwareBufferImageRepresentation. Otherwise, we can extract a shared
// inner class out of the implementation here and that in
// DawnAHBImageRepresentation.
class VideoImageReaderImageBacking::SkiaGraphiteDawnImageRepresentation
: public SkiaGraphiteImageRepresentation,
public RefCountedLockHelperDrDc {
public:
SkiaGraphiteDawnImageRepresentation(
SharedImageManager* manager,
VideoImageReaderImageBacking* backing,
MemoryTypeTracker* tracker,
scoped_refptr<SharedContextState> context_state,
scoped_refptr<RefCountedLock> drdc_lock)
: SkiaGraphiteImageRepresentation(manager, backing, tracker),
RefCountedLockHelperDrDc(std::move(drdc_lock)),
context_state_(context_state) {}
~SkiaGraphiteDawnImageRepresentation() override = default;
std::vector<sk_sp<SkSurface>> BeginWriteAccess(
const SkSurfaceProps& surface_props,
const gfx::Rect& update_rect) override {
// Writes are not intended to be used with video backed representations.
NOTIMPLEMENTED();
return {};
}
std::vector<skgpu::graphite::BackendTexture> BeginWriteAccess() override {
// Writes are not intended to be used with video backed representations.
NOTIMPLEMENTED();
return {};
}
void EndWriteAccess() override { NOTIMPLEMENTED(); }
std::vector<skgpu::graphite::BackendTexture> BeginReadAccess() override {
DCHECK(!scoped_hardware_buffer_);
// Obtain the AHB for the current video frame.
{
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
scoped_hardware_buffer_ =
video_backing()->stream_texture_sii_->GetAHardwareBuffer();
}
if (!scoped_hardware_buffer_) {
LOG(ERROR) << "Failed to get the hardware buffer.";
return {};
}
DCHECK(scoped_hardware_buffer_->buffer());
// Set the Dawn texture and SharedTextureMemory parameters.
wgpu::TextureFormat webgpu_format = wgpu::TextureFormat::External;
auto device = context_state_->dawn_context_provider()->GetDevice();
wgpu::TextureDescriptor texture_descriptor;
texture_descriptor.format = webgpu_format;
texture_descriptor.usage = wgpu::TextureUsage::TextureBinding;
texture_descriptor.dimension = wgpu::TextureDimension::e2D;
// NOTE: size() is not guaranteed to match the size of the AHB. The size of
// the AHB must be used here, as the Dawn texture descriptor's size must
// match that of the SharedTextureMemory (which comes from the AHB).
AHardwareBuffer_Desc ahb_desc = {};
base::AndroidHardwareBufferCompat::GetInstance().Describe(
scoped_hardware_buffer_->buffer(), &ahb_desc);
texture_descriptor.size = {ahb_desc.width, ahb_desc.height, 1};
texture_descriptor.mipLevelCount = 1;
texture_descriptor.sampleCount = 1;
wgpu::DawnTextureInternalUsageDescriptor internalDesc;
internalDesc.internalUsage = texture_descriptor.usage;
texture_descriptor.nextInChain = &internalDesc;
wgpu::SharedTextureMemoryBeginAccessDescriptor begin_access_desc = {};
CHECK(IsCleared());
begin_access_desc.initialized = true;
wgpu::SharedTextureMemoryVkImageLayoutBeginState begin_layout{};
// TODO(crbug.com/327111284): Track layouts correctly.
begin_layout.oldLayout = VK_IMAGE_LAYOUT_UNDEFINED;
begin_layout.newLayout = VK_IMAGE_LAYOUT_UNDEFINED;
begin_access_desc.nextInChain = &begin_layout;
wgpu::SharedFence shared_fence;
// Pass 1 as the signaled value for the binary semaphore
// (Dawn's SharedTextureMemoryVk verifies that this is the value passed).
const uint64_t signaled_value = 1;
base::ScopedFD sync_fd = scoped_hardware_buffer_->TakeFence();
if (sync_fd.is_valid()) {
wgpu::SharedFenceSyncFDDescriptor sync_fd_desc;
// NOTE: There is no ownership transfer here, as Dawn internally dup()s
// the passed-in handle.
sync_fd_desc.handle = sync_fd.get();
wgpu::SharedFenceDescriptor fence_desc;
fence_desc.nextInChain = &sync_fd_desc;
shared_fence = device.ImportSharedFence(&fence_desc);
begin_access_desc.fenceCount = 1;
begin_access_desc.fences = &shared_fence;
begin_access_desc.signaledValues = &signaled_value;
}
// Create the SharedTextureMemory that will wrap this AHB.
wgpu::SharedTextureMemoryDescriptor desc = {};
wgpu::SharedTextureMemoryAHardwareBufferDescriptor
stm_ahardwarebuffer_desc = {};
stm_ahardwarebuffer_desc.handle = scoped_hardware_buffer_->buffer();
stm_ahardwarebuffer_desc.useExternalFormat = true;
desc.nextInChain = &stm_ahardwarebuffer_desc;
shared_texture_memory_ = device.ImportSharedTextureMemory(&desc);
// Create the Dawn texture.
texture_ = shared_texture_memory_.CreateTexture(&texture_descriptor);
if (shared_texture_memory_.BeginAccess(texture_, &begin_access_desc) !=
wgpu::Status::Success) {
LOG(ERROR) << "Failed to begin access for texture";
// TODO(crbug.com/377489264): Remove after ensuring that all samsung
// devices which are failing AHB size vs VkImage size checks have the
// check disabled.
base::debug::DumpWithoutCrashing();
ResetStorage();
return {};
}
// Obtain the YCbCr info from the device.
wgpu::AHardwareBufferProperties ahb_properties;
if (!device.GetAHardwareBufferProperties(scoped_hardware_buffer_->buffer(),
&ahb_properties)) {
LOG(ERROR) << "Failed to get the ycbcr info";
EndReadAccess();
return {};
}
// Wrap the Dawn texture in a Skia texture, passing the YCbCr info.
skgpu::graphite::DawnTextureInfo dawn_texture_info(
/*sampleCount=*/1, skgpu::Mipmapped::kNo, webgpu_format, webgpu_format,
texture_descriptor.usage, wgpu::TextureAspect::All, /*slice=*/0,
ahb_properties.yCbCrInfo);
return {skgpu::graphite::BackendTextures::MakeDawn(
SkISize::Make(ahb_desc.width, ahb_desc.height), dawn_texture_info,
texture_.Get())};
}
void EndReadAccess() override {
DCHECK(scoped_hardware_buffer_);
wgpu::SharedTextureMemoryEndAccessState end_access_desc = {};
wgpu::SharedTextureMemoryVkImageLayoutEndState end_layout{};
end_access_desc.nextInChain = &end_layout;
if (shared_texture_memory_.EndAccess(texture_, &end_access_desc) !=
wgpu::Status::Success) {
// NOTE: Dawn ensures that `end_access_desc.fenceCount` is set to zero in
// the case of an error, so there is no need to early-out here.
LOG(ERROR) << "Failed to end access for texture";
}
wgpu::SharedFenceExportInfo export_info;
wgpu::SharedFenceSyncFDExportInfo sync_fd_export_info;
export_info.nextInChain = &sync_fd_export_info;
if (end_access_desc.fenceCount) {
CHECK(end_access_desc.fenceCount == 1u);
end_access_desc.fences[0].ExportInfo(&export_info);
// Dawn will close its FD when `end_access_desc` falls out of scope, and
// so it is necessary to dup() it to give the scoped AHB an FD that
// it can own.
auto end_access_sync_fd = base::ScopedFD(dup(sync_fd_export_info.handle));
// Pass the end read access sync fd to the scoped hardware buffer. This
// will make sure that the AImage associated with the hardware buffer will
// be deleted only when Dawn has actually finished its work on the buffer.
scoped_hardware_buffer_->SetReadFence(std::move(end_access_sync_fd));
}
ResetStorage();
}
void ResetStorage() {
texture_.Destroy();
texture_ = nullptr;
shared_texture_memory_ = nullptr;
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
scoped_hardware_buffer_ = nullptr;
}
private:
VideoImageReaderImageBacking* video_backing() {
return static_cast<VideoImageReaderImageBacking*>(backing());
}
std::unique_ptr<base::android::ScopedHardwareBufferFenceSync>
scoped_hardware_buffer_;
scoped_refptr<SharedContextState> context_state_;
wgpu::SharedTextureMemory shared_texture_memory_;
wgpu::Texture texture_;
};
#endif
class VideoImageReaderImageBacking::SkiaVkVideoImageRepresentation
: public SkiaVkAndroidImageRepresentation,
public RefCountedLockHelperDrDc {
public:
SkiaVkVideoImageRepresentation(
SharedImageManager* manager,
AndroidImageBacking* backing,
scoped_refptr<SharedContextState> context_state,
MemoryTypeTracker* tracker,
scoped_refptr<RefCountedLock> drdc_lock)
: SkiaVkAndroidImageRepresentation(manager,
backing,
std::move(context_state),
tracker),
RefCountedLockHelperDrDc(std::move(drdc_lock)) {}
std::vector<sk_sp<SkSurface>> BeginWriteAccess(
int final_msaa_count,
const SkSurfaceProps& surface_props,
const gfx::Rect& update_rect,
std::vector<GrBackendSemaphore>* begin_semaphores,
std::vector<GrBackendSemaphore>* end_semaphores,
std::unique_ptr<skgpu::MutableTextureState>* end_state) override {
// Writes are not intended to used for video backed representations.
NOTIMPLEMENTED();
return {};
}
void EndWriteAccess() override { NOTIMPLEMENTED(); }
std::vector<sk_sp<GrPromiseImageTexture>> BeginReadAccess(
std::vector<GrBackendSemaphore>* begin_semaphores,
std::vector<GrBackendSemaphore>* end_semaphores,
std::unique_ptr<skgpu::MutableTextureState>* end_state) override {
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
DCHECK(!scoped_hardware_buffer_);
auto* video_backing = static_cast<VideoImageReaderImageBacking*>(backing());
DCHECK(video_backing);
auto* stream_texture_sii = video_backing->stream_texture_sii_.get();
// GetAHardwareBuffer() renders the latest image and gets AHardwareBuffer
// from it.
scoped_hardware_buffer_ = stream_texture_sii->GetAHardwareBuffer();
if (!scoped_hardware_buffer_) {
LOG(ERROR) << "Failed to get the hardware buffer.";
return {};
}
DCHECK(scoped_hardware_buffer_->buffer());
// Wait on the sync fd attached to the buffer to make sure buffer is
// ready before the read. This is done by inserting the sync fd semaphore
// into begin_semaphore vector which client will wait on.
init_read_fence_ = scoped_hardware_buffer_->TakeFence();
if (!vulkan_image_) {
DCHECK(!promise_texture_);
vulkan_image_ = CreateVkImageFromAhbHandle(
scoped_hardware_buffer_->TakeBuffer(), context_state(), size(),
format(), VK_QUEUE_FAMILY_FOREIGN_EXT);
if (!vulkan_image_)
return {};
// We always use VK_IMAGE_TILING_OPTIMAL while creating the vk image in
// VulkanImplementationAndroid::CreateVkImageAndImportAHB. Hence pass
// the tiling parameter as VK_IMAGE_TILING_OPTIMAL to below call rather
// than passing |vk_image_info.tiling|. This is also to ensure that the
// promise image created here at [1] as well the fulfill image created
// via the current function call are consistent and both are using
// VK_IMAGE_TILING_OPTIMAL. [1] -
// https://cs.chromium.org/chromium/src/components/viz/service/display_embedder/skia_output_surface_impl.cc?rcl=db5ffd448ba5d66d9d3c5c099754e5067c752465&l=789.
DCHECK_EQ(static_cast<int32_t>(vulkan_image_->image_tiling()),
static_cast<int32_t>(VK_IMAGE_TILING_OPTIMAL));
// TODO(bsalomon): Determine whether it makes sense to attempt to reuse
// this if the vk_info stays the same on subsequent calls.
promise_texture_ = GrPromiseImageTexture::Make(GrBackendTextures::MakeVk(
size().width(), size().height(),
CreateGrVkImageInfo(vulkan_image_.get(), format(), color_space())));
DCHECK(promise_texture_);
}
return SkiaVkAndroidImageRepresentation::BeginReadAccess(
begin_semaphores, end_semaphores, end_state);
}
void EndReadAccess() override {
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
DCHECK(scoped_hardware_buffer_);
SkiaVkAndroidImageRepresentation::EndReadAccess();
// Pass the end read access sync fd to the scoped hardware buffer. This
// will make sure that the AImage associated with the hardware buffer will
// be deleted only when the read access is ending.
scoped_hardware_buffer_->SetReadFence(android_backing()->TakeReadFence());
scoped_hardware_buffer_ = nullptr;
}
private:
std::unique_ptr<base::android::ScopedHardwareBufferFenceSync>
scoped_hardware_buffer_;
};
std::unique_ptr<GLTextureImageRepresentation>
VideoImageReaderImageBacking::ProduceGLTexture(SharedImageManager* manager,
MemoryTypeTracker* tracker) {
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
// For (old) overlays, we don't have a texture owner, but overlay promotion
// might not happen for some reasons. In that case, it will try to draw
// which should result in no image.
if (!stream_texture_sii_->HasTextureOwner())
return nullptr;
// Generate an abstract texture.
auto texture = GenAbstractTexture(/*passthrough=*/false);
if (!texture)
return nullptr;
return std::make_unique<GLTextureVideoImageRepresentation>(
manager, this, tracker, std::move(texture), GetDrDcLock());
}
std::unique_ptr<GLTexturePassthroughImageRepresentation>
VideoImageReaderImageBacking::ProduceGLTexturePassthrough(
SharedImageManager* manager,
MemoryTypeTracker* tracker) {
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
// For (old) overlays, we don't have a texture owner, but overlay promotion
// might not happen for some reasons. In that case, it will try to draw
// which should result in no image.
if (!stream_texture_sii_->HasTextureOwner())
return nullptr;
// Generate an abstract texture.
auto texture = GenAbstractTexture(/*passthrough=*/true);
if (!texture)
return nullptr;
return std::make_unique<GLTexturePassthroughVideoImageRepresentation>(
manager, this, tracker, std::move(texture), GetDrDcLock());
}
std::unique_ptr<SkiaGaneshImageRepresentation>
VideoImageReaderImageBacking::ProduceSkiaGanesh(
SharedImageManager* manager,
MemoryTypeTracker* tracker,
scoped_refptr<SharedContextState> context_state) {
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
DCHECK(context_state);
// For (old) overlays, we don't have a texture owner, but overlay promotion
// might not happen for some reasons. In that case, it will try to draw
// which should result in no image.
if (!stream_texture_sii_->HasTextureOwner())
return nullptr;
if (context_state->GrContextIsVulkan()) {
return std::make_unique<SkiaVkVideoImageRepresentation>(
manager, this, std::move(context_state), tracker, GetDrDcLock());
}
DCHECK(context_state->GrContextIsGL());
auto* texture_base = stream_texture_sii_->GetTextureBase();
DCHECK(texture_base);
const bool passthrough =
(texture_base->GetType() == gpu::TextureBase::Type::kPassthrough);
auto texture = GenAbstractTexture(passthrough);
if (!texture)
return nullptr;
std::unique_ptr<gpu::GLTextureImageRepresentationBase> gl_representation;
if (passthrough) {
gl_representation =
std::make_unique<GLTexturePassthroughVideoImageRepresentation>(
manager, this, tracker, std::move(texture), GetDrDcLock());
} else {
gl_representation = std::make_unique<GLTextureVideoImageRepresentation>(
manager, this, tracker, std::move(texture), GetDrDcLock());
}
return SkiaGLImageRepresentation::Create(std::move(gl_representation),
std::move(context_state), manager,
this, tracker);
}
#if BUILDFLAG(SKIA_USE_DAWN)
std::unique_ptr<SkiaGraphiteImageRepresentation>
VideoImageReaderImageBacking::ProduceSkiaGraphite(
SharedImageManager* manager,
MemoryTypeTracker* tracker,
scoped_refptr<SharedContextState> context_state) {
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
// For (old) overlays, we don't have a texture owner, but overlay promotion
// might not happen for some reasons. In that case, it will try to draw
// which should result in no image.
if (!stream_texture_sii_->HasTextureOwner()) {
return nullptr;
}
return std::make_unique<SkiaGraphiteDawnImageRepresentation>(
manager, this, tracker, context_state, GetDrDcLock());
}
#endif
// Representation of VideoImageReaderImageBacking as an overlay plane.
class VideoImageReaderImageBacking::OverlayVideoImageRepresentation
: public gpu::OverlayImageRepresentation,
public RefCountedLockHelperDrDc {
public:
OverlayVideoImageRepresentation(gpu::SharedImageManager* manager,
VideoImageReaderImageBacking* backing,
gpu::MemoryTypeTracker* tracker,
scoped_refptr<RefCountedLock> drdc_lock)
: gpu::OverlayImageRepresentation(manager, backing, tracker),
RefCountedLockHelperDrDc(std::move(drdc_lock)) {}
// Disallow copy and assign.
OverlayVideoImageRepresentation(const OverlayVideoImageRepresentation&) =
delete;
OverlayVideoImageRepresentation& operator=(
const OverlayVideoImageRepresentation&) = delete;
protected:
bool BeginReadAccess(gfx::GpuFenceHandle& acquire_fence) override {
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
// A |CodecImage| must have TextureOwner() for SurfaceControl overlays.
// Legacy overlays are handled by LegacyOverlayImageRepresentation.
// Unfortunately it's possible that underlying CodecImage has released its
// resources due to MediaCodec shutdown, so we don't DCHECK here.
scoped_hardware_buffer_ = stream_image()->GetAHardwareBuffer();
// |scoped_hardware_buffer_| could be null for cases when a buffer is
// not acquired in ImageReader for some reasons and there is no previously
// acquired image left.
if (!scoped_hardware_buffer_)
return false;
gfx::GpuFenceHandle handle;
handle.Adopt(scoped_hardware_buffer_->TakeFence());
if (!handle.is_null())
acquire_fence = std::move(handle);
return true;
}
void EndReadAccess(gfx::GpuFenceHandle release_fence) override {
if (video_image_) {
DCHECK(release_fence.is_null());
if (scoped_hardware_buffer_) {
scoped_hardware_buffer_->SetReadFence(video_image_->TakeEndReadFence());
}
video_image_.reset();
} else {
scoped_hardware_buffer_->SetReadFence(release_fence.Release());
}
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
scoped_hardware_buffer_.reset();
}
AHardwareBuffer* GetAHardwareBuffer() override {
DCHECK(scoped_hardware_buffer_);
return scoped_hardware_buffer_->buffer();
}
std::unique_ptr<base::android::ScopedHardwareBufferFenceSync>
GetAHardwareBufferFenceSync() override {
return GetVideoImage()->GetAHardwareBuffer();
}
private:
VideoImage* GetVideoImage() {
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
DCHECK(scoped_hardware_buffer_);
if (!video_image_) {
video_image_ =
base::MakeRefCounted<VideoImage>(scoped_hardware_buffer_->buffer());
}
return video_image_.get();
}
std::unique_ptr<base::android::ScopedHardwareBufferFenceSync>
scoped_hardware_buffer_;
scoped_refptr<VideoImage> video_image_;
StreamTextureSharedImageInterface* stream_image() {
auto* video_backing = static_cast<VideoImageReaderImageBacking*>(backing());
DCHECK(video_backing);
return video_backing->stream_texture_sii_.get();
}
};
// Representation of VideoImageReaderImageBacking as an SurfaceView overlay
// plane.
class VideoImageReaderImageBacking::LegacyOverlayVideoImageRepresentation
: public gpu::LegacyOverlayImageRepresentation,
public RefCountedLockHelperDrDc {
public:
LegacyOverlayVideoImageRepresentation(gpu::SharedImageManager* manager,
VideoImageReaderImageBacking* backing,
gpu::MemoryTypeTracker* tracker,
scoped_refptr<RefCountedLock> drdc_lock)
: gpu::LegacyOverlayImageRepresentation(manager, backing, tracker),
RefCountedLockHelperDrDc(std::move(drdc_lock)) {}
void RenderToOverlay() override {
TRACE_EVENT0("media",
"LegacyOverlayVideoImageRepresentation::RenderToOverlay");
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
auto* stream_texture_sii = stream_image();
DCHECK(!stream_texture_sii->HasTextureOwner())
<< "Image must be promoted to overlay first.";
stream_texture_sii->RenderToOverlay();
}
void NotifyOverlayPromotion(bool promotion,
const gfx::Rect& bounds) override {
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
stream_image()->NotifyOverlayPromotion(promotion, bounds);
}
StreamTextureSharedImageInterface* stream_image() {
auto* video_backing = static_cast<VideoImageReaderImageBacking*>(backing());
DCHECK(video_backing);
return video_backing->stream_texture_sii_.get();
}
};
std::unique_ptr<gpu::OverlayImageRepresentation>
VideoImageReaderImageBacking::ProduceOverlay(gpu::SharedImageManager* manager,
gpu::MemoryTypeTracker* tracker) {
return std::make_unique<OverlayVideoImageRepresentation>(
manager, this, tracker, GetDrDcLock());
}
std::unique_ptr<gpu::LegacyOverlayImageRepresentation>
VideoImageReaderImageBacking::ProduceLegacyOverlay(
gpu::SharedImageManager* manager,
gpu::MemoryTypeTracker* tracker) {
return std::make_unique<LegacyOverlayVideoImageRepresentation>(
manager, this, tracker, GetDrDcLock());
}
VideoImageReaderImageBacking::ContextLostObserverHelper::
ContextLostObserverHelper(
scoped_refptr<SharedContextState> context_state,
scoped_refptr<StreamTextureSharedImageInterface> stream_texture_sii,
scoped_refptr<base::SingleThreadTaskRunner> gpu_main_task_runner,
scoped_refptr<RefCountedLock> drdc_lock)
: RefCountedLockHelperDrDc(std::move(drdc_lock)),
context_state_(std::move(context_state)),
stream_texture_sii_(std::move(stream_texture_sii)),
gpu_main_task_runner_(std::move(gpu_main_task_runner)) {
DCHECK(context_state_);
DCHECK(stream_texture_sii_);
context_state_->AddContextLostObserver(this);
}
VideoImageReaderImageBacking::ContextLostObserverHelper::
~ContextLostObserverHelper() {
DCHECK(gpu_main_task_runner_->RunsTasksInCurrentSequence());
if (context_state_)
context_state_->RemoveContextLostObserver(this);
{
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
stream_texture_sii_->ReleaseResources();
stream_texture_sii_.reset();
}
}
// SharedContextState::ContextLostObserver implementation.
void VideoImageReaderImageBacking::ContextLostObserverHelper::OnContextLost() {
DCHECK(gpu_main_task_runner_->RunsTasksInCurrentSequence());
base::AutoLockMaybe auto_lock(GetDrDcLockPtr());
// We release codec buffers when shared image context is lost. This is
// because texture owner's texture was created on shared context. Once
// shared context is lost, no one should try to use that texture.
stream_texture_sii_->ReleaseResources();
context_state_->RemoveContextLostObserver(this);
context_state_ = nullptr;
}
} // namespace gpu