HomeSort by relevance Sort by last modified time
    Searched defs:video (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/chromium_org/cc/trees/
layer_tree_host_unittest_video.cc 19 // These tests deal with compositing video.
30 scoped_refptr<VideoLayer> video = variable
32 video->SetPosition(gfx::PointF(3.f, 3.f));
33 video->SetBounds(gfx::Size(4, 5));
34 video->SetIsDrawable(true);
35 root->AddChild(video);
62 // Second frame the video layer is damaged.
74 VideoLayerImpl* video = static_cast<VideoLayerImpl*>( variable
77 EXPECT_EQ(media::VIDEO_ROTATION_90, video->video_rotation());
80 video->SetNeedsRedraw()
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
frame_size_tests.cc 30 const libvpx_test::VideoSource& /*video*/,
36 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video,
38 if (video->frame() == 1) {
51 ::libvpx_test::RandomVideoSource video; local
54 video.SetSize(DECODE_WIDTH_LIMIT + 16, DECODE_HEIGHT_LIMIT + 16);
55 video.set_limit(2);
57 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
62 ::libvpx_test::RandomVideoSource video; local
65 video.SetSize(DECODE_WIDTH_LIMIT, DECODE_HEIGHT_LIMIT);
66 video.set_limit(2)
    [all...]
config_test.cc 35 virtual void PreEncodeFrameHook(libvpx_test::VideoSource* /*video*/) {
53 libvpx_test::DummyVideoSource video; local
54 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
keyframe_test.cc 35 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video,
38 frame_flags_ = (video->frame() % 3) ? 0 : VPX_EFLAG_FORCE_KF;
39 if (set_cpu_used_ && video->frame() == 1)
63 ::libvpx_test::RandomVideoSource video; local
64 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
76 ::libvpx_test::RandomVideoSource video; local
77 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
86 ::libvpx_test::DummyVideoSource video; local
87 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
99 ::libvpx_test::DummyVideoSource video; local
    [all...]
test_vector_test.cc 70 // The md5 checksums are computed for each frame in the video file. If md5
75 libvpx_test::CompressedVideoSource *video = NULL; local
77 // Open compressed video file.
79 video = new libvpx_test::IVFVideoSource(filename);
82 video = new libvpx_test::WebMVideoSource(filename);
89 video->Init();
96 ASSERT_NO_FATAL_FAILURE(RunLoop(video));
97 delete video;
invalid_file_test.cc 56 const libvpx_test::CompressedVideoSource &video,
67 << "Results don't match: frame number = " << video.frame_number()
75 libvpx_test::CompressedVideoSource *video = NULL; local
80 // Open compressed video file.
82 video = new libvpx_test::IVFVideoSource(filename);
85 video = new libvpx_test::WebMVideoSource(filename);
92 video->Init();
101 ASSERT_NO_FATAL_FAILURE(RunLoop(video, cfg));
102 delete video;
135 libvpx_test::CompressedVideoSource* /*video*/,
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/
video_unittest.py 13 from telemetry.core import video namespace
41 video_obj = video.Video(vid)
tab.py 5 from telemetry.core import video namespace
86 """True if the browser instance is capable of capturing video."""
134 highlight_bitmap=video.HIGHLIGHT_ORANGE_FRAME):
135 """Starts capturing video of the tab's contents.
138 starting video recording. When the frames are processed, we can look for
155 """Stops recording video of the tab's contents.
161 video: A video object which is a telemetry.core.Video
tab_unittest.py 12 from telemetry.core import video namespace
44 return video.Video(tempfile.NamedTemporaryFile())
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/video/
ProjectionVideoActivity.java 17 package com.android.cts.verifier.projection.video;
VideoPresentation.java 17 package com.android.cts.verifier.projection.video;
32 * Play a test video that determines if the video and audio are in sync in projected presentations
  /external/libvpx/libvpx/test/
config_test.cc 35 virtual void PreEncodeFrameHook(libvpx_test::VideoSource* /*video*/) {
53 libvpx_test::DummyVideoSource video; local
54 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
keyframe_test.cc 35 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video,
38 frame_flags_ = (video->frame() % 3) ? 0 : VPX_EFLAG_FORCE_KF;
39 if (set_cpu_used_ && video->frame() == 1)
63 ::libvpx_test::RandomVideoSource video; local
64 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
76 ::libvpx_test::RandomVideoSource video; local
77 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
86 ::libvpx_test::DummyVideoSource video; local
87 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
99 ::libvpx_test::DummyVideoSource video; local
    [all...]
test_vector_test.cc 67 // The md5 checksums are computed for each frame in the video file. If md5
72 libvpx_test::CompressedVideoSource *video = NULL; local
74 // Open compressed video file.
76 video = new libvpx_test::IVFVideoSource(filename);
78 video = new libvpx_test::WebMVideoSource(filename);
80 video->Init();
87 ASSERT_NO_FATAL_FAILURE(RunLoop(video));
88 delete video;
  /external/chromium_org/content/renderer/media/
mock_media_stream_dispatcher.cc 35 // Audio and video share the same request so we use |audio_input_request_id_|
133 StreamDeviceInfo video; local
134 video.device.id = "video_device_id" + base::IntToString(session_id_);
135 video.device.name = "usb video camera";
136 video.device.type = MEDIA_DEVICE_VIDEO_CAPTURE;
137 video.device.video_facing = facing_user ? MEDIA_VIDEO_FACING_USER
139 video.session_id = session_id_;
140 video_array_.push_back(video);
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaDocument.cpp 143 HTMLVideoElement* video = Traversal<HTMLVideoElement>::firstWithin(*targetNode); local
144 if (!video)
150 video->togglePlayState();
HTMLVideoElement.cpp 61 RefPtrWillBeRawPtr<HTMLVideoElement> video = adoptRefWillBeNoop(new HTMLVideoElement(document)); local
62 video->ensureUserAgentShadowRoot();
63 video->suspendIfNeeded();
64 return video.release();
183 // the video has restarted because of loop attribute
184 if (mode == Video && oldMode == Poster && !hasAvailableVideoFrame())
197 setDisplayMode(Video);
  /external/chromium_org/third_party/WebKit/Source/web/
WebUserMediaRequest.cpp 66 bool WebUserMediaRequest::video() const function in class:blink::WebUserMediaRequest
69 return m_private->video();
  /external/chromium_org/media/formats/mp4/
mp4_stream_parser_unittest.cc 29 static const char kMp4InitDataType[] = "video/mp4";
74 << ", video=" << vc.IsValidConfig();
105 DecodeTimestamp video = !video_buffers.empty() ? local
109 (video != kNoDecodeTimestamp() && audio > video)) ? video : audio;
242 // Test a file where all video samples start with an Access Unit
  /external/chromium_org/ppapi/shared_impl/
media_stream_buffer.h 33 struct Video {
39 // Uses 8 bytes to make sure the Video struct has consistent size between
49 PP_COMPILE_ASSERT_SIZE_IN_BYTES(Video, 40);
52 Video video; member in union:ppapi::MediaStreamBuffer
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
UserMediaRequest.cpp 74 WebMediaConstraints video = parseOptions(options, "video", exceptionState);
78 if (audio.isNull() && video.isNull()) {
79 exceptionState.throwDOMException(SyntaxError, "At least one of audio and video must be requested");
83 return new UserMediaRequest(context, controller, audio, video, successCallback, errorCallback);
86 UserMediaRequest::UserMediaRequest(ExecutionContext* context, UserMediaController* controller, WebMediaConstraints audio, WebMediaConstraints video, NavigatorUserMediaSuccessCallback* successCallback, NavigatorUserMediaErrorCallback* errorCallback)
89 , m_video(video)
105 bool UserMediaRequest::video() const function in class:blink::UserMediaRequest
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebMediaStream.cpp 142 MediaStreamComponentVector audio, video; local
149 video.append(component);
151 m_private = MediaStreamDescriptor::create(label, audio, video);
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediamessages.h 50 // A collection of audio and video and data streams. Most of the
67 const std::vector<StreamParams>& video() const { return video_; } function in struct:cricket::MediaStreams
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderVideo.cpp 45 RenderVideo::RenderVideo(HTMLVideoElement* video)
46 : RenderMedia(video)
86 HTMLVideoElement* video = videoElement(); local
90 // The intrinsic width of a video element's playback area is the intrinsic width
91 // of the video resource, if that is available; otherwise it is the intrinsic
94 // The intrinsic height of a video element's playback area is the intrinsic height
95 // of the video resource, if that is available; otherwise it is the intrinsic
98 if (webMediaPlayer && video->readyState() >= HTMLVideoElement::HAVE_METADATA) {
104 if (video->shouldDisplayPosterImage() && !m_cachedImageSize.isEmpty() && !imageResource()->errorOccurred())
107 // <video> in standalone media documents should not use the default 300x15
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaRecorderStressTest.java 223 output.write("H263 video record- reset after prepare Stress test\n");
263 //Stress test case for switching camera and video recorder preview.
275 output.write("Camera and video recorder preview switching\n");
329 Log.v(TAG, "release video recorder");
349 File video = new File(filename); local
350 Log.v(TAG, "remove recorded video " + filename);
351 video.delete();
354 //Stress test case for record a video and play right away.
368 output.write("Video record and play back stress test:\n");

Completed in 978 milliseconds

1 2 3