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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/media/cast/test/
video_utility.h 13 double I420PSNR(const scoped_refptr<media::VideoFrame>& frame1,
14 const scoped_refptr<media::VideoFrame>& frame2);
19 void PopulateVideoFrame(VideoFrame* frame, int start_value);
23 bool PopulateVideoFrameFromFile(VideoFrame* frame, FILE* video_file);
video_utility.cc 15 double I420PSNR(const scoped_refptr<media::VideoFrame>& frame1,
16 const scoped_refptr<media::VideoFrame>& frame2) {
21 frame1->data(VideoFrame::kYPlane), frame1->stride(VideoFrame::kYPlane),
22 frame1->data(VideoFrame::kUPlane), frame1->stride(VideoFrame::kUPlane),
23 frame1->data(VideoFrame::kVPlane), frame1->stride(VideoFrame::kVPlane),
24 frame2->data(VideoFrame::kYPlane), frame2->stride(VideoFrame::kYPlane)
    [all...]
  /external/chromium_org/media/base/
video_frame_pool_unittest.cc 14 scoped_refptr<VideoFrame> CreateFrame(VideoFrame::Format format,
33 scoped_refptr<VideoFrame> frame = CreateFrame(VideoFrame::YV12, 10);
34 const uint8* old_y_data = frame->data(VideoFrame::kYPlane);
40 scoped_refptr<VideoFrame> new_frame = CreateFrame(VideoFrame::YV12, 10);
41 EXPECT_EQ(old_y_data, new_frame->data(VideoFrame::kYPlane));
45 scoped_refptr<VideoFrame> frame_a = CreateFrame(VideoFrame::YV12, 10)
    [all...]
video_frame.cc 21 scoped_refptr<VideoFrame> VideoFrame::CreateFrame(
22 VideoFrame::Format format,
28 scoped_refptr<VideoFrame> frame(new VideoFrame(
31 case VideoFrame::YV12:
32 case VideoFrame::YV12A:
33 case VideoFrame::YV16:
34 case VideoFrame::I420:
35 case VideoFrame::YV12J
    [all...]
video_frame_unittest.cc 24 void InitializeYV12Frame(VideoFrame* frame, double white_to_black) {
25 EXPECT_EQ(VideoFrame::YV12, frame->format());
28 uint8* y_plane = frame->data(VideoFrame::kYPlane);
31 memset(y_plane, color, frame->stride(VideoFrame::kYPlane));
32 y_plane += frame->stride(VideoFrame::kYPlane);
34 uint8* u_plane = frame->data(VideoFrame::kUPlane);
35 uint8* v_plane = frame->data(VideoFrame::kVPlane);
37 memset(u_plane, 0x80, frame->stride(VideoFrame::kUPlane));
38 memset(v_plane, 0x80, frame->stride(VideoFrame::kVPlane));
39 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_frame_pool.cc 23 scoped_refptr<VideoFrame> CreateFrame(VideoFrame::Format format,
43 void FrameReleased(const scoped_refptr<VideoFrame>& frame);
47 std::list<scoped_refptr<VideoFrame> > frames_;
58 scoped_refptr<VideoFrame> VideoFramePool::PoolImpl::CreateFrame(
59 VideoFrame::Format format,
67 scoped_refptr<VideoFrame> frame;
70 scoped_refptr<VideoFrame> pool_frame = frames_.front();
84 frame = VideoFrame::CreateFrame(
88 return VideoFrame::WrapVideoFrame
    [all...]
video_frame_pool.h 13 // Simple VideoFrame pool used to avoid unnecessarily allocating and destroying
14 // VideoFrame objects. The pool manages the memory for the VideoFrame
29 scoped_refptr<VideoFrame> CreateFrame(VideoFrame::Format format,
  /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/filters/
skcanvas_video_renderer.cc 15 static bool IsEitherYV12OrYV16(media::VideoFrame::Format format) {
16 return format == media::VideoFrame::YV12 ||
17 format == media::VideoFrame::YV16 ||
18 format == media::VideoFrame::YV12J;
21 static bool IsEitherYV12OrYV16OrNative(media::VideoFrame::Format format) {
23 format == media::VideoFrame::NATIVE_TEXTURE;
26 static bool IsEitherYV12OrYV12AOrYV16(media::VideoFrame::Format format) {
28 format == media::VideoFrame::YV12A;
32 media::VideoFrame::Format format) {
34 format == media::VideoFrame::YV12A
    [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/public/renderer/
media_stream_video_sink.h 14 class VideoFrame;
38 virtual void OnVideoFrame(const scoped_refptr<media::VideoFrame>& frame) = 0;
  /external/chromium_org/content/renderer/media/
native_handle_impl.h 17 explicit NativeHandleImpl(scoped_refptr<media::VideoFrame> frame);
25 scoped_refptr<media::VideoFrame> frame_;
video_frame_provider.h 13 class VideoFrame;
24 typedef base::Callback<void(const scoped_refptr<media::VideoFrame>&)>
native_handle_impl.cc 9 NativeHandleImpl::NativeHandleImpl(scoped_refptr<media::VideoFrame> frame)
  /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) {}
  /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);

Completed in 2649 milliseconds

1 2 3 4 5 6 7 8 91011