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

1 2 3 4 5 6

  /external/libvpx/libvpx/test/
config_test.cc 34 virtual void PreEncodeFrameHook(libvpx_test::VideoSource* /*video*/) {
52 libvpx_test::DummyVideoSource video; local
53 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
keyframe_test.cc 34 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video,
37 frame_flags_ = (video->frame() % 3) ? 0 : VPX_EFLAG_FORCE_KF;
38 if (set_cpu_used_ && video->frame() == 1)
62 ::libvpx_test::RandomVideoSource video; local
63 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
75 ::libvpx_test::RandomVideoSource video; local
76 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
85 ::libvpx_test::DummyVideoSource video; local
86 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
98 ::libvpx_test::DummyVideoSource video; local
    [all...]
test_vector_test.cc 215 // The md5 checksums are computed for each frame in the video file. If md5
220 libvpx_test::CompressedVideoSource *video = NULL; local
222 // Open compressed video file.
224 video = new libvpx_test::IVFVideoSource(filename);
226 video = new libvpx_test::WebMVideoSource(filename);
228 video->Init();
235 ASSERT_NO_FATAL_FAILURE(RunLoop(video));
236 delete video;
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_video.cc 19 // These tests deal with compositing video.
31 scoped_refptr<VideoLayer> video = VideoLayer::Create( variable
33 video->SetPosition(gfx::PointF(3.f, 3.f));
34 video->SetBounds(gfx::Size(4, 4));
35 video->SetAnchorPoint(gfx::PointF());
36 video->SetIsDrawable(true);
37 root->AddChild(video);
64 // Second frame the video layer is damaged.
76 VideoLayerImpl* video = static_cast<VideoLayerImpl*>( variable
80 video->SetNeedsRedraw()
    [all...]
  /external/chromium_org/content/renderer/media/
mock_media_stream_dispatcher.cc 42 StreamDeviceInfo video; local
43 video.device.id = "video_device_id";
44 video.device.name = "usb video camera";
45 video.device.type = components.video_type;
46 video.session_id = request_id;
47 video_array_.push_back(video);
  /external/chromium_org/third_party/WebKit/Source/web/
WebUserMediaRequest.cpp 75 bool WebUserMediaRequest::video() const function in class:WebKit::WebUserMediaRequest
78 return m_private->video();
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaDocument.cpp 151 HTMLVideoElement* video = descendentVideoElement(targetNode); local
152 if (!video)
158 if (video->paused()) {
159 if (video->canPlay())
160 video->play();
162 video->pause();
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_gamma.c 96 SDL_VideoDevice *video = current_video; local
109 if ( (succeeded < 0) && video->SetGamma ) {
111 succeeded = video->SetGamma(this, red, green, blue);
122 SDL_VideoDevice *video = current_video; local
137 if ( (succeeded < 0) && video->GetGamma ) {
139 succeeded = video->GetGamma(this, red, green, blue);
147 SDL_VideoDevice *video = current_video; local
153 SDL_SetError("No video mode has been set");
158 if ( ! video->gamma ) {
164 SDL_memcpy(&video->gamma[0*256], red, 256*sizeof(*video->gamma))
198 SDL_VideoDevice *video = current_video; local
    [all...]
SDL_yuv.c 24 /* This is the implementation of the YUV video surface support */
35 SDL_VideoDevice *video = current_video; local
45 /* Display directly on video surface, if possible */
55 if ( ((display == SDL_VideoSurface) && video->CreateYUVOverlay) &&
57 overlay = video->CreateYUVOverlay(this, w, h, format, display);
SDL_blit.c 276 SDL_VideoDevice *video = current_video; local
278 video->CheckHWBlit(this, surface, surface->map->dst);
287 SDL_VideoDevice *video = current_video; local
289 video->CheckHWBlit(this, surface, surface->map->dst);
  /external/chromium_org/chrome/browser/resources/file_manager/js/media/
video_player.js 17 // The window is hidden if the video has not loaded yet.
30 document.querySelector('#video-player').setAttribute('disabled', 'true');
32 // Detach the video element, since it may be unreliable and reset stored
37 // Avoid reusing a video element.
38 video.parentNode.removeChild(video);
39 video = null;
44 * @param {Element} videoContainer Container for the video element.
45 * @param {Element} controlsContainer Container for video controls.
104 * Restore the state after the video is loaded
124 var video; variable
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebMediaStream.cpp 144 MediaStreamComponentVector audio, video; local
151 video.append(component);
153 m_private = MediaStreamDescriptor::create(label, audio, video);
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
UserMediaRequest.cpp 72 RefPtr<MediaConstraintsImpl> video = parseOptions(options, "video", es);
76 if (!audio && !video)
79 return adoptRef(new UserMediaRequest(context, controller, audio.release(), video.release(), successCallback, errorCallback));
82 UserMediaRequest::UserMediaRequest(ScriptExecutionContext* context, UserMediaController* controller, PassRefPtr<MediaConstraintsImpl> audio, PassRefPtr<MediaConstraintsImpl> video, PassRefPtr<NavigatorUserMediaSuccessCallback> successCallback, PassRefPtr<NavigatorUserMediaErrorCallback> errorCallback)
85 , m_video(video)
101 bool UserMediaRequest::video() const function in class:WebCore::UserMediaRequest
  /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/grub/stage2/
hercules.c 84 volatile unsigned short *video local
87 video[herc_y * HERCULES_WIDTH + herc_x]
101 volatile unsigned long *video = (unsigned long *) HERCULES_VIDEO_ADDR; local
111 video[i] = 0x07200720;
119 volatile unsigned long *video = (unsigned long *) HERCULES_VIDEO_ADDR; local
122 video[i] = 0x07200720;
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
avcenc_api.cpp 61 AVCCommonObj *video; local
91 video = encvid->common;
102 video->currSeqParams = (AVCSeqParamSet*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCSeqParamSet), DEFAULT_ATTR);
103 if (video->currSeqParams == NULL)
109 video->currPicParams = (AVCPicParamSet*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCPicParamSet), DEFAULT_ATTR);
110 if (video->currPicParams == NULL)
116 video->sliceHdr = (AVCSliceHeader*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCSliceHeader), DEFAULT_ATTR);
117 if (video->sliceHdr == NULL)
123 video->decPicBuf = (AVCDecPicBuffer*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCDecPicBuffer), DEFAULT_ATTR);
124 if (video->decPicBuf == NULL
279 AVCCommonObj *video = encvid->common; local
371 AVCCommonObj *video = encvid->common; local
553 AVCCommonObj *video = encvid->common; local
594 AVCCommonObj *video; local
    [all...]
header.cpp 27 AVCCommonObj *video = encvid->common; local
28 AVCSeqParamSet *seqParam = video->currSeqParams;
229 AVCCommonObj *video = encvid->common; local
231 AVCPicParamSet *picParam = video->currPicParams;
318 AVCCommonObj *video = encvid->common; local
319 AVCSliceHeader *sliceHdr = video->sliceHdr;
320 AVCPicParamSet *currPPS = video->currPicParams;
321 AVCSeqParamSet *currSPS = video->currSeqParams;
330 slice_type = video->slice_type;
332 if (video->mbNum == 0) /* first mb in frame *
650 AVCCommonObj *video = encvid->common; local
    [all...]
init.cpp 29 AVCCommonObj *video = encvid->common; local
30 AVCSeqParamSet *seqParam = video->currSeqParams;
31 AVCPicParamSet *picParam = video->currPicParams;
32 AVCSliceHeader *sliceHdr = video->sliceHdr;
63 video->MaxPicOrderCntLsb = 1 << (extS->log2_max_pic_order_cnt_lsb_minus4 + 4);
64 video->PicWidthInMbs = extS->pic_width_in_mbs_minus1 + 1;
65 video->PicHeightInMapUnits = extS->pic_height_in_map_units_minus1 + 1 ;
66 video->FrameHeightInMbs = (2 - extS->frame_mbs_only_flag) * video->PicHeightInMapUnits ;
70 video->MaxPicOrderCntLsb = 1 << (encParam->log2_max_poc_lsb_minus_4 + 4)
644 AVCCommonObj *video = encvid->common; local
707 AVCCommonObj *video = encvid->common; local
804 AVCCommonObj *video = encvid->common; local
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/
IfElseFilterTest.java 54 FrameImage2D video = local
65 video.setBitmap(videoBitmap);
66 injectInputFrame("trueResult", video);
75 // Ensure that for true, we use the video input
77 assertEquals(outputImage, video);
85 FrameImage2D video = local
96 video.setBitmap(videoBitmap);
97 injectInputFrame("trueResult", video);
107 // Ensure that for true, we use the video input
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowPresenter.java 219 * @param video
222 protected void presentVideo(SlideViewInterface view, VideoModel video,
225 view.setVideo(video.getSrc(), video.getUri());
235 view.setVideoVisibility(video.isVisible());
237 MediaAction action = video.getCurrentAction();
245 view.seekVideo(video.getSeekTo());
SlideshowEditor.java 175 VideoModel video = new VideoModel(mContext, newVideo, local
178 slide.add(video);
179 slide.updateDuration(video.getDuration());
  /external/chromium/third_party/libjingle/source/talk/session/phone/
call.h 71 bool video() const { return video_; } function in class:cricket::Call
  /external/chromium_org/media/filters/
ffmpeg_demuxer_unittest.cc 224 // Open a file containing streams but none of which are audio/video streams.
235 // Video stream should be present.
236 DemuxerStream* stream = demuxer_->GetStream(DemuxerStream::VIDEO);
238 EXPECT_EQ(DemuxerStream::VIDEO, stream->type());
274 // Stream #0: Video (VP8)
277 // Stream #3: Video (Theora)
280 // We should only pick the first audio/video streams we come across.
284 // Video stream should be VP8.
285 DemuxerStream* stream = demuxer_->GetStream(DemuxerStream::VIDEO);
287 EXPECT_EQ(DemuxerStream::VIDEO, stream->type())
330 DemuxerStream* video = demuxer_->GetStream(DemuxerStream::VIDEO); local
345 DemuxerStream* video = demuxer_->GetStream(DemuxerStream::VIDEO); local
383 DemuxerStream* video = demuxer_->GetStream(DemuxerStream::VIDEO); local
460 DemuxerStream* video = demuxer_->GetStream(DemuxerStream::VIDEO); local
488 DemuxerStream* video = demuxer_->GetStream(DemuxerStream::VIDEO); local
    [all...]
  /external/grub/docs/
kernel.c 32 /* The video memory address. */
33 #define VIDEO 0xB8000
40 /* Point to the video memory. */
41 static volatile unsigned char *video; variable
155 /* Clear the screen and initialize VIDEO, XPOS and YPOS. */
161 video = (unsigned char *) VIDEO;
164 *(video + i) = 0;
230 *(video + (xpos + ypos * COLUMNS) * 2) = c & 0xFF;
231 *(video + (xpos + ypos * COLUMNS) * 2 + 1) = ATTRIBUTE
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_keyboard.c 61 SDL_VideoDevice *video = current_video; local
71 video->InitOSKeymap(this);

Completed in 1036 milliseconds

1 2 3 4 5 6