Searched refs:audioSources (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DMediaStreamAudioDestinationNode.cpp54 MediaStreamSourceVector audioSources; local
55 audioSources.append(m_source);
57 m_stream = MediaStream::create(context->scriptExecutionContext(), MediaStreamDescriptor::create(audioSources, videoSources));
/external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
H A DMediaStreamDescriptor.cpp44 PassRefPtr<MediaStreamDescriptor> MediaStreamDescriptor::create(const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector& videoSources) argument
46 return adoptRef(new MediaStreamDescriptor(createCanonicalUUIDString(), audioSources, videoSources));
101 MediaStreamDescriptor::MediaStreamDescriptor(const String& id, const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector& videoSources) argument
107 for (size_t i = 0; i < audioSources.size(); i++)
108 m_audioComponents.append(MediaStreamComponent::create(this, audioSources[i]));
H A DMediaStreamDescriptor.h59 static PassRefPtr<MediaStreamDescriptor> create(const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector& videoSources);
87 MediaStreamDescriptor(const String& id, const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector& videoSources);
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DMediaStream.cpp58 static PassRefPtr<MediaStream> createFromSourceVectors(ScriptExecutionContext* context, const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector& videoSources) argument
60 RefPtr<MediaStreamDescriptor> descriptor = MediaStreamDescriptor::create(audioSources, videoSources);
68 MediaStreamSourceVector audioSources; local
71 return createFromSourceVectors(context, audioSources, videoSources);
78 MediaStreamSourceVector audioSources; local
82 processTrack(stream->m_audioTracks[i].get(), audioSources);
87 return createFromSourceVectors(context, audioSources, videoSources);
92 MediaStreamSourceVector audioSources; local
96 processTrack(tracks[i].get(), tracks[i]->kind() == "audio" ? audioSources : videoSources);
98 return createFromSourceVectors(context, audioSources, videoSource
[all...]

Completed in 150 milliseconds