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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/* -*- 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 MOZILLA_CROSS_GRAPH_TRACK_H_
#define MOZILLA_CROSS_GRAPH_TRACK_H_
#include "AudioDriftCorrection.h"
#include "AudioSegment.h"
#include "ForwardedInputTrack.h"
#include "mozilla/SPSCQueue.h"
#include "mozilla/UniquePtr.h"
namespace mozilla {
class CrossGraphReceiver;
}
namespace mozilla::dom {
class AudioStreamTrack;
}
namespace mozilla {
/**
* See MediaTrackGraph::CreateCrossGraphTransmitter()
*/
class CrossGraphTransmitter : public ProcessedMediaTrack {
public:
CrossGraphTransmitter(TrackRate aSampleRate,
RefPtr<CrossGraphReceiver> aReceiver);
CrossGraphTransmitter* AsCrossGraphTransmitter() override { return this; }
uint32_t NumberOfChannels() const override {
MOZ_CRASH("CrossGraphTransmitter has no segment. It cannot be played out.");
}
void ProcessInput(GraphTime aFrom, GraphTime aTo, uint32_t aFlags) override;
private:
const RefPtr<CrossGraphReceiver> mReceiver;
};
/**
* See MediaTrackGraph::CreateCrossGraphReceiver()
*/
class CrossGraphReceiver : public ProcessedMediaTrack {
public:
CrossGraphReceiver(TrackRate aSampleRate, TrackRate aTransmitterRate);
CrossGraphReceiver* AsCrossGraphReceiver() override { return this; }
uint32_t NumberOfChannels() const override;
void ProcessInput(GraphTime aFrom, GraphTime aTo, uint32_t aFlags) override;
int EnqueueAudio(AudioChunk& aChunk);
private:
SPSCQueue<AudioChunk> mCrossThreadFIFO{30};
// Indicates that tre CrossGraphTransmitter has started sending frames. It
// is false untill the point, transmitter has sent the first valid frame.
// Accessed in GraphThread only.
bool mTransmitterHasStarted = false;
// Correct the drift between transmitter and receiver. Reciever (this class)
// is considered as the master clock.
// Accessed in GraphThread only.
AudioDriftCorrection mDriftCorrection;
};
class CrossGraphPort final {
public:
static UniquePtr<CrossGraphPort> Connect(
const RefPtr<dom::AudioStreamTrack>& aStreamTrack,
MediaTrackGraph* aPartnerGraph);
static UniquePtr<CrossGraphPort> Connect(
const RefPtr<dom::AudioStreamTrack>& aStreamTrack, AudioDeviceInfo* aSink,
nsPIDOMWindowInner* aWindow);
~CrossGraphPort();
void AddAudioOutput(void* aKey);
void RemoveAudioOutput(void* aKey);
void SetAudioOutputVolume(void* aKey, float aVolume);
RefPtr<GenericPromise> EnsureConnected();
const RefPtr<CrossGraphTransmitter> mTransmitter;
const RefPtr<CrossGraphReceiver> mReceiver;
private:
explicit CrossGraphPort(RefPtr<MediaInputPort> aTransmitterPort,
RefPtr<CrossGraphTransmitter> aTransmitter,
RefPtr<CrossGraphReceiver> aReceiver)
: mTransmitter(std::move(aTransmitter)),
mReceiver(std::move(aReceiver)),
mTransmitterPort(std::move(aTransmitterPort)) {
MOZ_ASSERT(mTransmitter);
MOZ_ASSERT(mReceiver);
MOZ_ASSERT(mTransmitterPort);
}
// The port that connects the input track to the transmitter.
const RefPtr<MediaInputPort> mTransmitterPort;
};
} // namespace mozilla
#endif /* MOZILLA_CROSS_GRAPH_TRACK_H_ */
|