blob: ed829b9c531fb54b10d3707f1f4aa91ecb16d7f3 (
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
|
/* -*- 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 GMPAudioHost_h_
#define GMPAudioHost_h_
#include "gmp-audio-host.h"
#include "gmp-audio-samples.h"
#include "nsTArray.h"
#include "gmp-decryption.h"
#include "nsAutoPtr.h"
#include "GMPEncryptedBufferDataImpl.h"
#include "mozilla/gmp/GMPTypes.h"
namespace mozilla {
class CryptoSample;
class MediaRawData;
namespace gmp {
class GMPAudioSamplesImpl : public GMPAudioSamples {
public:
explicit GMPAudioSamplesImpl(GMPAudioFormat aFormat);
explicit GMPAudioSamplesImpl(const GMPAudioEncodedSampleData& aData);
GMPAudioSamplesImpl(MediaRawData* aSample,
uint32_t aChannels,
uint32_t aRate);
virtual ~GMPAudioSamplesImpl();
GMPAudioFormat GetFormat() override;
void Destroy() override;
GMPErr SetBufferSize(uint32_t aSize) override;
uint32_t Size() override;
void SetTimeStamp(uint64_t aTimeStamp) override;
uint64_t TimeStamp() override;
const uint8_t* Buffer() const override;
uint8_t* Buffer() override;
const GMPEncryptedBufferMetadata* GetDecryptionData() const override;
void InitCrypto(const CryptoSample& aCrypto);
void RelinquishData(GMPAudioEncodedSampleData& aData);
uint32_t Channels() const override;
void SetChannels(uint32_t aChannels) override;
uint32_t Rate() const override;
void SetRate(uint32_t aRate) override;
private:
GMPAudioFormat mFormat;
nsTArray<uint8_t> mBuffer;
int64_t mTimeStamp;
nsAutoPtr<GMPEncryptedBufferDataImpl> mCrypto;
uint32_t mChannels;
uint32_t mRate;
};
class GMPAudioHostImpl : public GMPAudioHost
{
public:
GMPErr CreateSamples(GMPAudioFormat aFormat,
GMPAudioSamples** aSamples) override;
private:
};
} // namespace gmp
} // namespace mozilla
#endif // GMPAudioHost_h_
|