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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
media / audio / android / aaudio_output.cc [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/audio/android/aaudio_output.h"
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/task/sequenced_task_runner.h"
#include "media/audio/android/audio_manager_android.h"
#include "media/audio/audio_manager.h"
#include "media/base/amplitude_peak_detector.h"
#include "media/base/audio_bus.h"
namespace media {
AAudioOutputStream::AAudioOutputStream(AudioManagerAndroid* manager,
const AudioParameters& params,
aaudio_usage_t usage)
: audio_manager_(manager),
params_(params),
peak_detector_(base::BindRepeating(&AudioManager::TraceAmplitudePeak,
base::Unretained(audio_manager_),
/*trace_start=*/false)),
stream_wrapper_(this,
AAudioStreamWrapper::StreamType::kOutput,
params,
usage) {
CHECK(manager);
CHECK(params_.IsValid());
}
AAudioOutputStream::~AAudioOutputStream() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
}
void AAudioOutputStream::Flush() {}
bool AAudioOutputStream::Open() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!stream_wrapper_.Open()) {
return false;
}
CHECK(!audio_bus_);
audio_bus_ = AudioBus::Create(params_);
return true;
}
void AAudioOutputStream::Close() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
stream_wrapper_.Close();
// Note: This must be last, it will delete |this|.
audio_manager_->ReleaseOutputStream(this);
}
void AAudioOutputStream::Start(AudioSourceCallback* callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
{
base::AutoLock al(lock_);
// The device might have been disconnected between Open() and Start().
if (device_changed_) {
callback->OnError(AudioSourceCallback::ErrorType::kDeviceChange);
return;
}
CHECK(!callback_);
callback_ = callback;
}
if (stream_wrapper_.Start()) {
// Successfully started `stream_wrapper_`.
return;
}
{
base::AutoLock al(lock_);
callback_->OnError(AudioSourceCallback::ErrorType::kUnknown);
callback_ = nullptr;
}
}
void AAudioOutputStream::Stop() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
AudioSourceCallback* temp_error_callback;
{
base::AutoLock al(lock_);
if (!callback_) {
return;
}
// Save a copy of copy of the callback for error reporting.
temp_error_callback = callback_;
// OnAudioDataRequested should no longer provide data from this point on.
callback_ = nullptr;
}
if (!stream_wrapper_.Stop()) {
temp_error_callback->OnError(AudioSourceCallback::ErrorType::kUnknown);
}
}
bool AAudioOutputStream::OnAudioDataRequested(void* audio_data,
int32_t num_frames) {
CHECK_EQ(num_frames, audio_bus_->frames());
base::AutoLock al(lock_);
if (!callback_) {
// Stop() might have already been called, but there can still be pending
// data callbacks in flight.
return false;
}
const base::TimeTicks delay_timestamp = base::TimeTicks::Now();
const base::TimeDelta delay = stream_wrapper_.GetOutputDelay(delay_timestamp);
const int frames_filled =
callback_->OnMoreData(delay, delay_timestamp, {}, audio_bus_.get());
peak_detector_.FindPeak(audio_bus_.get());
audio_bus_->Scale(muted_ ? 0.0 : volume_);
audio_bus_->ToInterleaved<Float32SampleTypeTraits>(
frames_filled, reinterpret_cast<float*>(audio_data));
return true;
}
void AAudioOutputStream::OnDeviceChange() {
base::AutoLock al(lock_);
device_changed_ = true;
if (!callback_) {
// Report the device change in Start() instead.
return;
}
callback_->OnError(AudioSourceCallback::ErrorType::kDeviceChange);
}
void AAudioOutputStream::OnError() {
base::AutoLock al(lock_);
if (!callback_) {
return;
}
if (device_changed_) {
// We should have already reported a device change error, either in
// OnDeviceChange() or in Start(). In both cases, `this` should be closed
// and deleted soon, so silently ignore additional error reporting.
return;
}
callback_->OnError(AudioSourceCallback::ErrorType::kUnknown);
}
void AAudioOutputStream::SetVolume(double volume) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
double volume_override = 0;
if (audio_manager_->HasOutputVolumeOverride(&volume_override)) {
volume = volume_override;
}
if (volume < 0.0 || volume > 1.0) {
return;
}
base::AutoLock al(lock_);
volume_ = volume;
}
void AAudioOutputStream::GetVolume(double* volume) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
base::AutoLock al(lock_);
*volume = volume_;
}
void AAudioOutputStream::SetMute(bool muted) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
base::AutoLock al(lock_);
muted_ = muted;
}
} // namespace media