forked from mirrors/gecko-dev
In this patch, we ask the media engine to return a handle for shareable dcomp surface, which will then be packaged into a new texture data type and being shared with the GPU process via the video bridge. DcompSurfaceImage is the image which contains the handle texture data, which doesn't support being accessed in the content process. When the compositor uploads the image to the GPU process, the corresponding texture host will be created. The render texture host will be created by that texture host, and it will be used in DCLayerTree. In DCLayerTree, we create a new type of surface for our dcomp handle. DCSurfaceHandle will ask the render texture host to reconstruct the surface by the handle shared from the remote process (the handle is actually duplicated to the parent process first due to the sandbox policy, and then be duplicated to the GPU process later) DCSurfaceHandle will attach that surface to its visual in order to display the video frame directly. In the whole process, it's not possible for Gecko to access any decoded video data which is protected by the media engine itself. Depends on D149941 Differential Revision: https://phabricator.services.mozilla.com/D151019
169 lines
4.5 KiB
C++
169 lines
4.5 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "RenderTextureHostWrapper.h"
|
|
|
|
#include "mozilla/gfx/Logging.h"
|
|
#include "mozilla/webrender/RenderThread.h"
|
|
|
|
namespace mozilla {
|
|
namespace wr {
|
|
|
|
RenderTextureHostWrapper::RenderTextureHostWrapper(
|
|
ExternalImageId aExternalImageId)
|
|
: mExternalImageId(aExternalImageId) {
|
|
MOZ_COUNT_CTOR_INHERITED(RenderTextureHostWrapper, RenderTextureHost);
|
|
EnsureTextureHost();
|
|
}
|
|
|
|
RenderTextureHostWrapper::~RenderTextureHostWrapper() {
|
|
MOZ_COUNT_DTOR_INHERITED(RenderTextureHostWrapper, RenderTextureHost);
|
|
}
|
|
|
|
void RenderTextureHostWrapper::EnsureTextureHost() const {
|
|
if (!mTextureHost) {
|
|
mTextureHost = RenderThread::Get()->GetRenderTexture(mExternalImageId);
|
|
MOZ_ASSERT(mTextureHost);
|
|
if (!mTextureHost) {
|
|
gfxCriticalNoteOnce << "Failed to get RenderTextureHost for extId:"
|
|
<< AsUint64(mExternalImageId);
|
|
}
|
|
}
|
|
}
|
|
|
|
wr::WrExternalImage RenderTextureHostWrapper::Lock(
|
|
uint8_t aChannelIndex, gl::GLContext* aGL, wr::ImageRendering aRendering) {
|
|
if (!mTextureHost) {
|
|
return InvalidToWrExternalImage();
|
|
}
|
|
|
|
return mTextureHost->Lock(aChannelIndex, aGL, aRendering);
|
|
}
|
|
|
|
void RenderTextureHostWrapper::Unlock() {
|
|
if (mTextureHost) {
|
|
mTextureHost->Unlock();
|
|
}
|
|
}
|
|
|
|
void RenderTextureHostWrapper::ClearCachedResources() {
|
|
if (mTextureHost) {
|
|
mTextureHost->ClearCachedResources();
|
|
}
|
|
}
|
|
|
|
void RenderTextureHostWrapper::PrepareForUse() {
|
|
if (!mTextureHost) {
|
|
return;
|
|
}
|
|
mTextureHost->PrepareForUse();
|
|
}
|
|
|
|
void RenderTextureHostWrapper::NotifyForUse() {
|
|
if (!mTextureHost) {
|
|
return;
|
|
}
|
|
mTextureHost->NotifyForUse();
|
|
}
|
|
|
|
void RenderTextureHostWrapper::NotifyNotUsed() {
|
|
if (!mTextureHost) {
|
|
return;
|
|
}
|
|
mTextureHost->NotifyNotUsed();
|
|
}
|
|
|
|
bool RenderTextureHostWrapper::SyncObjectNeeded() {
|
|
if (!mTextureHost) {
|
|
return false;
|
|
}
|
|
return mTextureHost->SyncObjectNeeded();
|
|
}
|
|
|
|
RenderMacIOSurfaceTextureHost*
|
|
RenderTextureHostWrapper::AsRenderMacIOSurfaceTextureHost() {
|
|
if (!mTextureHost) {
|
|
return nullptr;
|
|
}
|
|
return mTextureHost->AsRenderMacIOSurfaceTextureHost();
|
|
}
|
|
|
|
RenderDXGITextureHost* RenderTextureHostWrapper::AsRenderDXGITextureHost() {
|
|
if (!mTextureHost) {
|
|
return nullptr;
|
|
}
|
|
return mTextureHost->AsRenderDXGITextureHost();
|
|
}
|
|
|
|
RenderDXGIYCbCrTextureHost*
|
|
RenderTextureHostWrapper::AsRenderDXGIYCbCrTextureHost() {
|
|
if (!mTextureHost) {
|
|
return nullptr;
|
|
}
|
|
return mTextureHost->AsRenderDXGIYCbCrTextureHost();
|
|
}
|
|
|
|
RenderDcompSurfaceTextureHost*
|
|
RenderTextureHostWrapper::AsRenderDcompSurfaceTextureHost() {
|
|
if (!mTextureHost) {
|
|
return nullptr;
|
|
}
|
|
return mTextureHost->AsRenderDcompSurfaceTextureHost();
|
|
}
|
|
|
|
RenderTextureHostSWGL* RenderTextureHostWrapper::EnsureRenderTextureHostSWGL()
|
|
const {
|
|
if (!mTextureHost) {
|
|
return nullptr;
|
|
}
|
|
return mTextureHost->AsRenderTextureHostSWGL();
|
|
}
|
|
|
|
size_t RenderTextureHostWrapper::GetPlaneCount() const {
|
|
if (RenderTextureHostSWGL* swglHost = EnsureRenderTextureHostSWGL()) {
|
|
return swglHost->GetPlaneCount();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
gfx::SurfaceFormat RenderTextureHostWrapper::GetFormat() const {
|
|
if (RenderTextureHostSWGL* swglHost = EnsureRenderTextureHostSWGL()) {
|
|
return swglHost->GetFormat();
|
|
}
|
|
return gfx::SurfaceFormat::UNKNOWN;
|
|
}
|
|
|
|
gfx::ColorDepth RenderTextureHostWrapper::GetColorDepth() const {
|
|
if (RenderTextureHostSWGL* swglHost = EnsureRenderTextureHostSWGL()) {
|
|
return swglHost->GetColorDepth();
|
|
}
|
|
return gfx::ColorDepth::COLOR_8;
|
|
}
|
|
|
|
gfx::YUVRangedColorSpace RenderTextureHostWrapper::GetYUVColorSpace() const {
|
|
if (RenderTextureHostSWGL* swglHost = EnsureRenderTextureHostSWGL()) {
|
|
return swglHost->GetYUVColorSpace();
|
|
}
|
|
return gfx::YUVRangedColorSpace::Default;
|
|
}
|
|
|
|
bool RenderTextureHostWrapper::MapPlane(RenderCompositor* aCompositor,
|
|
uint8_t aChannelIndex,
|
|
PlaneInfo& aPlaneInfo) {
|
|
if (RenderTextureHostSWGL* swglHost = EnsureRenderTextureHostSWGL()) {
|
|
return swglHost->MapPlane(aCompositor, aChannelIndex, aPlaneInfo);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void RenderTextureHostWrapper::UnmapPlanes() {
|
|
if (RenderTextureHostSWGL* swglHost = EnsureRenderTextureHostSWGL()) {
|
|
swglHost->UnmapPlanes();
|
|
}
|
|
}
|
|
|
|
} // namespace wr
|
|
} // namespace mozilla
|