mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
c4d71010c8
- Bug 1200445 - Expose android native apps trough the navigator.mozApps api r=snorp,ferjm (5f2e5df93a)
- Bug 1199844 - limit webapp debug logging to webapp tests; r=fabrice (59bf73deb2)
- Bug 1199295 - Pass right loadingPrincipal to uriloader/prefetch - dom/apps (r=fabrice) (8bdab29703)
- Bug 1213170 - followup r=bustage on a CLOSED TREE (9ac5f0a677)
- Bug 1194243 - Keep the message manager alive in doUninstall() to be able to signal the result back; r=myk (3093189372)
- Bug 1154864 - Fix getScopeByLocalId use in PushService.jsm r=nsm (0f67e9de60)
- Bug 1196963 - Make extensions work without being in developer mode r=jduell (e120108628)
- Bug 1200851 - DataStoreService should update its permission map when the homescreen changes, r=fabrice (1582ac0320)
- Bug 1200851 - DataStoreService should update its permission map when the homescreen changes, r=fabrice (7949555b43)
- Bug 1186805 - Replace nsBaseHashtable::EnumerateRead() calls in dom/datastore/ with iterators, r=njn (0c6f234576)
- Bug 1208355 - Fix -Wshadow warnings in dom/datastore. r=baku (8b617685d4)
- Bug 1214092 - Part 1 of 1: Exposed WebSpeech API SpeechRecognition Interface to privileged apps. r=smaug (e33c92d4e8)
- Bug 1218337 - Part 1 of 1: Introduced permission 'speech-recognition' and used it in place of the app-check. r=smaug (1cdf67a55f)
- Bug 1051604 - Adapt VAD strategy on SpeechRecognition to be less strict on some devices with poor mics. r=smaug (911258b56e)
- Bug 1111135 - Part 1: Add audio-capture:3gpp perimission. r=fabrice (c98bee92a6)
- bit of 1196988 (a334242521)
- Bug 1193183 - Correctly implement SpeechRecognitionAlternative::confidence using ps_get_prob(). r=anatal (14a881b44f)
- Bug 1197455 - Call ps_set_search() only after successful grammar compilation. r=anatal (55d37ea0fb)
- Bug 1156560 - Prefer old CDMs on update if they are in use - r=cpearce (b763f1044a)
- Bug 1228215 - Add helper to do dir enumeration in GMPServiceParent. r=jwwang (1d3bc1eef0)
- Bug 1228215 - Store each GMP's storage and nodeId salt in separate directories. r=jwwang (20fb2b7a18)
- Bug 1172396 - Update GMP trial creation pref from chrome process - r=cpearce (123d97d03a)
- Bug 1228215 - Add a 'gmpName' parameter to GMPService::GetNodeId(), so each GMP can see a different nodeId for the same origin. r=jwwang (fceaef0c11)
- fixes for no EME (b70879a799)
- Bug 1228215 - Migrate existing GMP storage from post-42 pre-45 location to 45 location. r=jwwang (9da581744d)
- missing crash stuff (b537d416b3)
- Bug 1187193 - Use UserData() instead of Data() in ConstIter loops that used to be EnumerateRead's. r=njn (2a4c297f36)
- Bug 1211337 - Added crash report annotations tracking sync shutdown (60b3004394)
- Bug 1173195 - Don't assert success until successful in GMPSharedMemManager. r=edwin (3844ba6e20)
- Bug 1208289 - Log outstanding frames in GMP DrainComplete() and detect dropped ResetComplete. r=jwwang (eccf4dbecc)
- Bug 1224442: null-check GMP Parent Shmem messages from the Child to handle messages after shutdown r=cpearce (d12b9c57c2)
- add some defines (3c4fc2d5b9)
- Bug 1220929 - RemotePageManager should let us get all ports for a browser. r=Mossop (402fc2a536)
- Bug 1220929 - RemotePageManager should use documentURI and allow special URLs with query params. r=Mossop (9fc73b228e)
- Bug 1144422 - fix lightweight theme code to deal with invalid CSS so we don't mistakenly keep text colors, r=jaws (8b47394d6c)
- Bug 1229519: Fix download managers to pass eslint checks. r=mak (e4a684db58)
- Bug 1180113 - Introducing g2p algorithm inside pocketsphinx to allow out of dictionary words to be added to grammars. r=smaug (b3a23daf56)
- Bug 1202989 - Added check for 0 length phones string in addition to NULL. r=andrenatal (387faeb88c)
- Bug 1171082 - Now _WIN32_WINNT is defined to 0x0400 only if it is not defined, 0x0400 is the minimal version. Also modified update.sh to do this. r=smaug (bb7dd37c00)
- bits of Bug 1165518 - Part 2: Replace prlog.h with Logging.h. (fc0ca3ca20)
- Bug 1188970: Fix usage of forward slash in constructing webrtc trace file path. r=rjesup (8518b84be1)
- Bug 1225682 - Don't use nsAuto{,C}String as class member variables in docshell/. r=bz (839a57580e)
- Bug 1220916 - Remove "WARNING: TimelineConsumers could not be initialized" when running gtests, r=fitzgen (c89330afcc)
- Bug 1217836 - Add a readme file to our timeline backend, r=jsantell (df0ea6b198)
- enable shadow (dcad5bdb7a)
382 lines
10 KiB
C++
382 lines
10 KiB
C++
/* -*- Mode: C++; tab-width: 2; 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 "GMPVideoEncoderParent.h"
|
|
#include "mozilla/Logging.h"
|
|
#include "GMPVideoi420FrameImpl.h"
|
|
#include "GMPVideoEncodedFrameImpl.h"
|
|
#include "mozilla/unused.h"
|
|
#include "GMPMessageUtils.h"
|
|
#include "nsAutoRef.h"
|
|
#include "GMPContentParent.h"
|
|
#include "mozilla/gmp/GMPTypes.h"
|
|
#include "nsThread.h"
|
|
#include "nsThreadUtils.h"
|
|
#include "runnable_utils.h"
|
|
#include "GMPUtils.h"
|
|
|
|
namespace mozilla {
|
|
|
|
#ifdef LOG
|
|
#undef LOG
|
|
#endif
|
|
|
|
extern LogModule* GetGMPLog();
|
|
|
|
#define LOGD(msg) MOZ_LOG(GetGMPLog(), mozilla::LogLevel::Debug, msg)
|
|
#define LOG(level, msg) MOZ_LOG(GetGMPLog(), (level), msg)
|
|
|
|
#ifdef __CLASS__
|
|
#undef __CLASS__
|
|
#endif
|
|
#define __CLASS__ "GMPVideoEncoderParent"
|
|
|
|
namespace gmp {
|
|
|
|
// States:
|
|
// Initial: mIsOpen == false
|
|
// on InitDecode success -> Open
|
|
// on Shutdown -> Dead
|
|
// Open: mIsOpen == true
|
|
// on Close -> Dead
|
|
// on ActorDestroy -> Dead
|
|
// on Shutdown -> Dead
|
|
// Dead: mIsOpen == false
|
|
|
|
GMPVideoEncoderParent::GMPVideoEncoderParent(GMPContentParent *aPlugin)
|
|
: GMPSharedMemManager(aPlugin),
|
|
mIsOpen(false),
|
|
mShuttingDown(false),
|
|
mActorDestroyed(false),
|
|
mPlugin(aPlugin),
|
|
mCallback(nullptr),
|
|
mVideoHost(this),
|
|
mPluginId(aPlugin->GetPluginId())
|
|
{
|
|
MOZ_ASSERT(mPlugin);
|
|
|
|
nsresult rv = NS_NewNamedThread("GMPEncoded", getter_AddRefs(mEncodedThread));
|
|
if (NS_FAILED(rv)) {
|
|
MOZ_CRASH();
|
|
}
|
|
}
|
|
|
|
GMPVideoEncoderParent::~GMPVideoEncoderParent()
|
|
{
|
|
if (mEncodedThread) {
|
|
mEncodedThread->Shutdown();
|
|
}
|
|
}
|
|
|
|
GMPVideoHostImpl&
|
|
GMPVideoEncoderParent::Host()
|
|
{
|
|
return mVideoHost;
|
|
}
|
|
|
|
// Note: may be called via Terminated()
|
|
void
|
|
GMPVideoEncoderParent::Close()
|
|
{
|
|
LOGD(("%s::%s: %p", __CLASS__, __FUNCTION__, this));
|
|
MOZ_ASSERT(mPlugin->GMPThread() == NS_GetCurrentThread());
|
|
// Consumer is done with us; we can shut down. No more callbacks should
|
|
// be made to mCallback. Note: do this before Shutdown()!
|
|
mCallback = nullptr;
|
|
// Let Shutdown mark us as dead so it knows if we had been alive
|
|
|
|
// In case this is the last reference
|
|
RefPtr<GMPVideoEncoderParent> kungfudeathgrip(this);
|
|
Release();
|
|
Shutdown();
|
|
}
|
|
|
|
GMPErr
|
|
GMPVideoEncoderParent::InitEncode(const GMPVideoCodec& aCodecSettings,
|
|
const nsTArray<uint8_t>& aCodecSpecific,
|
|
GMPVideoEncoderCallbackProxy* aCallback,
|
|
int32_t aNumberOfCores,
|
|
uint32_t aMaxPayloadSize)
|
|
{
|
|
LOGD(("%s::%s: %p", __CLASS__, __FUNCTION__, this));
|
|
if (mIsOpen) {
|
|
NS_WARNING("Trying to re-init an in-use GMP video encoder!");
|
|
return GMPGenericErr;;
|
|
}
|
|
|
|
MOZ_ASSERT(mPlugin->GMPThread() == NS_GetCurrentThread());
|
|
|
|
if (!aCallback) {
|
|
return GMPGenericErr;
|
|
}
|
|
mCallback = aCallback;
|
|
|
|
if (!SendInitEncode(aCodecSettings, aCodecSpecific, aNumberOfCores, aMaxPayloadSize)) {
|
|
return GMPGenericErr;
|
|
}
|
|
mIsOpen = true;
|
|
|
|
// Async IPC, we don't have access to a return value.
|
|
return GMPNoErr;
|
|
}
|
|
|
|
GMPErr
|
|
GMPVideoEncoderParent::Encode(GMPUniquePtr<GMPVideoi420Frame> aInputFrame,
|
|
const nsTArray<uint8_t>& aCodecSpecificInfo,
|
|
const nsTArray<GMPVideoFrameType>& aFrameTypes)
|
|
{
|
|
if (!mIsOpen) {
|
|
NS_WARNING("Trying to use an dead GMP video encoder");
|
|
return GMPGenericErr;
|
|
}
|
|
|
|
MOZ_ASSERT(mPlugin->GMPThread() == NS_GetCurrentThread());
|
|
|
|
GMPUniquePtr<GMPVideoi420FrameImpl> inputFrameImpl(
|
|
static_cast<GMPVideoi420FrameImpl*>(aInputFrame.release()));
|
|
|
|
// Very rough kill-switch if the plugin stops processing. If it's merely
|
|
// hung and continues, we'll come back to life eventually.
|
|
// 3* is because we're using 3 buffers per frame for i420 data for now.
|
|
if ((NumInUse(GMPSharedMem::kGMPFrameData) > 3*GMPSharedMem::kGMPBufLimit) ||
|
|
(NumInUse(GMPSharedMem::kGMPEncodedData) > GMPSharedMem::kGMPBufLimit)) {
|
|
return GMPGenericErr;
|
|
}
|
|
|
|
GMPVideoi420FrameData frameData;
|
|
inputFrameImpl->InitFrameData(frameData);
|
|
|
|
if (!SendEncode(frameData,
|
|
aCodecSpecificInfo,
|
|
aFrameTypes)) {
|
|
return GMPGenericErr;
|
|
}
|
|
|
|
// Async IPC, we don't have access to a return value.
|
|
return GMPNoErr;
|
|
}
|
|
|
|
GMPErr
|
|
GMPVideoEncoderParent::SetChannelParameters(uint32_t aPacketLoss, uint32_t aRTT)
|
|
{
|
|
if (!mIsOpen) {
|
|
NS_WARNING("Trying to use an invalid GMP video encoder!");
|
|
return GMPGenericErr;
|
|
}
|
|
|
|
MOZ_ASSERT(mPlugin->GMPThread() == NS_GetCurrentThread());
|
|
|
|
if (!SendSetChannelParameters(aPacketLoss, aRTT)) {
|
|
return GMPGenericErr;
|
|
}
|
|
|
|
// Async IPC, we don't have access to a return value.
|
|
return GMPNoErr;
|
|
}
|
|
|
|
GMPErr
|
|
GMPVideoEncoderParent::SetRates(uint32_t aNewBitRate, uint32_t aFrameRate)
|
|
{
|
|
if (!mIsOpen) {
|
|
NS_WARNING("Trying to use an dead GMP video decoder");
|
|
return GMPGenericErr;
|
|
}
|
|
|
|
MOZ_ASSERT(mPlugin->GMPThread() == NS_GetCurrentThread());
|
|
|
|
if (!SendSetRates(aNewBitRate, aFrameRate)) {
|
|
return GMPGenericErr;
|
|
}
|
|
|
|
// Async IPC, we don't have access to a return value.
|
|
return GMPNoErr;
|
|
}
|
|
|
|
GMPErr
|
|
GMPVideoEncoderParent::SetPeriodicKeyFrames(bool aEnable)
|
|
{
|
|
if (!mIsOpen) {
|
|
NS_WARNING("Trying to use an invalid GMP video encoder!");
|
|
return GMPGenericErr;
|
|
}
|
|
|
|
MOZ_ASSERT(mPlugin->GMPThread() == NS_GetCurrentThread());
|
|
|
|
if (!SendSetPeriodicKeyFrames(aEnable)) {
|
|
return GMPGenericErr;
|
|
}
|
|
|
|
// Async IPC, we don't have access to a return value.
|
|
return GMPNoErr;
|
|
}
|
|
|
|
// Note: Consider keeping ActorDestroy sync'd up when making changes here.
|
|
void
|
|
GMPVideoEncoderParent::Shutdown()
|
|
{
|
|
LOGD(("%s::%s: %p", __CLASS__, __FUNCTION__, this));
|
|
MOZ_ASSERT(mPlugin->GMPThread() == NS_GetCurrentThread());
|
|
|
|
if (mShuttingDown) {
|
|
return;
|
|
}
|
|
mShuttingDown = true;
|
|
|
|
// Notify client we're gone! Won't occur after Close()
|
|
if (mCallback) {
|
|
mCallback->Terminated();
|
|
mCallback = nullptr;
|
|
}
|
|
|
|
mIsOpen = false;
|
|
if (!mActorDestroyed) {
|
|
Unused << SendEncodingComplete();
|
|
}
|
|
}
|
|
|
|
static void
|
|
ShutdownEncodedThread(nsCOMPtr<nsIThread>& aThread)
|
|
{
|
|
aThread->Shutdown();
|
|
}
|
|
|
|
// Note: Keep this sync'd up with Shutdown
|
|
void
|
|
GMPVideoEncoderParent::ActorDestroy(ActorDestroyReason aWhy)
|
|
{
|
|
LOGD(("%s::%s: %p (%d)", __CLASS__, __FUNCTION__, this, (int) aWhy));
|
|
mIsOpen = false;
|
|
mActorDestroyed = true;
|
|
if (mCallback) {
|
|
// May call Close() (and Shutdown()) immediately or with a delay
|
|
mCallback->Terminated();
|
|
mCallback = nullptr;
|
|
}
|
|
// Must be shut down before VideoEncoderDestroyed(), since this can recurse
|
|
// the GMPThread event loop. See bug 1049501
|
|
if (mEncodedThread) {
|
|
// Can't get it to allow me to use WrapRunnable with a nsCOMPtr<nsIThread>()
|
|
NS_DispatchToMainThread(
|
|
WrapRunnableNM<decltype(&ShutdownEncodedThread),
|
|
nsCOMPtr<nsIThread> >(&ShutdownEncodedThread, mEncodedThread));
|
|
mEncodedThread = nullptr;
|
|
}
|
|
if (mPlugin) {
|
|
// Ignore any return code. It is OK for this to fail without killing the process.
|
|
mPlugin->VideoEncoderDestroyed(this);
|
|
mPlugin = nullptr;
|
|
}
|
|
mVideoHost.ActorDestroyed(); // same as DoneWithAPI
|
|
}
|
|
|
|
static void
|
|
EncodedCallback(GMPVideoEncoderCallbackProxy* aCallback,
|
|
GMPVideoEncodedFrame* aEncodedFrame,
|
|
nsTArray<uint8_t>* aCodecSpecificInfo,
|
|
nsCOMPtr<nsIThread> aThread)
|
|
{
|
|
aCallback->Encoded(aEncodedFrame, *aCodecSpecificInfo);
|
|
delete aCodecSpecificInfo;
|
|
// Ugh. Must destroy the frame on GMPThread.
|
|
// XXX add locks to the ShmemManager instead?
|
|
aThread->Dispatch(WrapRunnable(aEncodedFrame,
|
|
&GMPVideoEncodedFrame::Destroy),
|
|
NS_DISPATCH_NORMAL);
|
|
}
|
|
|
|
bool
|
|
GMPVideoEncoderParent::RecvEncoded(const GMPVideoEncodedFrameData& aEncodedFrame,
|
|
InfallibleTArray<uint8_t>&& aCodecSpecificInfo)
|
|
{
|
|
if (!mCallback) {
|
|
return false;
|
|
}
|
|
|
|
auto f = new GMPVideoEncodedFrameImpl(aEncodedFrame, &mVideoHost);
|
|
nsTArray<uint8_t> *codecSpecificInfo = new nsTArray<uint8_t>;
|
|
codecSpecificInfo->AppendElements((uint8_t*)aCodecSpecificInfo.Elements(), aCodecSpecificInfo.Length());
|
|
nsCOMPtr<nsIThread> thread = NS_GetCurrentThread();
|
|
|
|
mEncodedThread->Dispatch(WrapRunnableNM(&EncodedCallback,
|
|
mCallback, f, codecSpecificInfo, thread),
|
|
NS_DISPATCH_NORMAL);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
GMPVideoEncoderParent::RecvError(const GMPErr& aError)
|
|
{
|
|
if (!mCallback) {
|
|
return false;
|
|
}
|
|
|
|
// Ignore any return code. It is OK for this to fail without killing the process.
|
|
mCallback->Error(aError);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
GMPVideoEncoderParent::RecvShutdown()
|
|
{
|
|
Shutdown();
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
GMPVideoEncoderParent::RecvParentShmemForPool(Shmem&& aFrameBuffer)
|
|
{
|
|
if (aFrameBuffer.IsWritable()) {
|
|
// This test may be paranoia now that we don't shut down the VideoHost
|
|
// in ::Shutdown, but doesn't hurt
|
|
if (mVideoHost.SharedMemMgr()) {
|
|
mVideoHost.SharedMemMgr()->MgrDeallocShmem(GMPSharedMem::kGMPFrameData,
|
|
aFrameBuffer);
|
|
} else {
|
|
LOGD(("%s::%s: %p Called in shutdown, ignoring and freeing directly", __CLASS__, __FUNCTION__, this));
|
|
DeallocShmem(aFrameBuffer);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
GMPVideoEncoderParent::AnswerNeedShmem(const uint32_t& aEncodedBufferSize,
|
|
Shmem* aMem)
|
|
{
|
|
ipc::Shmem mem;
|
|
|
|
// This test may be paranoia now that we don't shut down the VideoHost
|
|
// in ::Shutdown, but doesn't hurt
|
|
if (!mVideoHost.SharedMemMgr() ||
|
|
!mVideoHost.SharedMemMgr()->MgrAllocShmem(GMPSharedMem::kGMPEncodedData,
|
|
aEncodedBufferSize,
|
|
ipc::SharedMemory::TYPE_BASIC, &mem))
|
|
{
|
|
LOG(LogLevel::Error, ("%s::%s: Failed to get a shared mem buffer for Child! size %u",
|
|
__CLASS__, __FUNCTION__, aEncodedBufferSize));
|
|
return false;
|
|
}
|
|
*aMem = mem;
|
|
mem = ipc::Shmem();
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
GMPVideoEncoderParent::Recv__delete__()
|
|
{
|
|
if (mPlugin) {
|
|
// Ignore any return code. It is OK for this to fail without killing the process.
|
|
mPlugin->VideoEncoderDestroyed(this);
|
|
mPlugin = nullptr;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
} // namespace gmp
|
|
} // namespace mozilla
|