Home
last modified time | relevance | path

Searched refs:VideoFrame (Results 1 – 10 of 10) sorted by relevance

/external/chromium/webkit/glue/media/
Dvideo_renderer_impl.cc54 scoped_refptr<media::VideoFrame> video_frame; in Paint()
84 scoped_refptr<media::VideoFrame>* frame_out) { in GetCurrentFrame()
89 scoped_refptr<media::VideoFrame> frame) { in PutCurrentFrame()
154 void VideoRendererImpl::SlowPaint(media::VideoFrame* video_frame, in SlowPaint()
163 DCHECK(video_frame->format() == media::VideoFrame::YV12 || in SlowPaint()
164 video_frame->format() == media::VideoFrame::YV16); in SlowPaint()
165 DCHECK(video_frame->stride(media::VideoFrame::kUPlane) == in SlowPaint()
166 video_frame->stride(media::VideoFrame::kVPlane)); in SlowPaint()
167 DCHECK(video_frame->planes() == media::VideoFrame::kNumYUVPlanes); in SlowPaint()
170 (video_frame->format() == media::VideoFrame::YV12) ? in SlowPaint()
[all …]
Dvideo_renderer_impl.h34 virtual void GetCurrentFrame(scoped_refptr<media::VideoFrame>* frame_out);
35 virtual void PutCurrentFrame(scoped_refptr<media::VideoFrame> frame);
53 void SlowPaint(media::VideoFrame* video_frame,
60 void FastPaint(media::VideoFrame* video_frame,
80 media::VideoFrame* last_converted_frame_;
Dweb_video_renderer.h44 virtual void GetCurrentFrame(scoped_refptr<media::VideoFrame>* frame_out) {} in GetCurrentFrame()
45 virtual void PutCurrentFrame(scoped_refptr<media::VideoFrame> frame) {} in PutCurrentFrame()
/external/chromium/third_party/libjingle/source/talk/session/phone/
Dmediachannel.h247 class VideoFrame {
251 VideoFrame() : rendered_(false) {} in VideoFrame() function
253 virtual ~VideoFrame() {} in ~VideoFrame()
282 virtual VideoFrame *Copy() const = 0;
320 virtual void StretchToFrame(VideoFrame *target, bool interpolate,
327 virtual VideoFrame *Stretch(size_t w, size_t h, bool interpolate,
343 class NullVideoFrame : public VideoFrame {
364 virtual VideoFrame *Copy() const { in Copy()
388 virtual void StretchToFrame(VideoFrame *target, bool interpolate, in StretchToFrame()
392 virtual VideoFrame *Stretch(size_t w, size_t h, bool interpolate, in Stretch()
[all …]
/external/webrtc/src/modules/interface/
Dmodule_common_types.h432 class VideoFrame
435 VideoFrame();
436 ~VideoFrame();
458 WebRtc_Word32 SwapFrame(VideoFrame& videoFrame);
463 WebRtc_Word32 CopyFrame(const VideoFrame& videoFrame);
538 VideoFrame::VideoFrame(): in VideoFrame() function
550 VideoFrame::~VideoFrame() in ~VideoFrame()
562 VideoFrame::VerifyAndAllocate(const WebRtc_UWord32 minimumSize) in VerifyAndAllocate()
586 VideoFrame::SetLength(const WebRtc_UWord32 newLength) in SetLength()
598 VideoFrame::SwapFrame(VideoFrame& videoFrame) in SwapFrame()
[all …]
/external/chromium/webkit/glue/
Dwebvideoframe_impl.h16 static media::VideoFrame* toVideoFrame(
19 WebVideoFrameImpl(scoped_refptr<media::VideoFrame> video_frame);
31 scoped_refptr<media::VideoFrame> video_frame_;
Dwebvideoframe_impl.cc14 media::VideoFrame* WebVideoFrameImpl::toVideoFrame( in toVideoFrame()
24 scoped_refptr<media::VideoFrame> video_frame) in WebVideoFrameImpl()
32 int(media::VideoFrame::chromium_name), \
Dwebmediaplayer_impl.h108 void GetCurrentFrame(scoped_refptr<media::VideoFrame>* frame_out);
109 void PutCurrentFrame(scoped_refptr<media::VideoFrame> frame);
Dwebmediaplayer_impl.cc258 scoped_refptr<media::VideoFrame>* frame_out) { in GetCurrentFrame()
264 scoped_refptr<media::VideoFrame> frame) { in PutCurrentFrame()
746 scoped_refptr<media::VideoFrame> video_frame; in getCurrentFrame()
756 scoped_refptr<media::VideoFrame> video_frame( in putCurrentFrame()
/external/chromium/third_party/libjingle/source/talk/examples/call/
Dcallclient.cc65 bool RenderFrame(const cricket::VideoFrame *frame) { in RenderFrame()