gecko-dev/dom/media/gmp/GMPVideoEncoderChild.h
Alex Gaynor 0f01791ffc Bug 1512990 - Part 4 - remove declarations of Recv/Answer methods from IPDL protocol base class; r=froydnj
For cases where the class has direct calls (that is, we cast `this` to the
subclass before making the call) no longer declare Recv/Answer methods on the
base class at all. This should ensure that slots for them are not generated in
vtables, and also allow the derived class to choose the method signature (e.g.
whether it wants to take something by reference or by value).

Differential Revision: https://phabricator.services.mozilla.com/D18132

--HG--
extra : moz-landing-system : lando
2019-02-06 15:58:43 +00:00

78 lines
2.6 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/. */
#ifndef GMPVideoEncoderChild_h_
#define GMPVideoEncoderChild_h_
#include "nsString.h"
#include "mozilla/gmp/PGMPVideoEncoderChild.h"
#include "gmp-video-encode.h"
#include "GMPSharedMemManager.h"
#include "GMPVideoHost.h"
namespace mozilla {
namespace gmp {
class GMPContentChild;
class GMPVideoEncoderChild : public PGMPVideoEncoderChild,
public GMPVideoEncoderCallback,
public GMPSharedMemManager {
friend class PGMPVideoEncoderChild;
public:
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(GMPVideoEncoderChild);
explicit GMPVideoEncoderChild(GMPContentChild* aPlugin);
void Init(GMPVideoEncoder* aEncoder);
GMPVideoHostImpl& Host();
// GMPVideoEncoderCallback
void Encoded(GMPVideoEncodedFrame* aEncodedFrame,
const uint8_t* aCodecSpecificInfo,
uint32_t aCodecSpecificInfoLength) override;
void Error(GMPErr aError) override;
// GMPSharedMemManager
bool Alloc(size_t aSize, Shmem::SharedMemory::SharedMemoryType aType,
Shmem* aMem) override;
void Dealloc(Shmem& aMem) override;
private:
virtual ~GMPVideoEncoderChild();
// PGMPVideoEncoderChild
mozilla::ipc::IPCResult RecvInitEncode(
const GMPVideoCodec& aCodecSettings,
InfallibleTArray<uint8_t>&& aCodecSpecific, const int32_t& aNumberOfCores,
const uint32_t& aMaxPayloadSize);
mozilla::ipc::IPCResult RecvEncode(
const GMPVideoi420FrameData& aInputFrame,
InfallibleTArray<uint8_t>&& aCodecSpecificInfo,
InfallibleTArray<GMPVideoFrameType>&& aFrameTypes);
mozilla::ipc::IPCResult RecvChildShmemForPool(Shmem&& aEncodedBuffer);
mozilla::ipc::IPCResult RecvSetChannelParameters(const uint32_t& aPacketLoss,
const uint32_t& aRTT);
mozilla::ipc::IPCResult RecvSetRates(const uint32_t& aNewBitRate,
const uint32_t& aFrameRate);
mozilla::ipc::IPCResult RecvSetPeriodicKeyFrames(const bool& aEnable);
mozilla::ipc::IPCResult RecvEncodingComplete();
GMPContentChild* mPlugin;
GMPVideoEncoder* mVideoEncoder;
GMPVideoHostImpl mVideoHost;
// Non-zero when a GMP is blocked spinning the IPC message loop while
// waiting on an NeedShmem to complete.
int mNeedShmemIntrCount;
bool mPendingEncodeComplete;
};
} // namespace gmp
} // namespace mozilla
#endif // GMPVideoEncoderChild_h_