OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:audioSources
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
MediaStreamAudioDestinationNode.cpp
53
MediaStreamSourceVector
audioSources
;
54
audioSources
.append(m_source);
56
m_stream = MediaStream::create(context->executionContext(), MediaStreamDescriptor::create(
audioSources
, videoSources));
/external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
MediaStreamDescriptor.cpp
40
PassRefPtr<MediaStreamDescriptor> MediaStreamDescriptor::create(const MediaStreamSourceVector&
audioSources
, const MediaStreamSourceVector& videoSources)
42
return adoptRef(new MediaStreamDescriptor(createCanonicalUUIDString(),
audioSources
, videoSources));
97
MediaStreamDescriptor::MediaStreamDescriptor(const String& id, const MediaStreamSourceVector&
audioSources
, const MediaStreamSourceVector& videoSources)
103
for (size_t i = 0; i <
audioSources
.size(); i++)
104
m_audioComponents.append(MediaStreamComponent::create(this,
audioSources
[i]));
MediaStreamDescriptor.h
59
static PassRefPtr<MediaStreamDescriptor> create(const MediaStreamSourceVector&
audioSources
, const MediaStreamSourceVector& videoSources);
89
MediaStreamDescriptor(const String& id, const MediaStreamSourceVector&
audioSources
, const MediaStreamSourceVector& videoSources);
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaStream.cpp
58
static PassRefPtr<MediaStream> createFromSourceVectors(ExecutionContext* context, const MediaStreamSourceVector&
audioSources
, const MediaStreamSourceVector& videoSources)
60
RefPtr<MediaStreamDescriptor> descriptor = MediaStreamDescriptor::create(
audioSources
, videoSources);
68
MediaStreamSourceVector
audioSources
;
71
return createFromSourceVectors(context,
audioSources
, videoSources);
78
MediaStreamSourceVector
audioSources
;
82
processTrack(stream->m_audioTracks[i].get(),
audioSources
);
87
return createFromSourceVectors(context,
audioSources
, videoSources);
92
MediaStreamSourceVector
audioSources
;
96
processTrack(tracks[i].get(), tracks[i]->kind() == "audio" ?
audioSources
: videoSources);
98
return createFromSourceVectors(context,
audioSources
, videoSources)
[
all
...]
Completed in 200 milliseconds