HomeSort by relevance Sort by last modified time
    Searched refs:VideoFrame (Results 1 - 25 of 198) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/media/base/
video_frame.cc 21 scoped_refptr<VideoFrame> VideoFrame::CreateFrame(
22 VideoFrame::Format format,
28 scoped_refptr<VideoFrame> frame(new VideoFrame(
31 case VideoFrame::RGB32:
34 case VideoFrame::YV12:
35 case VideoFrame::YV12A:
36 case VideoFrame::YV16:
37 case VideoFrame::I420
    [all...]
video_frame_unittest.cc 23 void InitializeYV12Frame(VideoFrame* frame, double white_to_black) {
24 EXPECT_EQ(VideoFrame::YV12, frame->format());
27 uint8* y_plane = frame->data(VideoFrame::kYPlane);
30 memset(y_plane, color, frame->stride(VideoFrame::kYPlane));
31 y_plane += frame->stride(VideoFrame::kYPlane);
33 uint8* u_plane = frame->data(VideoFrame::kUPlane);
34 uint8* v_plane = frame->data(VideoFrame::kVPlane);
36 memset(u_plane, 0x80, frame->stride(VideoFrame::kUPlane));
37 memset(v_plane, 0x80, frame->stride(VideoFrame::kVPlane));
38 u_plane += frame->stride(VideoFrame::kUPlane)
    [all...]
video_util.h 15 class VideoFrame;
22 // Copies a plane of YUV(A) source into a VideoFrame object, taking into account
27 VideoFrame* frame);
29 VideoFrame* frame);
31 VideoFrame* frame);
33 VideoFrame* frame);
36 MEDIA_EXPORT void MakeOpaqueAPlane(int stride, int rows, VideoFrame* frame);
38 // |plane| is one of VideoFrame::kYPlane, VideoFrame::kUPlane,
39 // VideoFrame::kVPlane or VideoFrame::kAPlan
    [all...]
