blob: e737c437c9c8d47a2af1ae90a805cfa1f49bb4ba (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
// 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/null_audio_sink.h"
#include "base/bind.h"
#include "base/single_thread_task_runner.h"
#include "media/audio/fake_audio_worker.h"
#include "media/base/audio_hash.h"
namespace media {
NullAudioSink::NullAudioSink(
const scoped_refptr<base::SingleThreadTaskRunner>& task_runner)
: initialized_(false),
playing_(false),
callback_(NULL),
task_runner_(task_runner) {
}
NullAudioSink::~NullAudioSink() {}
void NullAudioSink::Initialize(const AudioParameters& params,
RenderCallback* callback) {
DCHECK(!initialized_);
fake_worker_.reset(new FakeAudioWorker(task_runner_, params));
audio_bus_ = AudioBus::Create(params);
callback_ = callback;
initialized_ = true;
}
void NullAudioSink::Start() {
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK(!playing_);
}
void NullAudioSink::Stop() {
DCHECK(task_runner_->BelongsToCurrentThread());
// Stop may be called at any time, so we have to check before stopping.
if (fake_worker_)
fake_worker_->Stop();
}
void NullAudioSink::Play() {
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK(initialized_);
if (playing_)
return;
fake_worker_->Start(base::Bind(
&NullAudioSink::CallRender, base::Unretained(this)));
playing_ = true;
}
void NullAudioSink::Pause() {
DCHECK(task_runner_->BelongsToCurrentThread());
if (!playing_)
return;
fake_worker_->Stop();
playing_ = false;
}
bool NullAudioSink::SetVolume(double volume) {
// Audio is always muted.
return volume == 0.0;
}
void NullAudioSink::CallRender() {
DCHECK(task_runner_->BelongsToCurrentThread());
int frames_received = callback_->Render(audio_bus_.get(), 0);
if (!audio_hash_ || frames_received <= 0)
return;
audio_hash_->Update(audio_bus_.get(), frames_received);
}
void NullAudioSink::StartAudioHashForTesting() {
DCHECK(!initialized_);
audio_hash_.reset(new AudioHash());
}
std::string NullAudioSink::GetAudioHashForTesting() {
return audio_hash_ ? audio_hash_->ToString() : std::string();
}
} // namespace media
|