mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 17:31:47 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
122
gfx/layers/ipc/VideoBridgeChild.cpp
Normal file
122
gfx/layers/ipc/VideoBridgeChild.cpp
Normal file
|
|
@ -0,0 +1,122 @@
|
|||
/* -*- 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 "VideoBridgeChild.h"
|
||||
#include "VideoBridgeParent.h"
|
||||
#include "CompositorThread.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace layers {
|
||||
|
||||
StaticRefPtr<VideoBridgeChild> sVideoBridgeChildSingleton;
|
||||
|
||||
/* static */ void
|
||||
VideoBridgeChild::Startup()
|
||||
{
|
||||
sVideoBridgeChildSingleton = new VideoBridgeChild();
|
||||
RefPtr<VideoBridgeParent> parent = new VideoBridgeParent();
|
||||
|
||||
MessageLoop* loop = CompositorThreadHolder::Loop();
|
||||
|
||||
sVideoBridgeChildSingleton->Open(parent->GetIPCChannel(),
|
||||
loop,
|
||||
ipc::ChildSide);
|
||||
sVideoBridgeChildSingleton->mIPDLSelfRef = sVideoBridgeChildSingleton;
|
||||
parent->SetOtherProcessId(base::GetCurrentProcId());
|
||||
}
|
||||
|
||||
/* static */ void
|
||||
VideoBridgeChild::Shutdown()
|
||||
{
|
||||
if (sVideoBridgeChildSingleton) {
|
||||
sVideoBridgeChildSingleton->Close();
|
||||
sVideoBridgeChildSingleton = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
VideoBridgeChild::VideoBridgeChild()
|
||||
: mMessageLoop(MessageLoop::current())
|
||||
, mCanSend(true)
|
||||
{
|
||||
}
|
||||
|
||||
VideoBridgeChild::~VideoBridgeChild()
|
||||
{
|
||||
}
|
||||
|
||||
VideoBridgeChild*
|
||||
VideoBridgeChild::GetSingleton()
|
||||
{
|
||||
return sVideoBridgeChildSingleton;
|
||||
}
|
||||
|
||||
bool
|
||||
VideoBridgeChild::AllocUnsafeShmem(size_t aSize,
|
||||
ipc::SharedMemory::SharedMemoryType aType,
|
||||
ipc::Shmem* aShmem)
|
||||
{
|
||||
return PVideoBridgeChild::AllocUnsafeShmem(aSize, aType, aShmem);
|
||||
}
|
||||
|
||||
bool
|
||||
VideoBridgeChild::AllocShmem(size_t aSize,
|
||||
ipc::SharedMemory::SharedMemoryType aType,
|
||||
ipc::Shmem* aShmem)
|
||||
{
|
||||
MOZ_ASSERT(CanSend());
|
||||
return PVideoBridgeChild::AllocShmem(aSize, aType, aShmem);
|
||||
}
|
||||
|
||||
bool
|
||||
VideoBridgeChild::DeallocShmem(ipc::Shmem& aShmem)
|
||||
{
|
||||
return PVideoBridgeChild::DeallocShmem(aShmem);
|
||||
}
|
||||
|
||||
PTextureChild*
|
||||
VideoBridgeChild::AllocPTextureChild(const SurfaceDescriptor&,
|
||||
const LayersBackend&,
|
||||
const TextureFlags&,
|
||||
const uint64_t& aSerial)
|
||||
{
|
||||
MOZ_ASSERT(CanSend());
|
||||
return TextureClient::CreateIPDLActor();
|
||||
}
|
||||
|
||||
bool
|
||||
VideoBridgeChild::DeallocPTextureChild(PTextureChild* actor)
|
||||
{
|
||||
return TextureClient::DestroyIPDLActor(actor);
|
||||
}
|
||||
|
||||
void
|
||||
VideoBridgeChild::ActorDestroy(ActorDestroyReason aWhy)
|
||||
{
|
||||
mCanSend = false;
|
||||
}
|
||||
|
||||
void
|
||||
VideoBridgeChild::DeallocPVideoBridgeChild()
|
||||
{
|
||||
mIPDLSelfRef = nullptr;
|
||||
}
|
||||
|
||||
PTextureChild*
|
||||
VideoBridgeChild::CreateTexture(const SurfaceDescriptor& aSharedData,
|
||||
LayersBackend aLayersBackend,
|
||||
TextureFlags aFlags,
|
||||
uint64_t aSerial)
|
||||
{
|
||||
MOZ_ASSERT(CanSend());
|
||||
return SendPTextureConstructor(aSharedData, aLayersBackend, aFlags, aSerial);
|
||||
}
|
||||
|
||||
bool VideoBridgeChild::IsSameProcess() const
|
||||
{
|
||||
return OtherPid() == base::GetCurrentProcId();
|
||||
}
|
||||
|
||||
} // namespace layers
|
||||
} // namespace mozilla
|
||||
Loading…
Add table
Add a link
Reference in a new issue