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

12 3 4 5 6 7 8 91011

  /external/chromium_org/cc/resources/
video_resource_updater.cc 49 const scoped_refptr<media::VideoFrame>& video_frame) {
53 if (video_frame->format() == media::VideoFrame::NATIVE_TEXTURE)
60 const scoped_refptr<media::VideoFrame>& video_frame) {
69 case media::VideoFrame::YV12:
70 case media::VideoFrame::YV12A:
71 case media::VideoFrame::YV16:
72 case media::VideoFrame::YV12J:
73 case media::VideoFrame::NATIVE_TEXTURE:
75 case media::VideoFrame::HOLE:
80 case media::VideoFrame::UNKNOWN
    [all...]
video_resource_updater.h 22 class VideoFrame;
73 const scoped_refptr<media::VideoFrame>& video_frame);
93 bool VerifyFrame(const scoped_refptr<media::VideoFrame>& video_frame);
95 const scoped_refptr<media::VideoFrame>& video_frame);
97 const scoped_refptr<media::VideoFrame>& video_frame);
video_resource_updater_unittest.cc 32 scoped_refptr<media::VideoFrame> CreateTestYUVVideoFrame() {
39 return media::VideoFrame::WrapExternalYuvData(
40 media::VideoFrame::YV16, // format
63 scoped_refptr<media::VideoFrame> video_frame = CreateTestYUVVideoFrame();
73 scoped_refptr<media::VideoFrame> video_frame = CreateTestYUVVideoFrame();
  /external/chromium/webkit/glue/media/
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/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);
cdm_video_decoder.h 33 cdm::VideoFrame* decoded_frame) = 0;
  /external/chromium_org/media/base/
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...]
video_decoder.h 18 class VideoFrame;
59 const scoped_refptr<VideoFrame>&)> DecodeCB;
85 // a VideoFrame. Most implementations can allocate a new VideoFrame and hence
video_frame.h 20 class MEDIA_EXPORT VideoFrame : public base::RefCountedThreadSafe<VideoFrame> {
93 static scoped_refptr<VideoFrame> CreateFrame(
111 // Wraps a native texture of the given parameters with a VideoFrame. When the
121 static scoped_refptr<VideoFrame> WrapNativeTexture(
136 // Wraps packed image data residing in a memory buffer with a VideoFrame.
142 static scoped_refptr<VideoFrame> WrapExternalPackedMemory(
153 // Wraps external YUV data of the given parameters with a VideoFrame.
154 // The returned VideoFrame does not own the data passed in. When the frame
158 static scoped_refptr<VideoFrame> WrapExternalYuvData
    [all...]
  /external/chromium_org/cc/layers/
video_frame_provider_client_impl.h 13 namespace media { class VideoFrame; }
32 scoped_refptr<media::VideoFrame> AcquireLockAndCurrentFrame();
33 void PutCurrentFrame(const scoped_refptr<media::VideoFrame>& frame);
  /external/chromium_org/media/video/
video_encode_accelerator.h 20 class VideoFrame;
65 // by VideoFrame::coded_size()) to encode, in pixels. The encoder may have
68 // input VideoFrame to Encode() should be padded appropriately.
100 // reported by VideoFrame::format() for frames passed to Encode()).
102 // reported by VideoFrame::visible_rect().size() for frames passed to
108 virtual void Initialize(media::VideoFrame::Format input_format,
115 // |frame| is the VideoFrame that is to be encoded.
117 virtual void Encode(const scoped_refptr<VideoFrame>& frame,
  /external/chromium_org/content/common/gpu/media/
android_video_encode_accelerator.cc 25 using media::VideoFrame;
116 VideoFrame::Format format,
129 format == VideoFrame::I420 &&
193 const scoped_refptr<VideoFrame>& frame,
197 RETURN_ON_FAILURE(frame->format() == VideoFrame::I420,
203 RETURN_ON_FAILURE(frame->row_bytes(VideoFrame::kYPlane) ==
204 frame->stride(VideoFrame::kYPlane) &&
205 frame->row_bytes(VideoFrame::kUPlane) ==
206 frame->stride(VideoFrame::kUPlane) &&
207 frame->row_bytes(VideoFrame::kVPlane) =
    [all...]
  /external/chromium_org/media/cast/video_receiver/codecs/vp8/
vp8_decoder.cc 76 DCHECK(VideoFrame::IsValidConfig(VideoFrame::I420, visible_size,
79 scoped_refptr<VideoFrame> decoded_frame =
80 VideoFrame::CreateFrame(VideoFrame::I420, visible_size,
85 CopyPlane(VideoFrame::kYPlane, img->planes[VPX_PLANE_Y],
87 CopyPlane(VideoFrame::kUPlane, img->planes[VPX_PLANE_U],
89 CopyPlane(VideoFrame::kVPlane, img->planes[VPX_PLANE_V],
  /external/chromium_org/media/video/capture/
video_capture.h 18 class VideoFrame;
46 const scoped_refptr<media::VideoFrame>& frame) = 0;
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videoframe.h 45 class VideoFrame {
47 VideoFrame() {}
48 virtual ~VideoFrame() {}
100 // Both the current and new VideoFrame will share a single reference-counted
102 virtual VideoFrame *Copy() const = 0;
104 // Since VideoFrame supports shallow copy and the internal frame buffer might
105 // be shared, in case VideoFrame needs exclusive access of the frame buffer,
125 // Writes the frame into the target VideoFrame.
126 virtual void CopyToFrame(VideoFrame* target) const;
160 // Writes the frame into the target VideoFrame, stretched to the size of tha
    [all...]
  /external/chromium_org/cc/test/
fake_video_frame_provider.cc 21 scoped_refptr<media::VideoFrame> FakeVideoFrameProvider::GetCurrentFrame() {
  /external/chromium_org/content/common/gpu/client/
gpu_video_encode_accelerator_host.h 24 class VideoFrame;
56 virtual void Initialize(media::VideoFrame::Format format,
60 virtual void Encode(const scoped_refptr<media::VideoFrame>& frame,
100 typedef base::hash_map<int32, scoped_refptr<media::VideoFrame> > FrameMap;
  /external/chromium_org/media/cast/video_receiver/
video_decoder.h 17 class VideoFrame;
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
gdivideorenderer.h 47 virtual bool RenderFrame(const VideoFrame* frame);
  /external/chromium_org/media/cast/test/
encode_decode_test.cc 38 original_frame_ = media::VideoFrame::CreateFrame(
39 VideoFrame::I420, size, gfx::Rect(size), size, base::TimeDelta());
46 void DecodeComplete(const scoped_refptr<media::VideoFrame>& decoded_frame,
69 scoped_refptr<media::VideoFrame> original_frame_;
104 video_frame_ = media::VideoFrame::CreateFrame(VideoFrame::I420,
113 scoped_refptr<media::VideoFrame> video_frame_;
  /external/chromium_org/content/renderer/media/
video_source_handler_unittest.cc 20 using cricket::VideoFrame;
30 virtual bool GotFrame(VideoFrame* frame) OVERRIDE {
35 const VideoFrame* last_frame() {
40 scoped_ptr<VideoFrame> last_frame_;
73 const VideoFrame* frame = reader.last_frame();
  /frameworks/av/include/private/media/
VideoFrame.h 88 class VideoFrame
91 VideoFrame(): mWidth(0), mHeight(0), mDisplayWidth(0), mDisplayHeight(0), mSize(0), mData(0),
94 VideoFrame(const VideoFrame& copy) {
112 ~VideoFrame() {
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_buffer_pool_unittest.cc 49 media::VideoFrame::AllocationSize(media::VideoFrame::I420, dimensions);
74 scoped_refptr<media::VideoFrame> non_pool_frame =
75 media::VideoFrame::CreateFrame(media::VideoFrame::YV12, size_lo,
84 ASSERT_LE(media::VideoFrame::AllocationSize(media::VideoFrame::I420, size_lo),
88 ASSERT_LE(media::VideoFrame::AllocationSize(media::VideoFrame::I420, size_lo),
92 ASSERT_LE(media::VideoFrame::AllocationSize(media::VideoFrame::I420, size_lo)
    [all...]
  /external/chromium_org/media/filters/
ffmpeg_video_decoder.cc 71 VideoFrame::Format format = PixelFormatToVideoFormat(codec_context->pix_fmt);
72 if (format == VideoFrame::UNKNOWN)
74 DCHECK(format == VideoFrame::YV12 || format == VideoFrame::YV16 ||
75 format == VideoFrame::YV12J);
91 if (!VideoFrame::IsValidConfig(format, size, gfx::Rect(size), natural_size))
94 scoped_refptr<VideoFrame> video_frame =
105 video_frame.swap(reinterpret_cast<VideoFrame**>(&frame->opaque));
120 scoped_refptr<VideoFrame> video_frame;
121 video_frame.swap(reinterpret_cast<VideoFrame**>(&frame->opaque))
    [all...]

Completed in 287 milliseconds

12 3 4 5 6 7 8 91011