OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:videoSources
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/mediastream/
MediaStreamDescriptor.cpp
40
PassRefPtr<MediaStreamDescriptor> MediaStreamDescriptor::create(const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector&
videoSources
)
42
return adoptRef(new MediaStreamDescriptor(createCanonicalUUIDString(), audioSources,
videoSources
));
102
MediaStreamDescriptor::MediaStreamDescriptor(const String& id, const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector&
videoSources
)
111
for (size_t i = 0; i <
videoSources
.size(); i++)
112
m_videoComponents.append(MediaStreamComponent::create(
videoSources
[i]));
MediaStreamDescriptor.h
60
static PassRefPtr<MediaStreamDescriptor> create(const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector&
videoSources
);
90
MediaStreamDescriptor(const String& id, const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector&
videoSources
);
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
MediaStreamAudioDestinationNode.cpp
52
MediaStreamSourceVector
videoSources
;
53
m_stream = MediaStream::create(context->executionContext(), MediaStreamDescriptor::create(audioSources,
videoSources
));
Completed in 113 milliseconds