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
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/platform/webrtc/webrtc_video_frame_adapter.h"
#include <cmath>
#include <vector>
#include "base/containers/contains.h"
#include "base/dcheck_is_on.h"
#include "base/memory/raw_ptr.h"
#include "base/synchronization/waitable_event.h"
#include "base/threading/thread_restrictions.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/raster_interface.h"
#include "gpu/command_buffer/client/shared_image_interface.h"
#include "gpu/command_buffer/common/shared_image_capabilities.h"
#include "gpu/command_buffer/common/shared_image_usage.h"
#include "media/base/simple_sync_token_client.h"
#include "media/base/video_frame.h"
#include "media/base/video_types.h"
#include "media/base/video_util.h"
#include "media/renderers/video_frame_rgba_to_yuva_converter.h"
#include "third_party/blink/public/platform/platform.h"
#include "third_party/blink/renderer/platform/graphics/web_graphics_context_3d_video_frame_pool.h"
#include "third_party/blink/renderer/platform/scheduler/public/main_thread.h"
#include "third_party/blink/renderer/platform/scheduler/public/post_cross_thread_task.h"
#include "third_party/blink/renderer/platform/webrtc/convert_to_webrtc_video_frame_buffer.h"
#include "third_party/blink/renderer/platform/wtf/cross_thread_functional.h"
#include "third_party/webrtc/rtc_base/ref_counted_object.h"
#include "ui/gfx/geometry/size.h"
namespace blink {
namespace {
bool IsApproxEquals(int a, int b) {
return std::abs(a - b) <= 4;
}
bool IsApproxEquals(const gfx::Rect& a, const gfx::Rect& b) {
return IsApproxEquals(a.x(), b.x()) && IsApproxEquals(a.y(), b.y()) &&
IsApproxEquals(a.width(), b.width()) &&
IsApproxEquals(a.height(), b.height());
}
static void CreateContextProviderOnMainThread(
scoped_refptr<viz::RasterContextProvider>* result,
base::WaitableEvent* waitable_event) {
scoped_refptr<viz::RasterContextProvider> worker_context_provider =
blink::Platform::Current()->SharedCompositorWorkerContextProvider(
nullptr);
if (worker_context_provider)
*result = worker_context_provider.get();
waitable_event->Signal();
}
class Context : public media::RenderableGpuMemoryBufferVideoFramePool::Context {
public:
Context(media::GpuVideoAcceleratorFactories* gpu_factories,
scoped_refptr<viz::RasterContextProvider> raster_context_provider)
: gpu_factories_(gpu_factories),
raster_context_provider_(std::move(raster_context_provider)) {}
scoped_refptr<gpu::ClientSharedImage> CreateSharedImage(
const gfx::Size& size,
gfx::BufferUsage buffer_usage,
const viz::SharedImageFormat& si_format,
const gfx::ColorSpace& color_space,
gpu::SharedImageUsageSet usage,
gpu::SyncToken& sync_token) override {
auto* sii = SharedImageInterface();
if (!sii) {
return nullptr;
}
auto client_shared_image = sii->CreateSharedImage(
{si_format, size, color_space, usage, "WebRTCVideoFramePool"},
gpu::kNullSurfaceHandle, buffer_usage);
if (!client_shared_image) {
return nullptr;
}
#if BUILDFLAG(IS_MAC)
client_shared_image->SetColorSpaceOnNativeBuffer(color_space);
#endif
sync_token = sii->GenVerifiedSyncToken();
return client_shared_image;
}
void DestroySharedImage(
const gpu::SyncToken& sync_token,
scoped_refptr<gpu::ClientSharedImage> shared_image) override {
CHECK(shared_image);
shared_image->UpdateDestructionSyncToken(sync_token);
}
const gpu::SharedImageCapabilities& GetCapabilities() override {
return SharedImageInterface()->GetCapabilities();
}
private:
gpu::SharedImageInterface* SharedImageInterface() const {
return raster_context_provider_->SharedImageInterface();
}
raw_ptr<media::GpuVideoAcceleratorFactories> gpu_factories_;
scoped_refptr<viz::RasterContextProvider> raster_context_provider_;
};
} // namespace
scoped_refptr<media::VideoFrame>
WebRtcVideoFrameAdapter::SharedResources::CreateFrame(
media::VideoPixelFormat format,
const gfx::Size& coded_size,
const gfx::Rect& visible_rect,
const gfx::Size& natural_size,
base::TimeDelta timestamp) {
return pool_.CreateFrame(format, coded_size, visible_rect, natural_size,
timestamp);
}
media::EncoderStatus WebRtcVideoFrameAdapter::SharedResources::ConvertAndScale(
const media::VideoFrame& src_frame,
media::VideoFrame& dest_frame) {
// The converter is thread safe so multiple threads may convert frames at
// once.
return frame_converter_.ConvertAndScale(src_frame, dest_frame);
}
scoped_refptr<viz::RasterContextProvider>
WebRtcVideoFrameAdapter::SharedResources::GetRasterContextProvider() {
base::AutoLock auto_lock(context_provider_lock_);
if (raster_context_provider_) {
// Reuse created context provider if it's alive.
viz::RasterContextProvider::ScopedRasterContextLock lock(
raster_context_provider_.get());
if (lock.RasterInterface()->GetGraphicsResetStatusKHR() == GL_NO_ERROR)
return raster_context_provider_;
}
// Since the accelerated frame pool is attached to the old provider, we need
// to release it here.
accelerated_frame_pool_.reset();
// Recreate the context provider.
base::WaitableEvent waitable_event;
PostCrossThreadTask(
*Thread::MainThread()->GetTaskRunner(MainThreadTaskRunnerRestricted()),
FROM_HERE,
CrossThreadBindOnce(&CreateContextProviderOnMainThread,
CrossThreadUnretained(&raster_context_provider_),
CrossThreadUnretained(&waitable_event)));
// This wait is necessary because this task is completed via main thread
// asynchronously but WebRTC API is synchronous.
base::ScopedAllowBaseSyncPrimitivesOutsideBlockingScope allow_wait;
waitable_event.Wait();
return raster_context_provider_;
}
bool CanUseGpuMemoryBufferReadback(
media::VideoPixelFormat format,
media::GpuVideoAcceleratorFactories* gpu_factories) {
// Since ConvertToWebRtcVideoFrameBuffer will always produce an opaque frame
// (unless the input is already I420A), we allow using GMB readback from
// ABGR/ARGB to NV12.
if (format != media::PIXEL_FORMAT_XBGR &&
format != media::PIXEL_FORMAT_XRGB &&
format != media::PIXEL_FORMAT_ABGR &&
format != media::PIXEL_FORMAT_ARGB) {
return false;
}
if (!gpu_factories) {
return false;
}
if (!gpu_factories->SharedImageInterface()) {
return false;
}
#if BUILDFLAG(IS_WIN)
// CopyToGpuMemoryBuffer is only supported for D3D shared images on Windows.
if (!gpu_factories->SharedImageInterface()
->GetCapabilities()
.shared_image_d3d) {
DVLOG(1) << "CopyToGpuMemoryBuffer not supported.";
return false;
}
#endif // BUILDFLAG(IS_WIN)
return WebGraphicsContext3DVideoFramePool::
IsGpuMemoryBufferReadbackFromTextureEnabled();
}
scoped_refptr<media::VideoFrame>
WebRtcVideoFrameAdapter::SharedResources::ConstructVideoFrameFromTexture(
scoped_refptr<media::VideoFrame> source_frame) {
RTC_DCHECK(source_frame->HasSharedImage());
auto raster_context_provider = GetRasterContextProvider();
if (!raster_context_provider) {
return nullptr;
}
viz::RasterContextProvider::ScopedRasterContextLock scoped_context(
raster_context_provider.get());
if (!disable_gmb_frames_ &&
CanUseGpuMemoryBufferReadback(source_frame->format(), gpu_factories_)) {
if (!accelerated_frame_pool_) {
accelerated_frame_pool_ =
media::RenderableGpuMemoryBufferVideoFramePool::Create(
std::make_unique<Context>(gpu_factories_,
raster_context_provider));
}
scoped_refptr<media::VideoFrame> dst_frame;
{
// Blocking is necessary to create the GpuMemoryBuffer from this thread.
base::ScopedAllowBaseSyncPrimitivesOutsideBlockingScope allow_wait;
dst_frame = accelerated_frame_pool_->MaybeCreateVideoFrame(
source_frame->coded_size(), gfx::ColorSpace::CreateREC709());
}
if (dst_frame) {
CHECK(dst_frame->HasSharedImage());
std::optional<gpu::SyncToken> blit_done_sync_token =
media::CopyRGBATextureToVideoFrame(
raster_context_provider.get(), source_frame->coded_size(),
source_frame->shared_image(), source_frame->acquire_sync_token(),
dst_frame.get());
if (blit_done_sync_token) {
// CopyRGBATextureToVideoFrame() operates on mailboxes and not frames,
// so we must manually copy over properties relevant to the encoder.
// TODO(https://crbug.com/1272852): Consider bailing out of this path if
// visible_rect or natural_size is much smaller than coded_size, or
// copying only the necessary part.
if (dst_frame->visible_rect() != source_frame->visible_rect() ||
dst_frame->natural_size() != source_frame->natural_size()) {
const auto dst_format = dst_frame->format();
dst_frame = media::VideoFrame::WrapVideoFrame(
std::move(dst_frame), dst_format, source_frame->visible_rect(),
source_frame->natural_size());
DCHECK(dst_frame);
}
dst_frame->set_timestamp(source_frame->timestamp());
dst_frame->set_metadata(source_frame->metadata());
auto* ri = raster_context_provider->RasterInterface();
DCHECK(ri);
#if BUILDFLAG(IS_WIN)
// For shared memory GMBs on Windows we needed to explicitly request a
// copy from the shared image GPU texture to the GMB.
CHECK(dst_frame->HasMappableGpuBuffer());
CHECK(!dst_frame->HasNativeGpuMemoryBuffer());
auto* sii = raster_context_provider->SharedImageInterface();
const auto& mailbox = dst_frame->shared_image()->mailbox();
sii->CopyToGpuMemoryBuffer(*blit_done_sync_token, mailbox);
// Synchronize RasterInterface with SharedImageInterface.
auto copy_to_gmb_done_sync_token = sii->GenUnverifiedSyncToken();
ri->WaitSyncTokenCHROMIUM(copy_to_gmb_done_sync_token.GetData());
#endif // BUILDFLAG(IS_WIN)
// RI::Finish() makes sure that CopyRGBATextureToVideoFrame() finished
// texture copy before we call ConstructVideoFrameFromGpu(). It's not
// the best way to wait for completion, but it's the only sync way
// to wait, and making this function async is currently impractical.
ri->Finish();
// We can just clear the sync token from the video frame now that we've
// synchronized with the GPU.
gpu::SyncToken empty_sync_token;
media::SimpleSyncTokenClient simple_client(empty_sync_token);
dst_frame->UpdateAcquireSyncToken(empty_sync_token);
dst_frame->UpdateReleaseSyncToken(&simple_client);
auto vf = ConstructVideoFrameFromGpu(std::move(dst_frame));
return vf;
}
}
DLOG(WARNING) << "Disabling GpuMemoryBuffer based readback due to failure.";
disable_gmb_frames_ = true;
accelerated_frame_pool_.reset();
}
auto* ri = scoped_context.RasterInterface();
if (!ri) {
return nullptr;
}
return media::ReadbackTextureBackedFrameToMemorySync(
*source_frame, ri, &pool_for_mapped_frames_);
}
scoped_refptr<media::VideoFrame>
WebRtcVideoFrameAdapter::SharedResources::ConstructVideoFrameFromGpu(
scoped_refptr<media::VideoFrame> source_frame) {
CHECK(source_frame);
// NV12 is the only supported format.
DCHECK_EQ(source_frame->format(), media::PIXEL_FORMAT_NV12);
DCHECK_EQ(source_frame->storage_type(),
media::VideoFrame::STORAGE_GPU_MEMORY_BUFFER);
// This is necessary because mapping may require waiting on IO thread,
// but webrtc API is synchronous.
base::ScopedAllowBaseSyncPrimitivesOutsideBlockingScope allow_wait;
return media::ConvertToMemoryMappedFrame(std::move(source_frame));
}
void WebRtcVideoFrameAdapter::SharedResources::SetFeedback(
const media::VideoCaptureFeedback& feedback) {
base::AutoLock auto_lock(feedback_lock_);
last_feedback_ = feedback;
}
media::VideoCaptureFeedback
WebRtcVideoFrameAdapter::SharedResources::GetFeedback() {
base::AutoLock auto_lock(feedback_lock_);
return last_feedback_;
}
WebRtcVideoFrameAdapter::SharedResources::SharedResources(
media::GpuVideoAcceleratorFactories* gpu_factories)
: gpu_factories_(gpu_factories) {}
WebRtcVideoFrameAdapter::SharedResources::~SharedResources() = default;
WebRtcVideoFrameAdapter::ScaledBufferSize::ScaledBufferSize(
gfx::Rect visible_rect,
gfx::Size natural_size)
: visible_rect(std::move(visible_rect)),
natural_size(std::move(natural_size)) {}
bool WebRtcVideoFrameAdapter::ScaledBufferSize::operator==(
const ScaledBufferSize& rhs) const {
return visible_rect == rhs.visible_rect && natural_size == rhs.natural_size;
}
bool WebRtcVideoFrameAdapter::ScaledBufferSize::operator!=(
const ScaledBufferSize& rhs) const {
return !(*this == rhs);
}
WebRtcVideoFrameAdapter::ScaledBufferSize
WebRtcVideoFrameAdapter::ScaledBufferSize::CropAndScale(
int offset_x,
int offset_y,
int crop_width,
int crop_height,
int scaled_width,
int scaled_height) const {
DCHECK_LT(offset_x, natural_size.width());
DCHECK_LT(offset_y, natural_size.height());
DCHECK_LE(offset_x + crop_width, natural_size.width());
DCHECK_LE(offset_y + crop_height, natural_size.height());
DCHECK_LE(scaled_width, crop_width);
DCHECK_LE(scaled_height, crop_height);
// Used to convert requested visible rect to the natural size, i.e. undo
// scaling.
double horizontal_scale =
static_cast<double>(visible_rect.width()) / natural_size.width();
double vertical_scale =
static_cast<double>(visible_rect.height()) / natural_size.height();
return ScaledBufferSize(
gfx::Rect(visible_rect.x() + offset_x * horizontal_scale,
visible_rect.y() + offset_y * vertical_scale,
crop_width * horizontal_scale, crop_height * vertical_scale),
gfx::Size(scaled_width, scaled_height));
}
WebRtcVideoFrameAdapter::ScaledBuffer::ScaledBuffer(
scoped_refptr<WebRtcVideoFrameAdapter> parent,
ScaledBufferSize size)
: parent_(std::move(parent)), size_(std::move(size)) {}
webrtc::scoped_refptr<webrtc::I420BufferInterface>
WebRtcVideoFrameAdapter::ScaledBuffer::ToI420() {
return parent_->GetOrCreateFrameBufferForSize(size_)->ToI420();
}
scoped_refptr<media::VideoFrame>
WebRtcVideoFrameAdapter::ScaledBuffer::getMediaVideoFrame() const {
return parent_->getMediaVideoFrame();
}
webrtc::scoped_refptr<webrtc::VideoFrameBuffer>
WebRtcVideoFrameAdapter::ScaledBuffer::GetMappedFrameBuffer(
webrtc::ArrayView<webrtc::VideoFrameBuffer::Type> types) {
auto frame_buffer = parent_->GetOrCreateFrameBufferForSize(size_);
return base::Contains(types, frame_buffer->type()) ? frame_buffer : nullptr;
}
webrtc::scoped_refptr<webrtc::VideoFrameBuffer>
WebRtcVideoFrameAdapter::ScaledBuffer::CropAndScale(int offset_x,
int offset_y,
int crop_width,
int crop_height,
int scaled_width,
int scaled_height) {
return webrtc::scoped_refptr<webrtc::VideoFrameBuffer>(
new webrtc::RefCountedObject<ScaledBuffer>(
parent_,
size_.CropAndScale(offset_x, offset_y, crop_width, crop_height,
scaled_width, scaled_height)));
}
std::string WebRtcVideoFrameAdapter::ScaledBuffer::storage_representation()
const {
return "ScaledBuffer(" + parent_->storage_representation() + ")";
}
WebRtcVideoFrameAdapter::WebRtcVideoFrameAdapter(
scoped_refptr<media::VideoFrame> frame)
: WebRtcVideoFrameAdapter(std::move(frame), nullptr) {}
WebRtcVideoFrameAdapter::WebRtcVideoFrameAdapter(
scoped_refptr<media::VideoFrame> frame,
scoped_refptr<SharedResources> shared_resources)
: frame_(std::move(frame)),
shared_resources_(std::move(shared_resources)),
full_size_(frame_->visible_rect(), frame_->natural_size()) {}
WebRtcVideoFrameAdapter::~WebRtcVideoFrameAdapter() {
// Mapping is always required when WebRTC uses software encoding. If hardware
// encoding is used, we may not always need to do mapping; however, if scaling
// is needed we may do mapping and downscaling here anyway. Therefore, notify
// the capturer that premapped frames are required.
if (shared_resources_) {
shared_resources_->SetFeedback(
media::VideoCaptureFeedback().RequireMapped(!adapted_frames_.empty()));
}
}
webrtc::scoped_refptr<webrtc::I420BufferInterface>
WebRtcVideoFrameAdapter::ToI420() {
return GetOrCreateFrameBufferForSize(full_size_)->ToI420();
}
webrtc::scoped_refptr<webrtc::VideoFrameBuffer>
WebRtcVideoFrameAdapter::GetMappedFrameBuffer(
webrtc::ArrayView<webrtc::VideoFrameBuffer::Type> types) {
auto frame_buffer = GetOrCreateFrameBufferForSize(full_size_);
return base::Contains(types, frame_buffer->type()) ? frame_buffer : nullptr;
}
// Soft-applies cropping and scaling. The result is a ScaledBuffer.
webrtc::scoped_refptr<webrtc::VideoFrameBuffer>
WebRtcVideoFrameAdapter::CropAndScale(int offset_x,
int offset_y,
int crop_width,
int crop_height,
int scaled_width,
int scaled_height) {
return webrtc::scoped_refptr<webrtc::VideoFrameBuffer>(
new webrtc::RefCountedObject<ScaledBuffer>(
this,
full_size_.CropAndScale(offset_x, offset_y, crop_width, crop_height,
scaled_width, scaled_height)));
}
webrtc::scoped_refptr<webrtc::VideoFrameBuffer>
WebRtcVideoFrameAdapter::GetOrCreateFrameBufferForSize(
const ScaledBufferSize& size) {
base::AutoLock auto_lock(adapted_frames_lock_);
// Does this buffer already exist?
for (const auto& adapted_frame : adapted_frames_) {
if (adapted_frame.size == size)
return adapted_frame.frame_buffer;
}
// Adapt the frame for this size.
adapted_frames_.push_back(AdaptBestFrame(size));
return adapted_frames_.back().frame_buffer;
}
WebRtcVideoFrameAdapter::AdaptedFrame WebRtcVideoFrameAdapter::AdaptBestFrame(
const ScaledBufferSize& size) const {
double requested_scale_factor =
static_cast<double>(size.natural_size.width()) /
size.visible_rect.width();
if (requested_scale_factor != 1.0) {
// Scaling is needed. Consider if there is a previously adapted frame we can
// scale from. This would be a smaller scaling operation than scaling from
// the full resolution `frame_`.
webrtc::scoped_refptr<webrtc::VideoFrameBuffer> best_webrtc_frame;
double best_frame_scale_factor = 1.0;
for (const auto& adapted_frame : adapted_frames_) {
// For simplicity, ignore frames where the cropping is not identical to a
// previous mapping.
if (size.visible_rect != adapted_frame.size.visible_rect) {
continue;
}
double scale_factor =
static_cast<double>(adapted_frame.size.natural_size.width()) /
adapted_frame.size.visible_rect.width();
if (scale_factor >= requested_scale_factor &&
scale_factor < best_frame_scale_factor) {
best_webrtc_frame = adapted_frame.frame_buffer;
best_frame_scale_factor = scale_factor;
}
}
if (best_webrtc_frame) {
webrtc::scoped_refptr<webrtc::VideoFrameBuffer> adapted_webrtc_frame =
best_webrtc_frame->Scale(size.natural_size.width(),
size.natural_size.height());
return AdaptedFrame(size, nullptr, adapted_webrtc_frame);
}
}
// Because |size| is expressed relative to the full size'd frame, we need to
// adjust the visible rect for the scale of the best frame.
gfx::Rect visible_rect(size.visible_rect.x(), size.visible_rect.y(),
size.visible_rect.width(), size.visible_rect.height());
if (IsApproxEquals(visible_rect, frame_->visible_rect())) {
// Due to rounding errors it is possible for |visible_rect| to be slightly
// off, which could either cause unnecessary cropping/scaling or cause
// crashes if |visible_rect| is not contained within
// |frame_->visible_rect()|, so we adjust it.
visible_rect = frame_->visible_rect();
}
CHECK(frame_->visible_rect().Contains(visible_rect))
<< visible_rect.ToString() << " is not contained within "
<< frame_->visible_rect().ToString();
// Wrapping is only needed if we need to crop or scale the best frame.
scoped_refptr<media::VideoFrame> media_frame = frame_;
if (frame_->visible_rect() != visible_rect ||
frame_->natural_size() != size.natural_size) {
media_frame = media::VideoFrame::WrapVideoFrame(
frame_, frame_->format(), visible_rect, size.natural_size);
}
webrtc::scoped_refptr<webrtc::VideoFrameBuffer> adapted_webrtc_frame =
ConvertToWebRtcVideoFrameBuffer(media_frame, shared_resources_);
return AdaptedFrame(size, media_frame, adapted_webrtc_frame);
}
scoped_refptr<media::VideoFrame>
WebRtcVideoFrameAdapter::GetAdaptedVideoBufferForTesting(
const ScaledBufferSize& size) {
base::AutoLock auto_lock(adapted_frames_lock_);
for (const auto& adapted_frame : adapted_frames_) {
if (adapted_frame.size == size)
return adapted_frame.video_frame;
}
return nullptr;
}
std::string WebRtcVideoFrameAdapter::storage_representation() const {
std::string result = media::VideoPixelFormatToString(frame_->format());
result.append(" ");
result.append(media::VideoFrame::StorageTypeToString(frame_->storage_type()));
return result;
}
} // namespace blink
|