blob: baf6877577523914250fcbbac2c5a4c1f5d07c64 (
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
|
// 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 "content/renderer/media/audio_device_factory.h"
#include "base/logging.h"
#include "content/common/child_process.h"
#include "content/renderer/media/audio_input_message_filter.h"
#include "content/renderer/media/audio_message_filter.h"
#include "content/renderer/media/renderer_audio_output_device.h"
#include "media/audio/audio_input_device.h"
namespace content {
// static
AudioDeviceFactory* AudioDeviceFactory::factory_ = NULL;
// static
scoped_refptr<RendererAudioOutputDevice> AudioDeviceFactory::NewOutputDevice() {
RendererAudioOutputDevice* device = NULL;
if (factory_)
device = factory_->CreateOutputDevice();
return device ? device : new RendererAudioOutputDevice(
AudioMessageFilter::Get(),
ChildProcess::current()->io_message_loop()->message_loop_proxy());
}
// static
scoped_refptr<media::AudioInputDevice> AudioDeviceFactory::NewInputDevice() {
media::AudioInputDevice* device = NULL;
if (factory_)
device = factory_->CreateInputDevice();
return device ? device : new media::AudioInputDevice(
AudioInputMessageFilter::Get(),
ChildProcess::current()->io_message_loop()->message_loop_proxy());
}
AudioDeviceFactory::AudioDeviceFactory() {
DCHECK(!factory_) << "Can't register two factories at once.";
factory_ = this;
}
AudioDeviceFactory::~AudioDeviceFactory() {
factory_ = NULL;
}
} // namespace content
|