2017-02-23 01:51:00 +03:00
|
|
|
/* -*- 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 ChromiumCDMChild_h_
|
|
|
|
#define ChromiumCDMChild_h_
|
|
|
|
|
|
|
|
#include "mozilla/gmp/PChromiumCDMChild.h"
|
2017-03-13 03:26:13 +03:00
|
|
|
#include "content_decryption_module.h"
|
2017-03-09 01:32:15 +03:00
|
|
|
#include "SimpleMap.h"
|
2017-02-23 01:51:00 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gmp {
|
|
|
|
|
|
|
|
class GMPContentChild;
|
|
|
|
|
|
|
|
class ChromiumCDMChild : public PChromiumCDMChild
|
2017-03-13 03:26:13 +03:00
|
|
|
, public cdm::Host_8
|
2017-02-23 01:51:00 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(ChromiumCDMChild);
|
|
|
|
|
|
|
|
explicit ChromiumCDMChild(GMPContentChild* aPlugin);
|
|
|
|
|
2017-03-13 06:59:34 +03:00
|
|
|
void Init(cdm::ContentDecryptionModule_8* aCDM);
|
2017-03-13 03:26:13 +03:00
|
|
|
|
|
|
|
void TimerExpired(void* aContext);
|
|
|
|
|
|
|
|
// cdm::Host_8
|
|
|
|
cdm::Buffer* Allocate(uint32_t aCapacity) override;
|
|
|
|
void SetTimer(int64_t aDelayMs, void* aContext) override;
|
|
|
|
cdm::Time GetCurrentWallTime() override;
|
|
|
|
void OnResolveNewSessionPromise(uint32_t aPromiseId,
|
|
|
|
const char* aSessionId,
|
|
|
|
uint32_t aSessionIdSize) override;
|
|
|
|
void OnResolvePromise(uint32_t aPromiseId) override;
|
|
|
|
void OnRejectPromise(uint32_t aPromiseId,
|
|
|
|
cdm::Error aError,
|
|
|
|
uint32_t aSystemCode,
|
|
|
|
const char* aErrorMessage,
|
|
|
|
uint32_t aErrorMessageSize) override;
|
|
|
|
void OnSessionMessage(const char* aSessionId,
|
|
|
|
uint32_t aSessionIdSize,
|
|
|
|
cdm::MessageType aMessageType,
|
|
|
|
const char* aMessage,
|
|
|
|
uint32_t aMessageSize,
|
|
|
|
const char* aLegacyDestinationUrl,
|
|
|
|
uint32_t aLegacyDestinationUrlLength) override;
|
|
|
|
void OnSessionKeysChange(const char* aSessionId,
|
|
|
|
uint32_t aSessionIdSize,
|
|
|
|
bool aHasAdditionalUsableKey,
|
|
|
|
const cdm::KeyInformation* aKeysInfo,
|
|
|
|
uint32_t aKeysInfoCount) override;
|
|
|
|
void OnExpirationChange(const char* aSessionId,
|
|
|
|
uint32_t aSessionIdSize,
|
|
|
|
cdm::Time aNewExpiryTime) override;
|
|
|
|
void OnSessionClosed(const char* aSessionId,
|
|
|
|
uint32_t aSessionIdSize) override;
|
|
|
|
void OnLegacySessionError(const char* aSessionId,
|
|
|
|
uint32_t aSessionIdLength,
|
|
|
|
cdm::Error aError,
|
|
|
|
uint32_t aSystemCode,
|
|
|
|
const char* aErrorMessage,
|
|
|
|
uint32_t aErrorMessageLength) override;
|
|
|
|
void SendPlatformChallenge(const char* aServiceId,
|
|
|
|
uint32_t aServiceIdSize,
|
|
|
|
const char* aChallenge,
|
|
|
|
uint32_t aChallengeSize) override {}
|
|
|
|
void EnableOutputProtection(uint32_t aDesiredProtectionMask) override {}
|
|
|
|
void QueryOutputProtectionStatus() override {}
|
|
|
|
void OnDeferredInitializationDone(cdm::StreamType aStreamType,
|
|
|
|
cdm::Status aDecoderStatus) override {}
|
|
|
|
cdm::FileIO* CreateFileIO(cdm::FileIOClient* aClient) override;
|
2017-02-23 01:51:00 +03:00
|
|
|
protected:
|
|
|
|
~ChromiumCDMChild() {}
|
|
|
|
|
2017-03-09 08:17:50 +03:00
|
|
|
bool IsOnMessageLoopThread();
|
|
|
|
|
2017-02-23 01:51:00 +03:00
|
|
|
ipc::IPCResult RecvInit(const bool& aAllowDistinctiveIdentifier,
|
|
|
|
const bool& aAllowPersistentState) override;
|
|
|
|
ipc::IPCResult RecvSetServerCertificate(
|
|
|
|
const uint32_t& aPromiseId,
|
|
|
|
nsTArray<uint8_t>&& aServerCert) override;
|
|
|
|
ipc::IPCResult RecvCreateSessionAndGenerateRequest(
|
|
|
|
const uint32_t& aPromiseId,
|
|
|
|
const uint32_t& aSessionType,
|
|
|
|
const uint32_t& aInitDataType,
|
|
|
|
nsTArray<uint8_t>&& aInitData) override;
|
|
|
|
ipc::IPCResult RecvUpdateSession(const uint32_t& aPromiseId,
|
|
|
|
const nsCString& aSessionId,
|
|
|
|
nsTArray<uint8_t>&& aResponse) override;
|
|
|
|
ipc::IPCResult RecvCloseSession(const uint32_t& aPromiseId,
|
|
|
|
const nsCString& aSessionId) override;
|
|
|
|
ipc::IPCResult RecvRemoveSession(const uint32_t& aPromiseId,
|
|
|
|
const nsCString& aSessionId) override;
|
2017-03-09 01:31:07 +03:00
|
|
|
ipc::IPCResult RecvDecrypt(const uint32_t& aId,
|
|
|
|
const CDMInputBuffer& aBuffer) override;
|
2017-02-23 01:51:00 +03:00
|
|
|
ipc::IPCResult RecvInitializeVideoDecoder(
|
|
|
|
const CDMVideoDecoderConfig& aConfig) override;
|
|
|
|
ipc::IPCResult RecvDeinitializeVideoDecoder() override;
|
|
|
|
ipc::IPCResult RecvResetVideoDecoder() override;
|
|
|
|
ipc::IPCResult RecvDecryptAndDecodeFrame(
|
|
|
|
const CDMInputBuffer& aBuffer) override;
|
|
|
|
ipc::IPCResult RecvDestroy() override;
|
|
|
|
|
2017-03-09 01:31:07 +03:00
|
|
|
void DecryptFailed(uint32_t aId, cdm::Status aStatus);
|
|
|
|
|
2017-03-13 06:59:34 +03:00
|
|
|
GMPContentChild* mPlugin = nullptr;
|
|
|
|
cdm::ContentDecryptionModule_8* mCDM = nullptr;
|
2017-03-09 08:17:50 +03:00
|
|
|
|
2017-03-09 01:32:15 +03:00
|
|
|
typedef SimpleMap<uint64_t> DurationMap;
|
|
|
|
DurationMap mFrameDurations;
|
|
|
|
|
2017-03-09 08:17:50 +03:00
|
|
|
bool mDecoderInitialized = false;
|
2017-02-23 01:51:00 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gmp
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // ChromiumCDMChild_h_
|