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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/audio/audio_output_controller.h"
#include "base/bind.h"
#include "base/debug/trace_event.h"
#include "base/message_loop.h"
#include "base/synchronization/waitable_event.h"
#include "base/threading/platform_thread.h"
#include "base/threading/thread_restrictions.h"
#include "base/time.h"
#include "media/audio/shared_memory_util.h"
using base::Time;
using base::TimeDelta;
using base::WaitableEvent;
namespace media {
// Polling-related constants.
const int AudioOutputController::kPollNumAttempts = 3;
const int AudioOutputController::kPollPauseInMilliseconds = 3;
AudioOutputController::AudioOutputController(EventHandler* handler,
SyncReader* sync_reader)
: handler_(handler),
stream_(NULL),
volume_(1.0),
state_(kEmpty),
sync_reader_(sync_reader),
message_loop_(NULL),
number_polling_attempts_left_(0),
ALLOW_THIS_IN_INITIALIZER_LIST(weak_this_(this)) {
}
AudioOutputController::~AudioOutputController() {
DCHECK_EQ(kClosed, state_);
DCHECK(message_loop_);
if (!message_loop_.get() || message_loop_->BelongsToCurrentThread()) {
DoStopCloseAndClearStream(NULL);
} else {
// http://crbug.com/120973
base::ThreadRestrictions::ScopedAllowWait allow_wait;
WaitableEvent completion(true /* manual reset */,
false /* initial state */);
message_loop_->PostTask(FROM_HERE,
base::Bind(&AudioOutputController::DoStopCloseAndClearStream,
base::Unretained(this),
&completion));
completion.Wait();
}
}
// static
scoped_refptr<AudioOutputController> AudioOutputController::Create(
AudioManager* audio_manager,
EventHandler* event_handler,
const AudioParameters& params,
SyncReader* sync_reader) {
DCHECK(audio_manager);
DCHECK(sync_reader);
if (!params.IsValid() || !audio_manager)
return NULL;
// Starts the audio controller thread.
scoped_refptr<AudioOutputController> controller(new AudioOutputController(
event_handler, sync_reader));
controller->message_loop_ = audio_manager->GetMessageLoop();
controller->message_loop_->PostTask(FROM_HERE, base::Bind(
&AudioOutputController::DoCreate, controller,
base::Unretained(audio_manager), params));
return controller;
}
void AudioOutputController::Play() {
DCHECK(message_loop_);
message_loop_->PostTask(FROM_HERE, base::Bind(
&AudioOutputController::DoPlay, this));
}
void AudioOutputController::Pause() {
DCHECK(message_loop_);
message_loop_->PostTask(FROM_HERE, base::Bind(
&AudioOutputController::DoPause, this));
}
void AudioOutputController::Flush() {
DCHECK(message_loop_);
message_loop_->PostTask(FROM_HERE, base::Bind(
&AudioOutputController::DoFlush, this));
}
void AudioOutputController::Close(const base::Closure& closed_task) {
DCHECK(!closed_task.is_null());
DCHECK(message_loop_);
message_loop_->PostTaskAndReply(FROM_HERE, base::Bind(
&AudioOutputController::DoClose, this), closed_task);
}
void AudioOutputController::SetVolume(double volume) {
DCHECK(message_loop_);
message_loop_->PostTask(FROM_HERE, base::Bind(
&AudioOutputController::DoSetVolume, this, volume));
}
void AudioOutputController::DoCreate(AudioManager* audio_manager,
const AudioParameters& params) {
DCHECK(message_loop_->BelongsToCurrentThread());
// Close() can be called before DoCreate() is executed.
if (state_ == kClosed)
return;
DCHECK_EQ(kEmpty, state_);
DoStopCloseAndClearStream(NULL);
stream_ = audio_manager->MakeAudioOutputStreamProxy(params);
if (!stream_) {
// TODO(hclam): Define error types.
handler_->OnError(this, 0);
return;
}
if (!stream_->Open()) {
DoStopCloseAndClearStream(NULL);
// TODO(hclam): Define error types.
handler_->OnError(this, 0);
return;
}
// We have successfully opened the stream. Set the initial volume.
stream_->SetVolume(volume_);
// Finally set the state to kCreated.
state_ = kCreated;
// And then report we have been created.
handler_->OnCreated(this);
}
void AudioOutputController::DoPlay() {
DCHECK(message_loop_->BelongsToCurrentThread());
// We can start from created or paused state.
if (state_ != kCreated && state_ != kPaused) {
// If a pause is pending drop it. Otherwise the controller might hang since
// the corresponding play event has already occurred.
if (state_ == kPausedWhenStarting)
state_ = kStarting;
return;
}
state_ = kStarting;
// Ask for first packet.
sync_reader_->UpdatePendingBytes(0);
// Cannot start stream immediately, should give renderer some time
// to deliver data.
// TODO(vrk): The polling here and in WaitTillDataReady() is pretty clunky.
// Refine the API such that polling is no longer needed. (crbug.com/112196)
number_polling_attempts_left_ = kPollNumAttempts;
message_loop_->PostDelayedTask(
FROM_HERE,
base::Bind(&AudioOutputController::PollAndStartIfDataReady,
weak_this_.GetWeakPtr()),
TimeDelta::FromMilliseconds(kPollPauseInMilliseconds));
}
void AudioOutputController::PollAndStartIfDataReady() {
DCHECK(message_loop_->BelongsToCurrentThread());
// Being paranoid: do nothing if state unexpectedly changed.
if ((state_ != kStarting) && (state_ != kPausedWhenStarting))
return;
bool pausing = (state_ == kPausedWhenStarting);
// If we are ready to start the stream, start it.
// Of course we may have to stop it immediately...
if (--number_polling_attempts_left_ == 0 ||
pausing ||
sync_reader_->DataReady()) {
StartStream();
if (pausing) {
DoPause();
}
} else {
message_loop_->PostDelayedTask(
FROM_HERE,
base::Bind(&AudioOutputController::PollAndStartIfDataReady,
weak_this_.GetWeakPtr()),
TimeDelta::FromMilliseconds(kPollPauseInMilliseconds));
}
}
void AudioOutputController::StartStream() {
DCHECK(message_loop_->BelongsToCurrentThread());
state_ = kPlaying;
// We start the AudioOutputStream lazily.
stream_->Start(this);
// Tell the event handler that we are now playing.
handler_->OnPlaying(this);
}
void AudioOutputController::DoPause() {
DCHECK(message_loop_->BelongsToCurrentThread());
if (stream_) {
// Then we stop the audio device. This is not the perfect solution
// because it discards all the internal buffer in the audio device.
// TODO(hclam): Actually pause the audio device.
stream_->Stop();
}
switch (state_) {
case kStarting:
// We were asked to pause while starting. There is delayed task that will
// try starting playback, and there is no way to remove that task from the
// queue. If we stop now that task will be executed anyway.
// Delay pausing, let delayed task to do pause after it start playback.
state_ = kPausedWhenStarting;
break;
case kPlaying:
state_ = kPaused;
// Send a special pause mark to the low-latency audio thread.
sync_reader_->UpdatePendingBytes(kPauseMark);
handler_->OnPaused(this);
break;
default:
return;
}
}
void AudioOutputController::DoFlush() {
DCHECK(message_loop_->BelongsToCurrentThread());
// TODO(hclam): Actually flush the audio device.
}
void AudioOutputController::DoClose() {
DCHECK(message_loop_->BelongsToCurrentThread());
if (state_ != kClosed) {
DoStopCloseAndClearStream(NULL);
sync_reader_->Close();
state_ = kClosed;
}
}
void AudioOutputController::DoSetVolume(double volume) {
DCHECK(message_loop_->BelongsToCurrentThread());
// Saves the volume to a member first. We may not be able to set the volume
// right away but when the stream is created we'll set the volume.
volume_ = volume;
switch (state_) {
case kCreated:
case kStarting:
case kPausedWhenStarting:
case kPlaying:
case kPaused:
stream_->SetVolume(volume_);
break;
default:
return;
}
}
void AudioOutputController::DoReportError(int code) {
DCHECK(message_loop_->BelongsToCurrentThread());
if (state_ != kClosed)
handler_->OnError(this, code);
}
uint32 AudioOutputController::OnMoreData(uint8* dest,
uint32 max_size,
AudioBuffersState buffers_state) {
TRACE_EVENT0("audio", "AudioOutputController::OnMoreData");
{
// Check state and do nothing if we are not playing.
// We are on the hardware audio thread, so lock is needed.
base::AutoLock auto_lock(lock_);
if (state_ != kPlaying) {
return 0;
}
}
uint32 size = sync_reader_->Read(dest, max_size);
sync_reader_->UpdatePendingBytes(buffers_state.total_bytes() + size);
return size;
}
void AudioOutputController::WaitTillDataReady() {
if (!sync_reader_->DataReady()) {
// In the different place we use different mechanism to poll, get max
// polling delay from constants used there.
const base::TimeDelta kMaxPollingDelay = TimeDelta::FromMilliseconds(
kPollNumAttempts * kPollPauseInMilliseconds);
Time start_time = Time::Now();
do {
base::PlatformThread::Sleep(TimeDelta::FromMilliseconds(1));
} while (!sync_reader_->DataReady() &&
Time::Now() - start_time < kMaxPollingDelay);
}
}
void AudioOutputController::OnError(AudioOutputStream* stream, int code) {
// Handle error on the audio controller thread.
message_loop_->PostTask(FROM_HERE, base::Bind(
&AudioOutputController::DoReportError, this, code));
}
void AudioOutputController::DoStopCloseAndClearStream(WaitableEvent *done) {
DCHECK(message_loop_->BelongsToCurrentThread());
// Allow calling unconditionally and bail if we don't have a stream_ to close.
if (stream_ != NULL) {
stream_->Stop();
stream_->Close();
stream_ = NULL;
weak_this_.InvalidateWeakPtrs();
}
// Should be last in the method, do not touch "this" from here on.
if (done != NULL)
done->Signal();
}
} // namespace media
|