Searched refs:video_frame (Results 1 - 6 of 6) sorted by relevance

/external/chromium/webkit/glue/media/
H A Dvideo_renderer_impl.cc7 #include "media/base/video_frame.h"
54 scoped_refptr<media::VideoFrame> video_frame; local
55 GetCurrentFrame(&video_frame);
56 if (!video_frame) {
67 FastPaint(video_frame, canvas, dest_rect);
69 SlowPaint(video_frame, canvas, dest_rect);
77 VLOG(1) << "pts=" << video_frame->GetTimestamp().InMicroseconds();
80 PutCurrentFrame(video_frame);
154 void VideoRendererImpl::SlowPaint(media::VideoFrame* video_frame, argument
158 base::TimeDelta timestamp = video_frame
201 FastPaint(media::VideoFrame* video_frame, SkCanvas* canvas, const gfx::Rect& dest_rect) argument
[all...]
H A Dvideo_renderer_impl.h53 void SlowPaint(media::VideoFrame* video_frame,
60 void FastPaint(media::VideoFrame* video_frame,
/external/chromium/webkit/glue/
H A Dwebvideoframe_impl.h8 #include "media/base/video_frame.h"
19 WebVideoFrameImpl(scoped_refptr<media::VideoFrame> video_frame);
H A Dwebvideoframe_impl.cc7 #include "media/base/video_frame.h"
24 scoped_refptr<media::VideoFrame> video_frame)
25 : video_frame_(video_frame) {
23 WebVideoFrameImpl( scoped_refptr<media::VideoFrame> video_frame) argument
H A Dwebmediaplayer_impl.cc18 #include "media/base/video_frame.h"
746 scoped_refptr<media::VideoFrame> video_frame; local
747 proxy_->GetCurrentFrame(&video_frame);
748 if (video_frame.get())
749 return new WebVideoFrameImpl(video_frame);
756 scoped_refptr<media::VideoFrame> video_frame(
758 proxy_->PutCurrentFrame(video_frame);
/external/qemu/android/camera/
H A Dcamera-service.c595 uint8_t* video_frame; member in struct:CameraClient
597 * This address points inside the 'video_frame' buffer. */
627 if (cc->video_frame != NULL) {
628 free(cc->video_frame);
768 if (cc->video_frame != NULL) {
853 if (cc->video_frame != NULL) {
919 cc->video_frame =
921 if (cc->video_frame == NULL) {
929 cc->preview_frame = (uint16_t*)(cc->video_frame + cc->video_frame_size);
937 free(cc->video_frame);
[all...]

Completed in 86 milliseconds