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
|
// 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 "third_party/blink/renderer/platform/graphics/video_frame_image_util.h"
#include "base/logging.h"
#include "build/build_config.h"
#include "components/viz/common/gpu/raster_context_provider.h"
#include "components/viz/common/resources/release_callback.h"
#include "components/viz/common/resources/shared_image_format_utils.h"
#include "gpu/command_buffer/client/raster_interface.h"
#include "gpu/config/gpu_feature_info.h"
#include "media/base/video_frame.h"
#include "media/base/video_types.h"
#include "media/base/video_util.h"
#include "media/base/wait_and_replace_sync_token_client.h"
#include "media/renderers/paint_canvas_video_renderer.h"
#include "third_party/blink/renderer/platform/graphics/accelerated_static_bitmap_image.h"
#include "third_party/blink/renderer/platform/graphics/canvas_resource_provider.h"
#include "third_party/blink/renderer/platform/graphics/gpu/shared_gpu_context.h"
#include "third_party/blink/renderer/platform/graphics/skia/skia_utils.h"
#include "third_party/blink/renderer/platform/graphics/static_bitmap_image.h"
#include "third_party/blink/renderer/platform/scheduler/public/thread_scheduler.h"
#include "third_party/blink/renderer/platform/wtf/functional.h"
#include "third_party/skia/include/core/SkColorSpace.h"
#include "third_party/skia/include/core/SkImageInfo.h"
#include "third_party/skia/include/gpu/ganesh/GrDriverBugWorkarounds.h"
#include "ui/gfx/color_space.h"
#include "ui/gfx/geometry/rect_f.h"
#include "ui/gfx/geometry/skia_conversions.h"
namespace blink {
namespace {
bool CanUseZeroCopyImages(const media::VideoFrame& frame) {
// SharedImage optimization: create AcceleratedStaticBitmapImage directly.
// Disabled on Android because the hardware decode implementation may neuter
// frames, which would violate ImageBitmap requirements.
// TODO(sandersd): Handle YUV pixel formats.
// TODO(sandersd): Handle high bit depth formats.
// TODO(crbug.com/1203713): Figure out why macOS zero copy ends up with y-flip
// images in zero copy mode.
#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_MAC)
return false;
#else
// A VF created from MappableSI will have a mappable shared image but might
// not be intended for rendering in the tests.
// |frame.IsTexturableForTesting()| here checks whether the tests have
// explicitly marked the VF as non texturable or not.
return frame.HasSharedImage() && frame.IsTexturableForTesting() &&
(frame.format() == media::PIXEL_FORMAT_ARGB ||
frame.format() == media::PIXEL_FORMAT_XRGB ||
frame.format() == media::PIXEL_FORMAT_ABGR ||
frame.format() == media::PIXEL_FORMAT_XBGR ||
frame.format() == media::PIXEL_FORMAT_BGRA);
#endif
}
bool ShouldCreateAcceleratedImages(
viz::RasterContextProvider* raster_context_provider) {
if (!SharedGpuContext::IsGpuCompositingEnabled())
return false;
if (!raster_context_provider)
return false;
if (raster_context_provider->GetGpuFeatureInfo().IsWorkaroundEnabled(
DISABLE_IMAGEBITMAP_FROM_VIDEO_USING_GPU)) {
return false;
}
return true;
}
} // namespace
ImageOrientationEnum VideoTransformationToImageOrientation(
media::VideoTransformation transform) {
if (!transform.mirrored) {
switch (transform.rotation) {
case media::VIDEO_ROTATION_0:
return ImageOrientationEnum::kOriginTopLeft;
case media::VIDEO_ROTATION_90:
return ImageOrientationEnum::kOriginRightTop;
case media::VIDEO_ROTATION_180:
return ImageOrientationEnum::kOriginBottomRight;
case media::VIDEO_ROTATION_270:
return ImageOrientationEnum::kOriginLeftBottom;
}
}
switch (transform.rotation) {
case media::VIDEO_ROTATION_0:
return ImageOrientationEnum::kOriginTopRight;
case media::VIDEO_ROTATION_90:
return ImageOrientationEnum::kOriginLeftTop;
case media::VIDEO_ROTATION_180:
return ImageOrientationEnum::kOriginBottomLeft;
case media::VIDEO_ROTATION_270:
return ImageOrientationEnum::kOriginRightBottom;
}
}
media::VideoTransformation ImageOrientationToVideoTransformation(
ImageOrientationEnum orientation) {
switch (orientation) {
case ImageOrientationEnum::kOriginTopLeft:
return media::kNoTransformation;
case ImageOrientationEnum::kOriginTopRight:
return media::VideoTransformation(media::VIDEO_ROTATION_0,
/*mirrored=*/true);
case ImageOrientationEnum::kOriginBottomRight:
return media::VIDEO_ROTATION_180;
case ImageOrientationEnum::kOriginBottomLeft:
return media::VideoTransformation(media::VIDEO_ROTATION_180,
/*mirrored=*/true);
case ImageOrientationEnum::kOriginLeftTop:
return media::VideoTransformation(media::VIDEO_ROTATION_90,
/*mirrored=*/true);
case ImageOrientationEnum::kOriginRightTop:
return media::VIDEO_ROTATION_90;
case ImageOrientationEnum::kOriginRightBottom:
return media::VideoTransformation(media::VIDEO_ROTATION_270,
/*mirrored=*/true);
case ImageOrientationEnum::kOriginLeftBottom:
return media::VIDEO_ROTATION_270;
};
}
bool WillCreateAcceleratedImagesFromVideoFrame(const media::VideoFrame* frame) {
return CanUseZeroCopyImages(*frame) ||
ShouldCreateAcceleratedImages(GetRasterContextProvider().get());
}
scoped_refptr<StaticBitmapImage> CreateImageFromVideoFrame(
scoped_refptr<media::VideoFrame> frame,
bool allow_zero_copy_images,
CanvasResourceProvider* resource_provider,
media::PaintCanvasVideoRenderer* video_renderer,
const gfx::Rect& dest_rect,
bool prefer_tagged_orientation,
bool reinterpret_video_as_srgb) {
auto frame_color_space = frame->CompatRGBColorSpace();
DCHECK(frame);
const auto transform =
frame->metadata().transformation.value_or(media::kNoTransformation);
if (allow_zero_copy_images && !reinterpret_video_as_srgb &&
dest_rect.IsEmpty() && transform == media::kNoTransformation &&
CanUseZeroCopyImages(*frame)) {
// Hold a ref by storing it in the release callback.
auto release_callback = WTF::BindOnce(
[](scoped_refptr<media::VideoFrame> frame,
base::WeakPtr<WebGraphicsContext3DProviderWrapper> context_provider,
const gpu::SyncToken& sync_token, bool is_lost) {
if (is_lost || !context_provider)
return;
auto* ri = context_provider->ContextProvider().RasterInterface();
media::WaitAndReplaceSyncTokenClient client(ri);
frame->UpdateReleaseSyncToken(&client);
},
frame, SharedGpuContext::ContextProviderWrapper());
return AcceleratedStaticBitmapImage::CreateFromCanvasSharedImage(
frame->shared_image(), frame->acquire_sync_token(), 0u,
frame->shared_image()->size(), frame->shared_image()->format(),
frame->shared_image()->alpha_type(),
frame->shared_image()->color_space(),
// Pass nullptr for |context_provider_wrapper|, because we don't
// know which context the mailbox came from. It is used only to
// detect when the mailbox is invalid due to context loss, and is
// ignored when |is_cross_thread|.
base::WeakPtr<WebGraphicsContext3DProviderWrapper>(),
// Pass null |context_thread_ref|, again because we don't know
// which context the mailbox came from. This should always trigger
// |is_cross_thread|.
base::PlatformThreadRef(),
// The task runner is only used for |release_callback|.
ThreadScheduler::Current()->CleanupTaskRunner(),
std::move(release_callback));
}
gfx::Rect final_dest_rect = dest_rect;
if (final_dest_rect.IsEmpty()) {
// Since we're copying, the destination is always aligned with the origin.
const auto& visible_rect = frame->visible_rect();
final_dest_rect =
gfx::Rect(0, 0, visible_rect.width(), visible_rect.height());
if (transform.rotation == media::VIDEO_ROTATION_90 ||
transform.rotation == media::VIDEO_ROTATION_270) {
final_dest_rect.Transpose();
}
} else if (!resource_provider) {
DLOG(ERROR) << "An external CanvasResourceProvider must be provided when "
"providing a custom destination rect.";
return nullptr;
} else if (!gfx::Rect(resource_provider->Size()).Contains(final_dest_rect)) {
DLOG(ERROR)
<< "Provided CanvasResourceProvider is too small. Expected at least "
<< final_dest_rect.ToString() << " got "
<< resource_provider->Size().ToString();
return nullptr;
}
auto raster_context_provider = GetRasterContextProvider();
std::unique_ptr<CanvasResourceProvider> local_resource_provider;
// TODO(https://crbug.com/1341235): The choice of format and alpha type
// is inappropriate in many circumstances.
if (!resource_provider) {
local_resource_provider = CreateResourceProviderForVideoFrame(
final_dest_rect.size(), GetN32FormatForCanvas(), kPremul_SkAlphaType,
frame_color_space, raster_context_provider.get());
if (!local_resource_provider) {
DLOG(ERROR) << "Failed to create CanvasResourceProvider.";
return nullptr;
}
resource_provider = local_resource_provider.get();
}
if (resource_provider->IsAccelerated())
prefer_tagged_orientation = false;
if (!DrawVideoFrameIntoResourceProvider(
std::move(frame), resource_provider, raster_context_provider.get(),
final_dest_rect, video_renderer,
/*ignore_video_transformation=*/prefer_tagged_orientation,
/*reinterpret_video_as_srgb=*/reinterpret_video_as_srgb)) {
return nullptr;
}
return resource_provider->Snapshot(
FlushReason::kNon2DCanvas,
prefer_tagged_orientation
? VideoTransformationToImageOrientation(transform)
: ImageOrientationEnum::kDefault);
}
bool DrawVideoFrameIntoResourceProvider(
scoped_refptr<media::VideoFrame> frame,
CanvasResourceProvider* resource_provider,
viz::RasterContextProvider* raster_context_provider,
const gfx::Rect& dest_rect,
media::PaintCanvasVideoRenderer* video_renderer,
bool ignore_video_transformation,
bool reinterpret_video_as_srgb) {
DCHECK(frame);
DCHECK(resource_provider);
DCHECK(gfx::Rect(resource_provider->Size()).Contains(dest_rect));
// A VF created from MappableSI will have a mappable shared image but might
// not be intended for rendering in the tests.
// |frame.IsTexturableForTesting()| here checks whether the tests have
// explicitly marked the VF as non texturable or not.
if (frame->HasSharedImage() && frame->IsTexturableForTesting()) {
if (!raster_context_provider) {
DLOG(ERROR) << "Unable to process a texture backed VideoFrame w/o a "
"RasterContextProvider.";
return false; // Unable to get/create a shared main thread context.
}
if (!raster_context_provider->GrContext() &&
!raster_context_provider->ContextCapabilities().gpu_rasterization) {
DLOG(ERROR) << "Unable to process a texture backed VideoFrame w/o a "
"GrContext or OOP raster support.";
return false; // The context has been lost.
}
}
cc::PaintFlags media_flags;
media_flags.setAlphaf(1.0f);
media_flags.setFilterQuality(cc::PaintFlags::FilterQuality::kLow);
media_flags.setBlendMode(SkBlendMode::kSrc);
std::unique_ptr<media::PaintCanvasVideoRenderer> local_video_renderer;
if (!video_renderer) {
local_video_renderer = std::make_unique<media::PaintCanvasVideoRenderer>();
video_renderer = local_video_renderer.get();
}
// If the provider isn't accelerated, avoid GPU round trips to upload frame
// data from GpuMemoryBuffer backed frames which aren't mappable.
if (frame->HasMappableGpuBuffer() && !frame->IsMappable() &&
!resource_provider->IsAccelerated()) {
frame = media::ConvertToMemoryMappedFrame(std::move(frame));
if (!frame) {
DLOG(ERROR) << "Failed to map VideoFrame.";
return false;
}
}
media::PaintCanvasVideoRenderer::PaintParams params;
params.dest_rect = gfx::RectF(dest_rect);
params.transformation =
ignore_video_transformation
? media::kNoTransformation
: frame->metadata().transformation.value_or(media::kNoTransformation);
params.reinterpret_as_srgb = reinterpret_video_as_srgb;
video_renderer->Paint(frame.get(),
&resource_provider->Canvas(/*needs_will_draw*/ true),
media_flags, params, raster_context_provider);
return true;
}
void DrawVideoFrameIntoCanvas(scoped_refptr<media::VideoFrame> frame,
cc::PaintCanvas* canvas,
cc::PaintFlags& flags,
bool ignore_video_transformation) {
viz::RasterContextProvider* raster_context_provider = nullptr;
if (auto wrapper = SharedGpuContext::ContextProviderWrapper()) {
raster_context_provider =
wrapper->ContextProvider().RasterContextProvider();
}
media::PaintCanvasVideoRenderer video_renderer;
media::PaintCanvasVideoRenderer::PaintParams params;
params.dest_rect =
gfx::RectF(frame->natural_size().width(), frame->natural_size().height());
params.transformation =
ignore_video_transformation
? media::kNoTransformation
: frame->metadata().transformation.value_or(media::kNoTransformation);
video_renderer.Paint(frame, canvas, flags, params, raster_context_provider);
}
scoped_refptr<viz::RasterContextProvider> GetRasterContextProvider() {
auto wrapper = SharedGpuContext::ContextProviderWrapper();
if (!wrapper)
return nullptr;
return base::WrapRefCounted(
wrapper->ContextProvider().RasterContextProvider());
}
std::unique_ptr<CanvasResourceProvider> CreateResourceProviderForVideoFrame(
gfx::Size size,
viz::SharedImageFormat format,
SkAlphaType alpha_type,
const gfx::ColorSpace& color_space,
viz::RasterContextProvider* raster_context_provider) {
constexpr auto kShouldInitialize =
CanvasResourceProvider::ShouldInitialize::kNo;
if (!ShouldCreateAcceleratedImages(raster_context_provider)) {
return CanvasResourceProvider::CreateBitmapProvider(
size, format, alpha_type, color_space, kShouldInitialize);
}
return CanvasResourceProvider::CreateSharedImageProvider(
size, format, alpha_type, color_space, kShouldInitialize,
SharedGpuContext::ContextProviderWrapper(), RasterMode::kGPU,
gpu::SHARED_IMAGE_USAGE_DISPLAY_READ);
}
} // namespace blink
|