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
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/capture_mode/camera_video_frame_handler.h"
#include "base/check.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/memory/shared_memory_mapping.h"
#include "base/memory/unsafe_shared_memory_region.h"
#include "base/system/sys_info.h"
#include "components/viz/common/gpu/context_lost_observer.h"
#include "components/viz/common/gpu/context_provider.h"
#include "gpu/command_buffer/client/client_shared_image.h"
#include "gpu/command_buffer/client/gpu_memory_buffer_manager.h"
#include "gpu/command_buffer/client/shared_image_interface.h"
#include "gpu/command_buffer/common/context_result.h"
#include "gpu/command_buffer/common/gpu_memory_buffer_support.h"
#include "gpu/command_buffer/common/shared_image_usage.h"
#include "gpu/ipc/common/gpu_memory_buffer_impl_shared_memory.h"
#include "gpu/ipc/common/gpu_memory_buffer_support.h"
#include "media/base/media_switches.h"
#include "media/base/video_frame.h"
#include "media/base/video_types.h"
#include "media/capture/video_capture_types.h"
#include "mojo/public/cpp/system/buffer.h"
#include "ui/compositor/compositor.h"
#include "ui/gfx/buffer_types.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/gpu_memory_buffer.h"
namespace capture_mode {
namespace {
// The `kGpuMemoryBuffer` type is requested only when running on an actual
// device. This allows force-requesting them when testing in which case
// SharedMemory GMBs are used.
bool g_force_use_gpu_memory_buffer_for_test = false;
// A constant flag that describes which APIs the shared image mailboxes created
// for the video frame will be used with.
constexpr uint32_t kSharedImageUsage =
gpu::SHARED_IMAGE_USAGE_GLES2 | gpu::SHARED_IMAGE_USAGE_RASTER |
gpu::SHARED_IMAGE_USAGE_DISPLAY_READ | gpu::SHARED_IMAGE_USAGE_SCANOUT;
// The usage of the GpuMemoryBuffer that backs the video frames on an actual
// device (of type `NATIVE_PIXMAP`). The buffer is going to be presented on the
// screen for rendering, will be used as a texture, and can be read by CPU and
// potentially a video encode accelerator.
constexpr gfx::BufferUsage kGpuMemoryBufferUsage =
gfx::BufferUsage::SCANOUT_VEA_CPU_READ;
// The usage of the GpuMemoryBuffer that backs the video frames in unittests,
// since the type of that buffer will be `SHARED_MEMORY_BUFFER` which doesn't
// support the above on-device usage.
constexpr gfx::BufferUsage kGpuMemoryBufferUsageForTest =
gfx::BufferUsage::SCANOUT_CPU_READ_WRITE;
// The only supported video pixel format used on devices is `PIXEL_FORMAT_NV12`.
// This maps to a buffer format of `YUV_420_BIPLANAR`.
constexpr gfx::BufferFormat kGpuMemoryBufferFormat =
gfx::BufferFormat::YUV_420_BIPLANAR;
// In unittests, the video pixel format used is `PIXEL_FORMAT_ARGB`, since the
// video frames are painted and verified manually using Skia. The buffer format
// used for this is `BGRA_8888`.
constexpr gfx::BufferFormat kGpuMemoryBufferFormatForTest =
gfx::BufferFormat::BGRA_8888;
gfx::BufferUsage GetBufferUsage() {
return g_force_use_gpu_memory_buffer_for_test ? kGpuMemoryBufferUsageForTest
: kGpuMemoryBufferUsage;
}
gfx::BufferFormat GetBufferFormat() {
return g_force_use_gpu_memory_buffer_for_test ? kGpuMemoryBufferFormatForTest
: kGpuMemoryBufferFormat;
}
viz::SharedImageFormat GetSharedImageFormat() {
return g_force_use_gpu_memory_buffer_for_test
? viz::SinglePlaneFormat::kBGRA_8888
: viz::MultiPlaneFormat::kNV12;
}
#if BUILDFLAG(IS_CHROMEOS)
// Adjusts the requested video capture `params` depending on whether we're
// running on an actual device or the linux-chromeos build.
void AdjustParamsForCurrentConfig(media::VideoCaptureParams* params) {
DCHECK(params);
// The default params are good enough when running on linux-chromeos.
if (!base::SysInfo::IsRunningOnChromeOS() &&
!g_force_use_gpu_memory_buffer_for_test) {
DCHECK_EQ(params->buffer_type,
media::VideoCaptureBufferType::kSharedMemory);
return;
}
// On an actual device, the camera HAL only supports NV12 pixel formats in a
// GPU memory buffer.
params->requested_format.pixel_format = media::PIXEL_FORMAT_NV12;
params->buffer_type = media::VideoCaptureBufferType::kGpuMemoryBuffer;
}
#endif
// Whether to use the SharedImageInterface entrypoint taking a SharedImageFormat
// to create multiplanar SharedImages via viz::MultiPlaneFormat rather than
// going through the legacy entrypoint for SI creation that passes a GMB.
bool CreateNonLegacyMultiPlaneSharedImage() {
return media::IsMultiPlaneFormatForHardwareVideoEnabled();
}
// Whether to use per-plane sampling rather than external sampling.
bool UsePerPlaneSampling() {
return base::FeatureList::IsEnabled(
media::kMultiPlaneVideoCaptureSharedImages);
}
// Creates and returns a list of the buffer planes for each we'll need to create
// a shared image and store it in `GpuMemoryBufferHandleHolder::mailboxes_`.
std::vector<gfx::BufferPlane> CreateGpuBufferPlanes() {
std::vector<gfx::BufferPlane> planes;
if (UsePerPlaneSampling() && !CreateNonLegacyMultiPlaneSharedImage()) {
planes.push_back(gfx::BufferPlane::Y);
planes.push_back(gfx::BufferPlane::UV);
} else {
planes.push_back(gfx::BufferPlane::DEFAULT);
}
return planes;
}
// Returns the buffer texture target used to create a `MailboxHolder` according
// to our GPU buffer usage, buffer format, and the given `context_capabilities`.
uint32_t CalculateBufferTextureTarget(
const gpu::Capabilities& context_capabilities) {
return gpu::GetBufferTextureTarget(GetBufferUsage(), GetBufferFormat(),
context_capabilities);
}
bool IsFatalError(media::VideoCaptureError error) {
switch (error) {
case media::VideoCaptureError::kCrosHalV3FailedToStartDeviceThread:
case media::VideoCaptureError::kCrosHalV3DeviceDelegateMojoConnectionError:
case media::VideoCaptureError::
kCrosHalV3DeviceDelegateFailedToOpenCameraDevice:
case media::VideoCaptureError::
kCrosHalV3DeviceDelegateFailedToInitializeCameraDevice:
case media::VideoCaptureError::
kCrosHalV3DeviceDelegateFailedToConfigureStreams:
case media::VideoCaptureError::kCrosHalV3BufferManagerFatalDeviceError:
return true;
default:
return false;
}
}
// -----------------------------------------------------------------------------
// SharedMemoryBufferHandleHolder:
// Defines an implementation for a `BufferHandleHolder` that can extract a video
// frame that is backed by a `kSharedMemory` buffer type. This implementation is
// used only when running on a linux-chromeos build (a.k.a. the emulator).
class SharedMemoryBufferHandleHolder : public BufferHandleHolder {
public:
explicit SharedMemoryBufferHandleHolder(
media::mojom::VideoBufferHandlePtr buffer_handle)
: region_(std::move(buffer_handle->get_unsafe_shmem_region())) {
DCHECK(buffer_handle->is_unsafe_shmem_region());
#if BUILDFLAG(IS_CHROMEOS)
DCHECK(!base::SysInfo::IsRunningOnChromeOS());
#endif
}
SharedMemoryBufferHandleHolder(const SharedMemoryBufferHandleHolder&) =
delete;
SharedMemoryBufferHandleHolder& operator=(
const SharedMemoryBufferHandleHolder&) = delete;
~SharedMemoryBufferHandleHolder() override = default;
// BufferHandleHolder:
scoped_refptr<media::VideoFrame> OnFrameReadyInBuffer(
video_capture::mojom::ReadyFrameInBufferPtr buffer) override {
const size_t mapping_size = media::VideoFrame::AllocationSize(
buffer->frame_info->pixel_format, buffer->frame_info->coded_size);
if (!MaybeUpdateMapping(mapping_size)) {
return {};
}
auto& frame_info = buffer->frame_info;
auto frame = media::VideoFrame::WrapExternalData(
frame_info->pixel_format, frame_info->coded_size,
frame_info->visible_rect, frame_info->visible_rect.size(),
mapping_.GetMemoryAs<uint8_t>(), mapping_.size(),
frame_info->timestamp);
return frame;
}
private:
// Maps a new region with a size `new_mapping_size` bytes if no `mapping_` is
// available. Returns true if already mapped, or mapping is successful, false
// otherwise.
bool MaybeUpdateMapping(size_t new_mapping_size) {
if (mapping_.IsValid()) {
// TODO(https://crbug.com/1316812): What guarantees that this DCHECK will
// hold?
DCHECK_EQ(mapping_.size(), new_mapping_size);
return true;
}
mapping_ = region_.Map();
return mapping_.IsValid();
}
// The held shared memory region associated with this object.
base::UnsafeSharedMemoryRegion region_;
// Shared memory mapping associated with the held `region_`.
base::WritableSharedMemoryMapping mapping_;
};
// -----------------------------------------------------------------------------
// GpuMemoryBufferHandleHolder:
// Defines an implementation for a `BufferHandleHolder` that can extract a video
// frame that is backed by a `kGpuMemoryBuffer` buffer type.
class GpuMemoryBufferHandleHolder : public BufferHandleHolder,
public viz::ContextLostObserver {
public:
GpuMemoryBufferHandleHolder(media::mojom::VideoBufferHandlePtr buffer_handle,
ui::ContextFactory* context_factory)
: gpu_memory_buffer_handle_(
std::move(buffer_handle->get_gpu_memory_buffer_handle())),
buffer_planes_(CreateGpuBufferPlanes()),
context_factory_(context_factory),
context_provider_(
context_factory_->SharedMainThreadRasterContextProvider()),
buffer_texture_target_(CalculateBufferTextureTarget(
context_provider_->ContextCapabilities())) {
DCHECK(buffer_handle->is_gpu_memory_buffer_handle());
DCHECK(context_provider_);
context_provider_->AddObserver(this);
}
GpuMemoryBufferHandleHolder(const GpuMemoryBufferHandleHolder&) = delete;
GpuMemoryBufferHandleHolder& operator=(const GpuMemoryBufferHandleHolder&) =
delete;
~GpuMemoryBufferHandleHolder() override {
if (!context_provider_) {
return;
}
context_provider_->RemoveObserver(this);
gpu::SharedImageInterface* shared_image_interface =
context_provider_->SharedImageInterface();
DCHECK(shared_image_interface);
for (const auto& mb : mailboxes_) {
if (mb.IsZero() || !mb.IsSharedImage()) {
continue;
}
shared_image_interface->DestroySharedImage(release_sync_token_, mb);
}
}
// BufferHandleHolder:
scoped_refptr<media::VideoFrame> OnFrameReadyInBuffer(
video_capture::mojom::ReadyFrameInBufferPtr buffer) override {
if (!context_provider_) {
LOG(ERROR) << "GPU context lost.";
return {};
}
const auto& frame_info = buffer->frame_info;
if (!MaybeCreateSharedImages(frame_info)) {
LOG(ERROR) << "Failed to initialize GpuMemoryBufferHandleHolder.";
return {};
}
return WrapMailboxesInVideoFrame(frame_info);
}
// viz::ContextLostObserver:
void OnContextLost() override {
DCHECK(context_provider_);
context_provider_->RemoveObserver(this);
// Clear the mailboxes so that we can recreate the shared images.
should_create_shared_images_ = true;
for (auto& mb : mailboxes_) {
mb.SetZero();
}
release_sync_token_ = gpu::SyncToken();
context_provider_ =
context_factory_->SharedMainThreadRasterContextProvider();
if (context_provider_) {
context_provider_->AddObserver(this);
buffer_texture_target_ = CalculateBufferTextureTarget(
context_provider_->ContextCapabilities());
}
}
private:
// Creates and returns a new `GpuMemoryBuffer` from a cloned handle of our
// `gpu_memory_buffer_handle_`. The type of the buffer depends on the type of
// the handle and can only be either `NATIVE_PIXMAP` or
// `SHARED_MEMORY_BUFFER`.
std::unique_ptr<gfx::GpuMemoryBuffer> CreateGpuMemoryBufferFromHandle(
const gfx::Size& size) {
const auto buffer_format = GetBufferFormat();
const auto buffer_usage = GetBufferUsage();
if (gpu_memory_buffer_handle_.type ==
gpu::GpuMemoryBufferSupport::GetNativeGpuMemoryBufferType()) {
return gpu_memory_buffer_support_.CreateGpuMemoryBufferImplFromHandle(
gpu_memory_buffer_handle_.Clone(), size, buffer_format, buffer_usage,
base::DoNothing());
}
DCHECK_EQ(gpu_memory_buffer_handle_.type, gfx::SHARED_MEMORY_BUFFER);
DCHECK(g_force_use_gpu_memory_buffer_for_test);
return gpu::GpuMemoryBufferImplSharedMemory::CreateFromHandle(
gpu_memory_buffer_handle_.Clone(), size, buffer_format, buffer_usage,
base::DoNothing());
}
// Initializes this holder by creating shared images and storing them in
// `mailboxes_`. These shared images are backed by a GpuMemoryBuffer whose
// handle is a clone of our `gpu_memory_buffer_handle_`. This operation should
// only be done the first ever time, or whenever the gpu context is lost.
// Returns true if shared images are already created or creation is
// successful. False otherwise.
bool MaybeCreateSharedImages(
const media::mojom::VideoFrameInfoPtr& frame_info) {
DCHECK(context_provider_);
if (!should_create_shared_images_) {
return true;
}
// We clone our handle `gpu_memory_buffer_handle_` and use the cloned handle
// to create a new GpuMemoryBuffer which will be used to create the shared
// images. This way, the lifetime of our `gpu_memory_buffer_handle_` remains
// tied to the lieftime of this object (i.e. until `OnBufferRetired()` is
// called).
std::unique_ptr<gfx::GpuMemoryBuffer> gmb =
CreateGpuMemoryBufferFromHandle(frame_info->coded_size);
if (!gmb) {
LOG(ERROR) << "Failed to create a GpuMemoryBuffer.";
return false;
}
gpu::SharedImageInterface* shared_image_interface =
context_provider_->SharedImageInterface();
DCHECK(shared_image_interface);
if (CreateNonLegacyMultiPlaneSharedImage()) {
auto format = GetSharedImageFormat();
#if BUILDFLAG(IS_OZONE)
// If format is not multiplanar it must be used for testing.
CHECK(format.is_multi_plane() || g_force_use_gpu_memory_buffer_for_test);
if (!UsePerPlaneSampling() && format.is_multi_plane()) {
format.SetPrefersExternalSampler();
}
#endif
CHECK_EQ(buffer_planes_.size(), 1u);
auto client_shared_image = shared_image_interface->CreateSharedImage(
format, gmb->GetSize(), frame_info->color_space,
kTopLeft_GrSurfaceOrigin, kPremul_SkAlphaType, kSharedImageUsage,
"CameraVideoFrame", gmb->CloneHandle());
CHECK(client_shared_image);
mailboxes_[0] = client_shared_image->mailbox();
} else {
gpu::GpuMemoryBufferManager* gmb_manager =
context_factory_->GetGpuMemoryBufferManager();
for (size_t plane = 0; plane < buffer_planes_.size(); ++plane) {
mailboxes_[plane] = shared_image_interface->CreateSharedImage(
gmb.get(), gmb_manager, buffer_planes_[plane],
frame_info->color_space, kTopLeft_GrSurfaceOrigin,
kPremul_SkAlphaType, kSharedImageUsage, "CameraVideoFrame");
}
}
// Since this is the first time we create the shared images in `mailboxes_`,
// we need to guarantee that the mailboxes are created before they're used.
mailbox_holder_sync_token_ = shared_image_interface->GenVerifiedSyncToken();
should_create_shared_images_ = false;
return true;
}
// Wraps the shared images in `mailboxes_` in a video frame and returns it if
// wrapping was successful, or an empty refptr otherwise.
scoped_refptr<media::VideoFrame> WrapMailboxesInVideoFrame(
const media::mojom::VideoFrameInfoPtr& frame_info) {
DCHECK(!should_create_shared_images_);
if (frame_info->pixel_format !=
media::VideoPixelFormat::PIXEL_FORMAT_NV12 &&
frame_info->pixel_format !=
media::VideoPixelFormat::PIXEL_FORMAT_ARGB) {
LOG(ERROR) << "Unsupported pixel format";
return {};
}
// The camera GpuMemoryBuffer is backed by a DMA-buff, and doesn't use a
// pre-mapped shared memory region.
DCHECK(!frame_info->is_premapped);
gpu::MailboxHolder mailbox_holder_array[media::VideoFrame::kMaxPlanes];
for (size_t plane = 0; plane < buffer_planes_.size(); ++plane) {
DCHECK(!mailboxes_[plane].IsZero());
DCHECK(mailboxes_[plane].IsSharedImage());
mailbox_holder_array[plane] =
gpu::MailboxHolder(mailboxes_[plane], mailbox_holder_sync_token_,
buffer_texture_target_);
}
mailbox_holder_sync_token_.Clear();
auto frame = media::VideoFrame::WrapNativeTextures(
frame_info->pixel_format, mailbox_holder_array,
base::BindOnce(&GpuMemoryBufferHandleHolder::OnMailboxReleased,
weak_ptr_factory_.GetWeakPtr()),
frame_info->coded_size, frame_info->visible_rect,
frame_info->visible_rect.size(), frame_info->timestamp);
if (!frame) {
LOG(ERROR) << "Failed to create a video frame.";
return frame;
}
if (CreateNonLegacyMultiPlaneSharedImage()) {
auto format = GetSharedImageFormat();
// If format is not multiplanar it must be used for testing.
CHECK(format.is_multi_plane() || g_force_use_gpu_memory_buffer_for_test);
if (!UsePerPlaneSampling() && format.is_multi_plane()) {
frame->set_shared_image_format_type(
media::SharedImageFormatType::kSharedImageFormatExternalSampler);
} else {
frame->set_shared_image_format_type(
media::SharedImageFormatType::kSharedImageFormat);
}
}
if (frame_info->color_space.IsValid()) {
frame->set_color_space(frame_info->color_space);
}
frame->metadata().allow_overlay = true;
frame->metadata().read_lock_fences_enabled = true;
frame->metadata().MergeMetadataFrom(frame_info->metadata);
return frame;
}
// Called when the video frame is destroyed.
void OnMailboxReleased(const gpu::SyncToken& release_sync_token) {
release_sync_token_ = release_sync_token;
}
// The held GPU buffer handle associated with this object.
const gfx::GpuMemoryBufferHandle gpu_memory_buffer_handle_;
// The buffer planes for each we need to create a shared image and store it in
// `mailboxes_`.
const std::vector<gfx::BufferPlane> buffer_planes_;
const raw_ptr<ui::ContextFactory> context_factory_;
// Used to create a GPU memory buffer from its handle.
gpu::GpuMemoryBufferSupport gpu_memory_buffer_support_;
scoped_refptr<viz::RasterContextProvider> context_provider_;
// The texture target we use to create a `MailboxHolder`. This value is
// calculated for out GPU buffer format, and GPU buffer usage, and the current
// capabilities of `context_provider_`.
uint32_t buffer_texture_target_;
// Contains the shared images of the video frame planes created from the GPU
// memory buffer.
std::vector<gpu::Mailbox> mailboxes_{media::VideoFrame::kMaxPlanes};
// The sync token used when creating a `MailboxHolder`. This will be a
// verified sync token the first time we wrap a video frame around a mailbox.
gpu::SyncToken mailbox_holder_sync_token_;
// The release sync token of the above `mailboxes_`.
gpu::SyncToken release_sync_token_;
bool should_create_shared_images_ = true;
base::WeakPtrFactory<GpuMemoryBufferHandleHolder> weak_ptr_factory_{this};
};
// Notifies the passed `VideoFrameAccessHandler` that the handler is done using
// the buffer.
void OnFrameGone(
mojo::SharedRemote<video_capture::mojom::VideoFrameAccessHandler>
video_frame_access_handler_remote,
const int buffer_id) {
video_frame_access_handler_remote->OnFinishedConsumingBuffer(buffer_id);
}
} // namespace
// -----------------------------------------------------------------------------
// BufferHandleHolder:
BufferHandleHolder::~BufferHandleHolder() = default;
// static
std::unique_ptr<BufferHandleHolder> BufferHandleHolder::Create(
media::mojom::VideoBufferHandlePtr buffer_handle,
ui::ContextFactory* context_factory) {
if (buffer_handle->is_unsafe_shmem_region()) {
return std::make_unique<SharedMemoryBufferHandleHolder>(
std::move(buffer_handle));
}
DCHECK(buffer_handle->is_gpu_memory_buffer_handle());
return std::make_unique<GpuMemoryBufferHandleHolder>(std::move(buffer_handle),
context_factory);
}
// -----------------------------------------------------------------------------
// CameraVideoFrameHandler:
CameraVideoFrameHandler::CameraVideoFrameHandler(
ui::ContextFactory* context_factory,
mojo::Remote<video_capture::mojom::VideoSource> camera_video_source,
const media::VideoCaptureFormat& capture_format)
: context_factory_(context_factory),
camera_video_source_remote_(std::move(camera_video_source)) {
CHECK(camera_video_source_remote_);
camera_video_source_remote_.set_disconnect_handler(
base::BindOnce(&CameraVideoFrameHandler::OnFatalErrorOrDisconnection,
base::Unretained(this)));
media::VideoCaptureParams capture_params;
capture_params.requested_format = capture_format;
#if BUILDFLAG(IS_CHROMEOS)
AdjustParamsForCurrentConfig(&capture_params);
#endif
camera_video_source_remote_->CreatePushSubscription(
video_frame_handler_receiver_.BindNewPipeAndPassRemote(), capture_params,
// The Camera app, or some other camera capture operation may already be
// running with certain settings. We don't want to reopen the camera
// device with our settings, since our requirements are usually low in
// terms of frame rate and size. So we'll use whatever settings available
// if any.
/*force_reopen_with_new_settings=*/false,
camera_video_stream_subsciption_remote_.BindNewPipeAndPassReceiver(),
base::BindOnce(
[](video_capture::mojom::CreatePushSubscriptionResultCodePtr
result_code,
const media::VideoCaptureParams& actual_params) {
if (result_code->is_error_code()) {
LOG(ERROR) << "Error in creating push subscription: "
<< static_cast<int>(result_code->get_error_code());
}
}));
}
CameraVideoFrameHandler::~CameraVideoFrameHandler() = default;
void CameraVideoFrameHandler::StartHandlingFrames(Delegate* delegate) {
CHECK(delegate);
CHECK(camera_video_stream_subsciption_remote_);
delegate_ = delegate;
active_ = true;
camera_video_stream_subsciption_remote_->Activate();
}
void CameraVideoFrameHandler::Close(base::OnceClosure close_complete_callback) {
active_ = false;
// `delegate_` might be freed any time after this point, so nullify it to
// reflect that.
delegate_ = nullptr;
camera_video_stream_subsciption_remote_->Close(
std::move(close_complete_callback));
}
void CameraVideoFrameHandler::OnCaptureConfigurationChanged() {}
void CameraVideoFrameHandler::OnNewBuffer(
int buffer_id,
media::mojom::VideoBufferHandlePtr buffer_handle) {
const auto pair = buffer_map_.emplace(
buffer_id, BufferHandleHolder::Create(std::move(buffer_handle),
context_factory_.get()));
DCHECK(pair.second);
}
void CameraVideoFrameHandler::OnFrameAccessHandlerReady(
mojo::PendingRemote<video_capture::mojom::VideoFrameAccessHandler>
pending_frame_access_handler) {
video_frame_access_handler_remote_.Bind(
std::move(pending_frame_access_handler),
base::SequencedTaskRunner::GetCurrentDefault());
}
void CameraVideoFrameHandler::OnFrameReadyInBuffer(
video_capture::mojom::ReadyFrameInBufferPtr buffer) {
CHECK(video_frame_access_handler_remote_);
const int buffer_id = buffer->buffer_id;
if (!active_) {
video_frame_access_handler_remote_->OnFinishedConsumingBuffer(buffer_id);
return;
}
// `delegate_` should still exist if the handler is active.
CHECK(delegate_);
const auto& iter = buffer_map_.find(buffer_id);
CHECK(iter != buffer_map_.end());
const auto& buffer_handle_holder = iter->second;
scoped_refptr<media::VideoFrame> frame =
buffer_handle_holder->OnFrameReadyInBuffer(std::move(buffer));
if (!frame) {
video_frame_access_handler_remote_->OnFinishedConsumingBuffer(buffer_id);
return;
}
frame->AddDestructionObserver(base::BindOnce(
&OnFrameGone, video_frame_access_handler_remote_, buffer_id));
delegate_->OnCameraVideoFrame(std::move(frame));
}
void CameraVideoFrameHandler::OnBufferRetired(int buffer_id) {
DCHECK(buffer_map_.contains(buffer_id));
buffer_map_.erase(buffer_id);
}
void CameraVideoFrameHandler::OnError(media::VideoCaptureError error) {
LOG(ERROR) << "Recieved error: " << static_cast<int>(error);
if (IsFatalError(error)) {
OnFatalErrorOrDisconnection();
}
}
void CameraVideoFrameHandler::OnFrameDropped(
media::VideoCaptureFrameDropReason reason) {
DLOG(ERROR) << "A camera video frame was dropped due to: "
<< static_cast<int>(reason);
}
void CameraVideoFrameHandler::OnNewSubCaptureTargetVersion(
uint32_t sub_capture_target_version) {}
void CameraVideoFrameHandler::OnFrameWithEmptyRegionCapture() {}
void CameraVideoFrameHandler::OnLog(const std::string& message) {
DVLOG(1) << message;
}
void CameraVideoFrameHandler::OnStarted() {}
void CameraVideoFrameHandler::OnStartedUsingGpuDecode() {}
void CameraVideoFrameHandler::OnStopped() {}
// static
void CameraVideoFrameHandler::SetForceUseGpuMemoryBufferForTest(bool value) {
g_force_use_gpu_memory_buffer_for_test = value;
}
void CameraVideoFrameHandler::OnVideoFrameGone(int buffer_id) {
CHECK(video_frame_access_handler_remote_);
video_frame_access_handler_remote_->OnFinishedConsumingBuffer(buffer_id);
}
void CameraVideoFrameHandler::OnFatalErrorOrDisconnection() {
active_ = false;
buffer_map_.clear();
weak_ptr_factory_.InvalidateWeakPtrs();
video_frame_handler_receiver_.reset();
camera_video_source_remote_.reset();
camera_video_stream_subsciption_remote_.reset();
if (delegate_) {
delegate_->OnFatalErrorOrDisconnection();
// Caution as the delegate may choose to delete `this` after the above call.
}
}
} // namespace capture_mode
|