blob: 3c74e5f02c6a9d6216a490ca4ed7f7fae8bf1182 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/* -*- 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 GMPVideoDecoderChild_h_
#define GMPVideoDecoderChild_h_
#include "nsString.h"
#include "mozilla/gmp/PGMPVideoDecoderChild.h"
#include "gmp-video-decode.h"
#include "GMPSharedMemManager.h"
#include "GMPVideoHost.h"
#include "mozilla/gmp/GMPTypes.h"
namespace mozilla::gmp {
class GMPContentChild;
class GMPVideoDecoderChild : public PGMPVideoDecoderChild,
public GMPVideoDecoderCallback,
public GMPSharedMemManager {
friend class PGMPVideoDecoderChild;
public:
// Mark AddRef and Release as `final`, as they overload pure virtual
// implementations in PGMPVideoDecoderChild.
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(GMPVideoDecoderChild, final);
explicit GMPVideoDecoderChild(GMPContentChild* aPlugin);
void Init(GMPVideoDecoder* aDecoder);
GMPVideoHostImpl& Host();
// GMPVideoDecoderCallback
void Decoded(GMPVideoi420Frame* decodedFrame) override;
void ReceivedDecodedReferenceFrame(const uint64_t pictureId) override;
void ReceivedDecodedFrame(const uint64_t pictureId) override;
void InputDataExhausted() override;
void DrainComplete() override;
void ResetComplete() override;
void Error(GMPErr aError) override;
// GMPSharedMemManager
bool Alloc(size_t aSize, Shmem* aMem) override;
void Dealloc(Shmem&& aMem) override;
private:
virtual ~GMPVideoDecoderChild();
// PGMPVideoDecoderChild
mozilla::ipc::IPCResult RecvInitDecode(const GMPVideoCodec& aCodecSettings,
nsTArray<uint8_t>&& aCodecSpecific,
const int32_t& aCoreCount);
mozilla::ipc::IPCResult RecvDecode(
const GMPVideoEncodedFrameData& aInputFrame, const bool& aMissingFrames,
nsTArray<uint8_t>&& aCodecSpecificInfo, const int64_t& aRenderTimeMs);
mozilla::ipc::IPCResult RecvChildShmemForPool(Shmem&& aFrameBuffer);
mozilla::ipc::IPCResult RecvReset();
mozilla::ipc::IPCResult RecvDrain();
mozilla::ipc::IPCResult RecvDecodingComplete();
GMPContentChild* mPlugin;
GMPVideoDecoder* mVideoDecoder;
GMPVideoHostImpl mVideoHost;
// Non-zero when a GMP is blocked spinning the IPC message loop while
// waiting on an NeedShmem to complete.
int mNeedShmemIntrCount;
bool mPendingDecodeComplete;
};
} // namespace mozilla::gmp
#endif // GMPVideoDecoderChild_h_
|