blob: fe0d857a1c46c749740ec2a9f4d676e936f24d70 (
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
|
// Copyright (c) 2010 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/fake_audio_output_stream.h"
#include "base/at_exit.h"
#include "base/logging.h"
bool FakeAudioOutputStream::has_created_fake_stream_ = false;
FakeAudioOutputStream* FakeAudioOutputStream::last_fake_stream_ = NULL;
// static
AudioOutputStream* FakeAudioOutputStream::MakeFakeStream(
const AudioParameters& params) {
if (!has_created_fake_stream_)
base::AtExitManager::RegisterCallback(&DestroyLastFakeStream, NULL);
has_created_fake_stream_ = true;
FakeAudioOutputStream* new_stream = new FakeAudioOutputStream(params);
if (last_fake_stream_) {
DCHECK(last_fake_stream_->closed_);
delete last_fake_stream_;
}
last_fake_stream_ = new_stream;
return new_stream;
}
// static
FakeAudioOutputStream* FakeAudioOutputStream::GetLastFakeStream() {
return last_fake_stream_;
}
bool FakeAudioOutputStream::Open() {
if (packet_size_ < sizeof(int16))
return false;
buffer_.reset(new uint8[packet_size_]);
return true;
}
void FakeAudioOutputStream::Start(AudioSourceCallback* callback) {
callback_ = callback;
memset(buffer_.get(), 0, packet_size_);
callback_->OnMoreData(this, buffer_.get(), packet_size_,
AudioBuffersState(0, 0));
}
void FakeAudioOutputStream::Stop() {
callback_ = NULL;
}
void FakeAudioOutputStream::SetVolume(double volume) {
volume_ = volume;
}
void FakeAudioOutputStream::GetVolume(double* volume) {
*volume = volume_;
}
void FakeAudioOutputStream::Close() {
closed_ = true;
}
FakeAudioOutputStream::FakeAudioOutputStream(const AudioParameters& params)
: volume_(0),
callback_(NULL),
packet_size_(params.GetPacketSize()),
closed_(false) {
}
FakeAudioOutputStream::~FakeAudioOutputStream() {}
// static
void FakeAudioOutputStream::DestroyLastFakeStream(void* param) {
if (last_fake_stream_) {
DCHECK(last_fake_stream_->closed_);
delete last_fake_stream_;
}
}
|