Home | History | Annotate | Download | only in filters

Lines Matching refs:video_frame

5 #include "media/base/video_frame.h"
56 // Paints the |video_frame| to the |canvas| using |renderer_|, setting the
57 // color of |video_frame| to |color| first.
58 void Paint(VideoFrame* video_frame, SkCanvas* canvas, Color color);
194 void SkCanvasVideoRendererTest::Paint(VideoFrame* video_frame,
201 media::FillYUV(video_frame, 76, 84, 255);
204 media::FillYUV(video_frame, 149, 43, 21);
207 media::FillYUV(video_frame, 29, 255, 107);
210 renderer_.Paint(video_frame, canvas, kNaturalRect, 0xFF);
270 VideoFrame* video_frame = natural_frame();
271 video_frame->SetTimestamp(media::kNoTimestamp());
272 Paint(video_frame, fast_path_canvas(), kRed);
277 VideoFrame* video_frame = natural_frame();
278 video_frame->SetTimestamp(media::kNoTimestamp());
279 Paint(video_frame, slow_path_canvas(), kRed);