blob: 40f5631808325971c135e27aea0d5c89107880d9 (
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
|
// Copyright 2014 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/media_stream_audio_source.h"
namespace content {
MediaStreamAudioSource::MediaStreamAudioSource(
int render_view_id,
const StreamDeviceInfo& device_info,
const SourceStoppedCallback& stop_callback,
MediaStreamDependencyFactory* factory)
: render_view_id_(render_view_id),
factory_(factory) {
SetDeviceInfo(device_info);
SetStopCallback(stop_callback);
}
MediaStreamAudioSource::MediaStreamAudioSource()
: render_view_id_(-1),
factory_(NULL) {
}
MediaStreamAudioSource::~MediaStreamAudioSource() {}
void MediaStreamAudioSource::DoStopSource() {
if (audio_capturer_.get())
audio_capturer_->Stop();
}
void MediaStreamAudioSource::AddTrack(
const blink::WebMediaStreamTrack& track,
const blink::WebMediaConstraints& constraints,
const ConstraintsCallback& callback) {
// TODO(xians): Properly implement for audio sources.
bool result = true;
if (factory_ && !local_audio_source_) {
result = factory_->InitializeMediaStreamAudioSource(render_view_id_,
constraints,
this);
}
callback.Run(this, result);
}
void MediaStreamAudioSource::RemoveTrack(
const blink::WebMediaStreamTrack& track) {
NOTIMPLEMENTED();
}
} // namespace content
|