2015-02-10 13:48:42 +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 GMPContentParent_h_
|
|
|
|
#define GMPContentParent_h_
|
|
|
|
|
|
|
|
#include "mozilla/gmp/PGMPContentParent.h"
|
2015-05-29 05:07:22 +03:00
|
|
|
#include "GMPSharedMemManager.h"
|
2015-02-10 13:48:42 +03:00
|
|
|
#include "nsISupportsImpl.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gmp {
|
|
|
|
|
|
|
|
class GMPAudioDecoderParent;
|
|
|
|
class GMPDecryptorParent;
|
|
|
|
class GMPParent;
|
|
|
|
class GMPVideoDecoderParent;
|
|
|
|
class GMPVideoEncoderParent;
|
|
|
|
|
|
|
|
class GMPContentParent final : public PGMPContentParent,
|
|
|
|
public GMPSharedMem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(GMPContentParent)
|
|
|
|
|
2015-02-10 13:49:03 +03:00
|
|
|
explicit GMPContentParent(GMPParent* aParent = nullptr);
|
2015-02-10 13:48:42 +03:00
|
|
|
|
|
|
|
nsresult GetGMPVideoDecoder(GMPVideoDecoderParent** aGMPVD);
|
|
|
|
void VideoDecoderDestroyed(GMPVideoDecoderParent* aDecoder);
|
|
|
|
|
|
|
|
nsresult GetGMPVideoEncoder(GMPVideoEncoderParent** aGMPVE);
|
|
|
|
void VideoEncoderDestroyed(GMPVideoEncoderParent* aEncoder);
|
|
|
|
|
|
|
|
nsresult GetGMPDecryptor(GMPDecryptorParent** aGMPKS);
|
|
|
|
void DecryptorDestroyed(GMPDecryptorParent* aSession);
|
|
|
|
|
|
|
|
nsresult GetGMPAudioDecoder(GMPAudioDecoderParent** aGMPAD);
|
|
|
|
void AudioDecoderDestroyed(GMPAudioDecoderParent* aDecoder);
|
|
|
|
|
|
|
|
nsIThread* GMPThread();
|
|
|
|
|
|
|
|
// GMPSharedMem
|
|
|
|
virtual void CheckThread() override;
|
|
|
|
|
|
|
|
void SetDisplayName(const nsCString& aDisplayName)
|
|
|
|
{
|
|
|
|
mDisplayName = aDisplayName;
|
|
|
|
}
|
|
|
|
const nsCString& GetDisplayName()
|
|
|
|
{
|
|
|
|
return mDisplayName;
|
|
|
|
}
|
2015-05-04 22:40:29 +03:00
|
|
|
void SetPluginId(const uint32_t aPluginId)
|
2015-02-10 13:48:42 +03:00
|
|
|
{
|
|
|
|
mPluginId = aPluginId;
|
|
|
|
}
|
2015-05-04 22:40:29 +03:00
|
|
|
const uint32_t GetPluginId()
|
2015-02-10 13:48:42 +03:00
|
|
|
{
|
|
|
|
return mPluginId;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
~GMPContentParent();
|
|
|
|
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason aWhy) override;
|
|
|
|
|
|
|
|
virtual PGMPVideoDecoderParent* AllocPGMPVideoDecoderParent() override;
|
|
|
|
virtual bool DeallocPGMPVideoDecoderParent(PGMPVideoDecoderParent* aActor) override;
|
|
|
|
|
|
|
|
virtual PGMPVideoEncoderParent* AllocPGMPVideoEncoderParent() override;
|
|
|
|
virtual bool DeallocPGMPVideoEncoderParent(PGMPVideoEncoderParent* aActor) override;
|
|
|
|
|
|
|
|
virtual PGMPDecryptorParent* AllocPGMPDecryptorParent() override;
|
|
|
|
virtual bool DeallocPGMPDecryptorParent(PGMPDecryptorParent* aActor) override;
|
|
|
|
|
|
|
|
virtual PGMPAudioDecoderParent* AllocPGMPAudioDecoderParent() override;
|
|
|
|
virtual bool DeallocPGMPAudioDecoderParent(PGMPAudioDecoderParent* aActor) override;
|
|
|
|
|
|
|
|
void CloseIfUnused();
|
|
|
|
// Needed because NS_NewRunnableMethod tried to use the class that the method
|
|
|
|
// lives on to store the receiver, but PGMPContentParent isn't refcounted.
|
|
|
|
void Close()
|
|
|
|
{
|
|
|
|
PGMPContentParent::Close();
|
|
|
|
}
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
nsTArray<RefPtr<GMPVideoDecoderParent>> mVideoDecoders;
|
|
|
|
nsTArray<RefPtr<GMPVideoEncoderParent>> mVideoEncoders;
|
|
|
|
nsTArray<RefPtr<GMPDecryptorParent>> mDecryptors;
|
|
|
|
nsTArray<RefPtr<GMPAudioDecoderParent>> mAudioDecoders;
|
2015-02-10 13:48:42 +03:00
|
|
|
nsCOMPtr<nsIThread> mGMPThread;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<GMPParent> mParent;
|
2015-02-10 13:48:42 +03:00
|
|
|
nsCString mDisplayName;
|
2015-05-04 22:40:29 +03:00
|
|
|
uint32_t mPluginId;
|
2015-02-10 13:48:42 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gmp
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // GMPParent_h_
|