OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:videoelement
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/WebKit/PerformanceTests/Canvas/
draw-video-to-hw-accelerated-canvas-2d.html
8
var
videoElement
= document.getElementById("video");
17
function addPlayCallback(
videoElement
) {
19
videoElement
.addEventListener("canplaythrough", startVideo, true);
20
videoElement
.addEventListener("play", startPerfTest, true);
21
videoElement
.addEventListener('error', function(ev) {
24
videoElement
.src = "../resources/bear-1280x720.mp4";
29
videoElement
.removeEventListener("canplaythrough", startVideo, true);
30
videoElement
.play();
42
destCtx2D.drawImage(
videoElement
, 0, 0);
56
addPlayCallback(
videoElement
);
[
all
...]
upload-video-to-texture.html
8
var
videoElement
= document.getElementById("video");
19
function addPlayCallback(
videoElement
) {
21
videoElement
.addEventListener("canplaythrough", startVideo, true);
22
videoElement
.addEventListener("play", startPerfTest, true);
23
videoElement
.addEventListener('error', function(ev) {
26
videoElement
.src = "../resources/bear-1280x720.mp4";
31
videoElement
.removeEventListener("canplaythrough", startVideo, true);
32
videoElement
.play();
62
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE,
videoElement
);
75
addPlayCallback(
videoElement
);
[
all
...]
upload-video-to-sub-texture.html
8
var
videoElement
= document.getElementById("video");
19
function addPlayCallback(
videoElement
) {
21
videoElement
.addEventListener("canplaythrough", startVideo, true);
22
videoElement
.addEventListener("play", startPerfTest, true);
23
videoElement
.addEventListener('error', function(ev) {
26
videoElement
.src = "../resources/bear-1280x720.mp4";
31
videoElement
.removeEventListener("canplaythrough", startVideo, true);
32
videoElement
.play();
56
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA,
videoElement
.videoWidth,
videoElement
.videoHeight, 0, gl.RGBA, gl.UNSIGNED_BYTE, null)
[
all
...]
/external/chromium_org/content/test/data/media/
webrtc_test_utilities.js
68
var
videoElement
= $(videoElementName);
73
context.drawImage(
videoElement
, 0, 0, width, height);
82
callback(
videoElement
.videoWidth,
videoElement
.videoHeight);
98
function waitForVideo(
videoElement
) {
100
detectVideoPlaying(
videoElement
, function () { eventOccured(); });
103
function waitForVideoToStop(
videoElement
) {
105
detectVideoStopped(
videoElement
, function () { eventOccured(); });
108
function waitForBlackVideo(
videoElement
) {
110
detectBlackVideo(
videoElement
, function () { eventOccured(); })
[
all
...]
getusermedia.html
268
function plugStreamIntoVideoElement(stream,
videoElement
) {
271
$(
videoElement
).src = localStreamUrl;
274
function displayIntoVideoElement(stream, callback,
videoElement
) {
275
plugStreamIntoVideoElement(stream,
videoElement
);
276
detectVideoPlaying(
videoElement
, callback);
292
stream, callback,
videoElement
) {
293
plugStreamIntoVideoElement(stream,
videoElement
);
294
detectAspectRatio(callback,
videoElement
);
383
var
videoElement
= $(videoElementName);
393
var width =
videoElement
.videoWidth
[
all
...]
peerconnection-call.html
173
var
videoElement
= document.createElement('video');
176
videoElement
.src = URL.createObjectURL(newStream);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
HTMLVideoElementMediaSource.cpp
43
VideoPlaybackQuality* HTMLVideoElementMediaSource::getVideoPlaybackQuality(HTMLVideoElement&
videoElement
)
48
WebMediaPlayer* webMediaPlayer =
videoElement
.webMediaPlayer();
55
return VideoPlaybackQuality::create(
videoElement
.document(), total, dropped, corrupted);
/external/chromium_org/third_party/WebKit/Source/core/paint/
VideoPainter.cpp
23
bool displayingPoster = m_renderVideo.
videoElement
()->shouldDisplayPosterImage();
44
m_renderVideo.
videoElement
()->paintCurrentFrameInContext(context, pixelSnappedIntRect(rect));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderVideo.cpp
62
if (
videoElement
()->shouldDisplayPosterImage())
86
HTMLVideoElement* video =
videoElement
();
124
if (
videoElement
()->shouldDisplayPosterImage())
135
if (
videoElement
()->shouldDisplayPosterImage())
143
return !
videoElement
()->shouldDisplayPosterImage();
163
HTMLVideoElement* RenderVideo::
videoElement
() const
182
if (!
videoElement
()->isActive())
185
videoElement
()->setNeedsCompositingUpdate();
RenderVideo.h
47
HTMLVideoElement*
videoElement
() const;
/external/chromium_org/ui/file_manager/video_player/js/cast/
cast_video_element.js
22
* This class is the dummy class which has same interface as
VideoElement
. This
23
* behaves like
VideoElement
, and is used for making Chromecast player
/packages/apps/Mms/src/com/android/mms/model/
SmilHelper.java
234
SMILMediaElement
videoElement
= createMediaElement(
236
par.appendChild(
videoElement
);
Completed in 212 milliseconds