2017-02-08 15:50:16 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* 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 "WebRenderImageHost.h"
|
|
|
|
|
2017-02-19 22:00:41 +03:00
|
|
|
#include "LayersLogging.h"
|
2017-02-08 15:50:16 +03:00
|
|
|
#include "mozilla/layers/Compositor.h" // for Compositor
|
|
|
|
#include "mozilla/layers/Effects.h" // for TexturedEffect, Effect, etc
|
|
|
|
#include "mozilla/layers/LayerManagerComposite.h" // for TexturedEffect, Effect, etc
|
2017-05-16 08:18:54 +03:00
|
|
|
#include "mozilla/layers/WebRenderBridgeParent.h"
|
2017-07-25 11:54:36 +03:00
|
|
|
#include "mozilla/layers/AsyncImagePipelineManager.h"
|
2017-02-08 15:50:16 +03:00
|
|
|
#include "nsAString.h"
|
|
|
|
#include "nsDebug.h" // for NS_WARNING, NS_ASSERTION
|
|
|
|
#include "nsPrintfCString.h" // for nsPrintfCString
|
|
|
|
#include "nsString.h" // for nsAutoCString
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
using namespace gfx;
|
|
|
|
|
|
|
|
namespace layers {
|
|
|
|
|
|
|
|
class ISurfaceAllocator;
|
|
|
|
|
|
|
|
WebRenderImageHost::WebRenderImageHost(const TextureInfo& aTextureInfo)
|
|
|
|
: CompositableHost(aTextureInfo)
|
|
|
|
, ImageComposite()
|
2017-05-16 08:18:54 +03:00
|
|
|
, mWrBridge(nullptr)
|
2017-05-18 13:50:03 +03:00
|
|
|
, mWrBridgeBindings(0)
|
2017-02-08 15:50:16 +03:00
|
|
|
{}
|
|
|
|
|
|
|
|
WebRenderImageHost::~WebRenderImageHost()
|
|
|
|
{
|
2017-05-16 08:18:54 +03:00
|
|
|
MOZ_ASSERT(!mWrBridge);
|
2017-02-08 15:50:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebRenderImageHost::UseTextureHost(const nsTArray<TimedTexture>& aTextures)
|
|
|
|
{
|
|
|
|
CompositableHost::UseTextureHost(aTextures);
|
|
|
|
MOZ_ASSERT(aTextures.Length() >= 1);
|
|
|
|
|
|
|
|
nsTArray<TimedImage> newImages;
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < aTextures.Length(); ++i) {
|
|
|
|
const TimedTexture& t = aTextures[i];
|
|
|
|
MOZ_ASSERT(t.mTexture);
|
|
|
|
if (i + 1 < aTextures.Length() &&
|
|
|
|
t.mProducerID == mLastProducerID && t.mFrameID < mLastFrameID) {
|
|
|
|
// Ignore frames before a frame that we already composited. We don't
|
|
|
|
// ever want to display these frames. This could be important if
|
|
|
|
// the frame producer adjusts timestamps (e.g. to track the audio clock)
|
|
|
|
// and the new frame times are earlier.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
TimedImage& img = *newImages.AppendElement();
|
|
|
|
img.mTextureHost = t.mTexture;
|
|
|
|
img.mTimeStamp = t.mTimeStamp;
|
|
|
|
img.mPictureRect = t.mPictureRect;
|
|
|
|
img.mFrameID = t.mFrameID;
|
|
|
|
img.mProducerID = t.mProducerID;
|
|
|
|
img.mTextureHost->SetCropRect(img.mPictureRect);
|
|
|
|
img.mTextureHost->Updated();
|
|
|
|
}
|
|
|
|
|
|
|
|
mImages.SwapElements(newImages);
|
|
|
|
newImages.Clear();
|
2017-04-27 19:34:54 +03:00
|
|
|
|
2017-06-02 10:11:34 +03:00
|
|
|
if (mWrBridge && GetAsyncRef()) {
|
|
|
|
mWrBridge->ScheduleComposition();
|
|
|
|
}
|
|
|
|
|
2017-04-27 19:34:54 +03:00
|
|
|
// Video producers generally send replacement images with the same frameID but
|
|
|
|
// slightly different timestamps in order to sync with the audio clock. This
|
|
|
|
// means that any CompositeUntil() call we made in Composite() may no longer
|
|
|
|
// guarantee that we'll composite until the next frame is ready. Fix that here.
|
2017-05-16 08:18:54 +03:00
|
|
|
if (mWrBridge && mLastFrameID >= 0) {
|
2017-07-25 11:54:36 +03:00
|
|
|
MOZ_ASSERT(mWrBridge->AsyncImageManager());
|
2017-04-27 19:34:54 +03:00
|
|
|
for (size_t i = 0; i < mImages.Length(); ++i) {
|
|
|
|
bool frameComesAfter = mImages[i].mFrameID > mLastFrameID ||
|
|
|
|
mImages[i].mProducerID != mLastProducerID;
|
|
|
|
if (frameComesAfter && !mImages[i].mTimeStamp.IsNull()) {
|
2017-07-25 11:54:36 +03:00
|
|
|
mWrBridge->AsyncImageManager()->CompositeUntil(mImages[i].mTimeStamp +
|
2017-04-27 19:34:54 +03:00
|
|
|
TimeDuration::FromMilliseconds(BIAS_TIME_MS));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-08 15:50:16 +03:00
|
|
|
}
|
|
|
|
|
2017-02-17 15:00:16 +03:00
|
|
|
void
|
|
|
|
WebRenderImageHost::UseComponentAlphaTextures(TextureHost* aTextureOnBlack,
|
|
|
|
TextureHost* aTextureOnWhite)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT_UNREACHABLE("unexpected to be called");
|
|
|
|
}
|
|
|
|
|
2017-02-08 15:50:16 +03:00
|
|
|
void
|
|
|
|
WebRenderImageHost::CleanupResources()
|
|
|
|
{
|
2017-02-17 15:00:16 +03:00
|
|
|
nsTArray<TimedImage> newImages;
|
|
|
|
mImages.SwapElements(newImages);
|
|
|
|
newImages.Clear();
|
2017-05-16 08:18:54 +03:00
|
|
|
SetCurrentTextureHost(nullptr);
|
2017-02-08 15:50:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebRenderImageHost::RemoveTextureHost(TextureHost* aTexture)
|
|
|
|
{
|
|
|
|
CompositableHost::RemoveTextureHost(aTexture);
|
|
|
|
|
|
|
|
for (int32_t i = mImages.Length() - 1; i >= 0; --i) {
|
|
|
|
if (mImages[i].mTextureHost == aTexture) {
|
|
|
|
aTexture->UnbindTextureSource();
|
|
|
|
mImages.RemoveElementAt(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TimeStamp
|
|
|
|
WebRenderImageHost::GetCompositionTime() const
|
|
|
|
{
|
2017-04-27 19:34:54 +03:00
|
|
|
TimeStamp time;
|
2017-05-16 08:18:54 +03:00
|
|
|
if (mWrBridge) {
|
2017-07-25 11:54:36 +03:00
|
|
|
MOZ_ASSERT(mWrBridge->AsyncImageManager());
|
|
|
|
time = mWrBridge->AsyncImageManager()->GetCompositionTime();
|
2017-04-27 19:34:54 +03:00
|
|
|
}
|
|
|
|
return time;
|
2017-02-08 15:50:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
TextureHost*
|
|
|
|
WebRenderImageHost::GetAsTextureHost(IntRect* aPictureRect)
|
|
|
|
{
|
2017-03-07 13:37:28 +03:00
|
|
|
TimedImage* img = ChooseImage();
|
|
|
|
if (img) {
|
|
|
|
return img->mTextureHost;
|
|
|
|
}
|
2017-02-08 15:50:16 +03:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-04-27 19:34:54 +03:00
|
|
|
TextureHost*
|
|
|
|
WebRenderImageHost::GetAsTextureHostForComposite()
|
|
|
|
{
|
2017-07-31 07:00:06 +03:00
|
|
|
if (!mWrBridge) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-04-27 19:34:54 +03:00
|
|
|
int imageIndex = ChooseImageIndex();
|
|
|
|
if (imageIndex < 0) {
|
2017-05-16 08:18:54 +03:00
|
|
|
SetCurrentTextureHost(nullptr);
|
2017-04-27 19:34:54 +03:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-07-31 07:00:06 +03:00
|
|
|
if (uint32_t(imageIndex) + 1 < mImages.Length()) {
|
2017-07-25 11:54:36 +03:00
|
|
|
MOZ_ASSERT(mWrBridge->AsyncImageManager());
|
|
|
|
mWrBridge->AsyncImageManager()->CompositeUntil(mImages[imageIndex + 1].mTimeStamp + TimeDuration::FromMilliseconds(BIAS_TIME_MS));
|
2017-04-27 19:34:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
TimedImage* img = &mImages[imageIndex];
|
|
|
|
|
|
|
|
if (mLastFrameID != img->mFrameID || mLastProducerID != img->mProducerID) {
|
2017-07-31 07:00:06 +03:00
|
|
|
if (mAsyncRef) {
|
|
|
|
ImageCompositeNotificationInfo info;
|
|
|
|
info.mImageBridgeProcessId = mAsyncRef.mProcessId;
|
|
|
|
info.mNotification = ImageCompositeNotification(
|
|
|
|
mAsyncRef.mHandle,
|
|
|
|
img->mTimeStamp, mWrBridge->AsyncImageManager()->GetCompositionTime(),
|
|
|
|
img->mFrameID, img->mProducerID);
|
|
|
|
mWrBridge->AsyncImageManager()->AppendImageCompositeNotification(info);
|
|
|
|
}
|
2017-04-27 19:34:54 +03:00
|
|
|
mLastFrameID = img->mFrameID;
|
|
|
|
mLastProducerID = img->mProducerID;
|
|
|
|
}
|
2017-05-16 08:18:54 +03:00
|
|
|
SetCurrentTextureHost(img->mTextureHost);
|
2017-07-31 07:00:06 +03:00
|
|
|
|
|
|
|
// XXX Add UpdateBias()
|
|
|
|
|
2017-05-16 08:18:54 +03:00
|
|
|
return mCurrentTextureHost;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebRenderImageHost::SetCurrentTextureHost(TextureHost* aTexture)
|
|
|
|
{
|
|
|
|
if (aTexture == mCurrentTextureHost.get()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mWrBridge &&
|
|
|
|
!!mCurrentTextureHost &&
|
|
|
|
mCurrentTextureHost != aTexture &&
|
|
|
|
mCurrentTextureHost->AsWebRenderTextureHost()) {
|
2017-07-25 11:54:36 +03:00
|
|
|
MOZ_ASSERT(mWrBridge->AsyncImageManager());
|
2017-05-16 08:18:54 +03:00
|
|
|
wr::PipelineId piplineId = mWrBridge->PipelineId();
|
|
|
|
wr::Epoch epoch = mWrBridge->WrEpoch();
|
2017-07-25 11:54:36 +03:00
|
|
|
mWrBridge->AsyncImageManager()->HoldExternalImage(
|
2017-05-16 08:18:54 +03:00
|
|
|
piplineId,
|
|
|
|
epoch,
|
|
|
|
mCurrentTextureHost->AsWebRenderTextureHost());
|
|
|
|
}
|
|
|
|
|
|
|
|
mCurrentTextureHost = aTexture;
|
2017-04-27 19:34:54 +03:00
|
|
|
}
|
|
|
|
|
2017-02-08 15:50:16 +03:00
|
|
|
void WebRenderImageHost::Attach(Layer* aLayer,
|
2017-03-22 06:32:56 +03:00
|
|
|
TextureSourceProvider* aProvider,
|
2017-02-08 15:50:16 +03:00
|
|
|
AttachFlags aFlags)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-03-22 06:32:55 +03:00
|
|
|
WebRenderImageHost::Composite(Compositor* aCompositor,
|
|
|
|
LayerComposite* aLayer,
|
2017-02-08 15:50:16 +03:00
|
|
|
EffectChain& aEffectChain,
|
|
|
|
float aOpacity,
|
|
|
|
const gfx::Matrix4x4& aTransform,
|
|
|
|
const gfx::SamplingFilter aSamplingFilter,
|
|
|
|
const gfx::IntRect& aClipRect,
|
|
|
|
const nsIntRegion* aVisibleRegion,
|
|
|
|
const Maybe<gfx::Polygon>& aGeometry)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT_UNREACHABLE("unexpected to be called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-03-22 06:32:56 +03:00
|
|
|
WebRenderImageHost::SetTextureSourceProvider(TextureSourceProvider* aProvider)
|
2017-02-08 15:50:16 +03:00
|
|
|
{
|
2017-03-22 06:32:56 +03:00
|
|
|
if (mTextureSourceProvider != aProvider) {
|
2017-02-08 15:50:16 +03:00
|
|
|
for (auto& img : mImages) {
|
2017-03-22 06:32:56 +03:00
|
|
|
img.mTextureHost->SetTextureSourceProvider(aProvider);
|
2017-02-08 15:50:16 +03:00
|
|
|
}
|
|
|
|
}
|
2017-03-22 06:32:56 +03:00
|
|
|
CompositableHost::SetTextureSourceProvider(aProvider);
|
2017-02-08 15:50:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebRenderImageHost::PrintInfo(std::stringstream& aStream, const char* aPrefix)
|
|
|
|
{
|
|
|
|
aStream << aPrefix;
|
|
|
|
aStream << nsPrintfCString("WebRenderImageHost (0x%p)", this).get();
|
|
|
|
|
|
|
|
nsAutoCString pfx(aPrefix);
|
|
|
|
pfx += " ";
|
|
|
|
for (auto& img : mImages) {
|
|
|
|
aStream << "\n";
|
|
|
|
img.mTextureHost->PrintInfo(aStream, pfx.get());
|
|
|
|
AppendToString(aStream, img.mPictureRect, " [picture-rect=", "]");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebRenderImageHost::Dump(std::stringstream& aStream,
|
|
|
|
const char* aPrefix,
|
|
|
|
bool aDumpHtml)
|
|
|
|
{
|
|
|
|
for (auto& img : mImages) {
|
|
|
|
aStream << aPrefix;
|
|
|
|
aStream << (aDumpHtml ? "<ul><li>TextureHost: "
|
|
|
|
: "TextureHost: ");
|
|
|
|
DumpTextureHost(aStream, img.mTextureHost);
|
|
|
|
aStream << (aDumpHtml ? " </li></ul> " : " ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<gfx::DataSourceSurface>
|
|
|
|
WebRenderImageHost::GetAsSurface()
|
|
|
|
{
|
|
|
|
TimedImage* img = ChooseImage();
|
|
|
|
if (img) {
|
|
|
|
return img->mTextureHost->GetAsSurface();
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
WebRenderImageHost::Lock()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT_UNREACHABLE("unexpected to be called");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebRenderImageHost::Unlock()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT_UNREACHABLE("unexpected to be called");
|
|
|
|
}
|
|
|
|
|
|
|
|
IntSize
|
|
|
|
WebRenderImageHost::GetImageSize() const
|
|
|
|
{
|
|
|
|
const TimedImage* img = ChooseImage();
|
|
|
|
if (img) {
|
2017-08-14 15:29:28 +03:00
|
|
|
return IntSize(img->mPictureRect.Width(), img->mPictureRect.Height());
|
2017-02-08 15:50:16 +03:00
|
|
|
}
|
|
|
|
return IntSize();
|
|
|
|
}
|
|
|
|
|
2017-05-16 08:18:54 +03:00
|
|
|
void
|
|
|
|
WebRenderImageHost::SetWrBridge(WebRenderBridgeParent* aWrBridge)
|
|
|
|
{
|
2017-05-18 13:50:03 +03:00
|
|
|
// For image hosts created through ImageBridgeParent, there may be multiple
|
|
|
|
// references to it due to the order of creation and freeing of layers by
|
|
|
|
// the layer tree. However this should be limited to things such as video
|
|
|
|
// which will not be reused across different WebRenderBridgeParent objects.
|
|
|
|
MOZ_ASSERT(aWrBridge);
|
|
|
|
MOZ_ASSERT(!mWrBridge || mWrBridge == aWrBridge);
|
2017-05-16 08:18:54 +03:00
|
|
|
mWrBridge = aWrBridge;
|
2017-05-18 13:50:03 +03:00
|
|
|
++mWrBridgeBindings;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebRenderImageHost::ClearWrBridge()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mWrBridgeBindings > 0);
|
|
|
|
--mWrBridgeBindings;
|
|
|
|
if (mWrBridgeBindings == 0) {
|
|
|
|
SetCurrentTextureHost(nullptr);
|
|
|
|
mWrBridge = nullptr;
|
|
|
|
}
|
2017-05-16 08:18:54 +03:00
|
|
|
}
|
|
|
|
|
2017-02-08 15:50:16 +03:00
|
|
|
} // namespace layers
|
|
|
|
} // namespace mozilla
|