video_util.cc 35 VideoFrame* frame) {
53 void CopyYPlane(const uint8* source, int stride, int rows, VideoFrame* frame) {
54 CopyPlane(VideoFrame::kYPlane, source, stride, rows, frame);
57 void CopyUPlane(const uint8* source, int stride, int rows, VideoFrame* frame) {
58 CopyPlane(VideoFrame::kUPlane, source, stride, rows, frame);
61 void CopyVPlane(const uint8* source, int stride, int rows, VideoFrame* frame) {
62 CopyPlane(VideoFrame::kVPlane, source, stride, rows, frame);
65 void CopyAPlane(const uint8* source, int stride, int rows, VideoFrame* frame) {
66 CopyPlane(VideoFrame::kAPlane, source, stride, rows, frame);
69 void MakeOpaqueAPlane(int stride, int rows, VideoFrame* frame)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videorenderer.h 39 class VideoFrame;
48 virtual bool RenderFrame(const VideoFrame *frame) = 0;
nullvideorenderer.h 41 virtual bool RenderFrame(const VideoFrame *frame) {
videoprocessor.h 32 #include "talk/media/base/videoframe.h"
46 virtual void OnFrame(uint32 ssrc, VideoFrame* frame, bool* drop_frame) = 0;
  /external/chromium_org/cc/test/
fake_video_frame_provider.h 13 // Fake video frame provider that always provides the same VideoFrame.
20 virtual scoped_refptr<media::VideoFrame> GetCurrentFrame() OVERRIDE;
21 virtual void PutCurrentFrame(const scoped_refptr<media::VideoFrame>&)
24 void set_frame(const scoped_refptr<media::VideoFrame>& frame) {
29 scoped_refptr<media::VideoFrame> frame_;
  /external/chromium_org/cc/layers/
video_frame_provider.h 11 class VideoFrame;
51 virtual scoped_refptr<media::VideoFrame> GetCurrentFrame() = 0;
58 const scoped_refptr<media::VideoFrame>& frame) = 0;
  /external/chromium_org/media/tools/shader_bench/
painter.h 21 std::deque<scoped_refptr<media::VideoFrame> >* frames);
30 virtual void Paint(scoped_refptr<media::VideoFrame> video_frame) = 0;
34 std::deque<scoped_refptr<media::VideoFrame> >* frames_;
cpu_color_painter.cc 66 void CPUColorPainter::Paint(scoped_refptr<media::VideoFrame> video_frame) {
68 scoped_refptr<media::VideoFrame> rgba_frame =
69 media::VideoFrame::CreateFrame(media::VideoFrame::RGB32,
75 media::ConvertYUVToRGB32(video_frame->data(media::VideoFrame::kYPlane),
76 video_frame->data(media::VideoFrame::kUPlane),
77 video_frame->data(media::VideoFrame::kVPlane),
81 video_frame->stride(media::VideoFrame::kYPlane),
82 video_frame->stride(media::VideoFrame::kUPlane),
painter.cc 16 scoped_refptr<media::VideoFrame> cur_frame = frames_->front();
24 std::deque<scoped_refptr<media::VideoFrame> >* frames) {
  /external/chromium_org/media/filters/
skcanvas_video_renderer.cc 15 static bool IsEitherYV12OrYV16(media::VideoFrame::Format format) {
16 return format == media::VideoFrame::YV12 || format == media::VideoFrame::YV16;
19 static bool IsEitherYV12OrYV16OrNative(media::VideoFrame::Format format) {
21 format == media::VideoFrame::NATIVE_TEXTURE;
24 static bool IsEitherYV12OrYV12AOrYV16(media::VideoFrame::Format format) {
26 format == media::VideoFrame::YV12A;
30 media::VideoFrame::Format format) {
32 format == media::VideoFrame::YV12A;
46 media::VideoFrame::Format format)
    [all...]
skcanvas_video_renderer.h 17 class VideoFrame;
30 void Paint(media::VideoFrame* video_frame,
  /external/chromium/webkit/glue/
webvideoframe_impl.h 15 // This converts a WebKit::WebVideoFrame to a media::VideoFrame.
16 static media::VideoFrame* toVideoFrame(
19 WebVideoFrameImpl(scoped_refptr<media::VideoFrame> video_frame);
31 scoped_refptr<media::VideoFrame> video_frame_;
  /external/chromium_org/content/port/browser/
render_widget_host_view_frame_subscriber.h 17 class VideoFrame;
57 // media::VideoFrame::YV12 is supported. Platform layer will perform color
66 scoped_refptr<media::VideoFrame>* storage,
  /external/chromium_org/content/renderer/media/
video_frame_provider.h 13 class VideoFrame;
24 typedef base::Callback<void(const scoped_refptr<media::VideoFrame>&)>
  /frameworks/av/include/media/
MediaMetadataRetrieverInterface.h 23 #include <private/media/VideoFrame.h>
39 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) = 0;
51 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) { return NULL; }
  /external/chromium/webkit/glue/media/
web_video_renderer.h 39 // obtain ownership of VideoFrame, it should always relinquish the ownership
44 virtual void GetCurrentFrame(scoped_refptr<media::VideoFrame>* frame_out) {}
45 virtual void PutCurrentFrame(scoped_refptr<media::VideoFrame> frame) {}
video_renderer_impl.cc 54 scoped_refptr<media::VideoFrame> video_frame;
84 scoped_refptr<media::VideoFrame>* frame_out) {
89 scoped_refptr<media::VideoFrame> frame) {
154 void VideoRendererImpl::SlowPaint(media::VideoFrame* video_frame,
163 DCHECK(video_frame->format() == media::VideoFrame::YV12 ||
164 video_frame->format() == media::VideoFrame::YV16);
165 DCHECK(video_frame->stride(media::VideoFrame::kUPlane) ==
166 video_frame->stride(media::VideoFrame::kVPlane));
167 DCHECK(video_frame->planes() == media::VideoFrame::kNumYUVPlanes);
170 (video_frame->format() == media::VideoFrame::YV12)
    [all...]
video_renderer_impl.h 34 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_;
  /external/chromium_org/media/tools/player_x11/
gl_video_renderer.h 15 class VideoFrame;
22 void Paint(media::VideoFrame* video_frame);
x11_video_renderer.h 16 class VideoFrame;
23 void Paint(media::VideoFrame* video_frame);
  /external/chromium_org/cc/resources/
video_resource_updater.cc 46 const scoped_refptr<media::VideoFrame>& video_frame) {
50 if (video_frame->format() == media::VideoFrame::NATIVE_TEXTURE)
57 const scoped_refptr<media::VideoFrame>& video_frame) {
66 case media::VideoFrame::YV12:
67 case media::VideoFrame::YV12A:
68 case media::VideoFrame::YV16:
69 case media::VideoFrame::NATIVE_TEXTURE:
71 case media::VideoFrame::HOLE:
76 case media::VideoFrame::INVALID:
77 case media::VideoFrame::RGB32
    [all...]
  /external/chromium_org/media/cdm/ppapi/
fake_cdm_video_decoder.cc 41 cdm::VideoFrame* decoded_frame) {
74 decoded_frame->SetPlaneOffset(cdm::VideoFrame::kYPlane, y_offset);
75 decoded_frame->SetPlaneOffset(cdm::VideoFrame::kVPlane, v_offset);
76 decoded_frame->SetPlaneOffset(cdm::VideoFrame::kUPlane, u_offset);
77 decoded_frame->SetStride(cdm::VideoFrame::kYPlane, y_stride);
78 decoded_frame->SetStride(cdm::VideoFrame::kVPlane, uv_stride);
79 decoded_frame->SetStride(cdm::VideoFrame::kUPlane, uv_stride);

Completed in 1673 milliseconds

1 2 3 4 5 6 7 8