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

1 2 34 5 6 7 8 91011

  /external/chromium_org/media/cast/test/
linux_output_window.cc 114 const scoped_refptr<media::VideoFrame>& video_frame) {
115 libyuv::I420ToARGB(video_frame->data(VideoFrame::kYPlane),
116 video_frame->stride(VideoFrame::kYPlane),
117 video_frame->data(VideoFrame::kUPlane),
118 video_frame->stride(VideoFrame::kUPlane),
119 video_frame->data(VideoFrame::kVPlane),
120 video_frame->stride(VideoFrame::kVPlane),
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videoframe.cc 28 #include "talk/media/base/videoframe.h"
46 talk_base::StreamResult VideoFrame::Write(talk_base::StreamInterface* stream,
86 bool VideoFrame::CopyToPlanes(
108 void VideoFrame::CopyToFrame(VideoFrame* dst) const {
119 void VideoFrame::StretchToPlanes(
170 size_t VideoFrame::StretchToBuffer(size_t dst_width, size_t dst_height,
192 void VideoFrame::StretchToFrame(VideoFrame* dst,
207 VideoFrame* VideoFrame::Stretch(size_t dst_width, size_t dst_height
    [all...]
mutedvideocapturer.cc 31 #include "talk/media/base/videoframe.h"
49 sigslot::signal1<VideoFrame*> SignalFrame;
56 talk_base::scoped_ptr<VideoFrame> muted_frame_;
131 void MutedVideoCapturer::OnMutedFrame(VideoFrame* muted_frame) {
nullvideoframe.h 31 #include "talk/media/base/videoframe.h"
36 class NullVideoFrame : public VideoFrame {
70 virtual VideoFrame *Copy() const { return NULL; }
85 virtual VideoFrame *CreateEmptyFrame(int w, int h, size_t pixel_width,
fakemediaprocessor.h 53 virtual void OnFrame(uint32 ssrc, VideoFrame* frame_ptr, bool* drop_frame) {
  /external/chromium_org/media/ffmpeg/
ffmpeg_common.cc 41 COMPILE_ASSERT(VideoFrame::kFrameSizePadding >= kFFmpegOutputBufferPaddingSize,
45 VideoFrame::kFrameAddressAlignment >= kFFmpegBufferAddressAlignment &&
46 VideoFrame::kFrameAddressAlignment % kFFmpegBufferAddressAlignment == 0,
397 VideoFrame::Format format = PixelFormatToVideoFormat(stream->codec->pix_fmt);
400 format = VideoFrame::YV12;
412 format = VideoFrame::YV12A;
513 VideoFrame::Format PixelFormatToVideoFormat(PixelFormat pixel_format) {
516 return VideoFrame::YV16;
518 return VideoFrame::YV12;
520 return VideoFrame::YV12J
    [all...]
ffmpeg_common.h 124 VideoFrame::Format PixelFormatToVideoFormat(PixelFormat pixel_format);
127 PixelFormat VideoFormatToPixelFormat(VideoFrame::Format video_format);
  /external/chromium_org/media/base/
video_decoder_config.cc 15 format_(VideoFrame::UNKNOWN),
21 VideoFrame::Format format,
58 VideoFrame::Format format,
80 "Media.VideoPixelFormat", format, VideoFrame::HISTOGRAM_MAX);
97 VideoFrame::IsValidConfig(format_, coded_size_, visible_rect_,
140 VideoFrame::Format VideoDecoderConfig::format() const {
video_util_unittest.cc 42 VideoFrame::CreateFrame(VideoFrame::YV12, size, gfx::Rect(size), size,
64 scoped_refptr<VideoFrame> destination_frame_;
355 scoped_refptr<VideoFrame> frame(
356 VideoFrame::CreateFrame(VideoFrame::YV12, size, gfx::Rect(size), size,
374 EXPECT_EQ(frame->data(VideoFrame::kYPlane)[
375 y * frame->stride(VideoFrame::kYPlane) + x],
377 EXPECT_EQ(frame->data(VideoFrame::kUPlane)[
378 (y / 2) * frame->stride(VideoFrame::kUPlane) + (x / 2)]
    [all...]
decryptor.h 21 class VideoFrame;
126 const scoped_refptr<VideoFrame>&)> VideoDecodeCB;
  /external/chromium_org/media/filters/
fake_video_decoder.cc 62 decode_cb_.RunOrHold(kOk, VideoFrame::CreateEOSFrame());
68 scoped_refptr<VideoFrame> video_frame = VideoFrame::CreateColorFrame(
73 decode_cb_.RunOrHold(kNotEnoughData, scoped_refptr<VideoFrame>());
78 scoped_refptr<VideoFrame> frame = decoded_frames_.front();
188 const scoped_refptr<VideoFrame>& video_frame) {
video_frame_stream.h 45 typedef base::Callback<void(Status, const scoped_refptr<VideoFrame>&)> ReadCB;
58 // Reads a decoded VideoFrame and returns it via the |read_cb|. Note that
79 // a VideoFrame.
102 void SatisfyRead(Status status, const scoped_refptr<VideoFrame>& frame);
117 const scoped_refptr<VideoFrame>& frame);
  /external/chromium/third_party/libjingle/source/talk/session/phone/
mediachannel.h 247 class VideoFrame {
251 VideoFrame() : rendered_(false) {}
253 virtual ~VideoFrame() {}
272 // TODO: Add a fourcc format here and probably combine VideoFrame
280 // in which case both the current and new VideoFrame will share a single
282 virtual VideoFrame *Copy() const = 0;
316 // Writes the frame into the target VideoFrame, stretched to the size of that
320 virtual void StretchToFrame(VideoFrame *target, bool interpolate,
323 // Stretches the frame to the given size, creating a new VideoFrame object to
327 virtual VideoFrame *Stretch(size_t w, size_t h, bool interpolate
    [all...]
  /external/chromium/webkit/glue/
webvideoframe_impl.cc 14 media::VideoFrame* WebVideoFrameImpl::toVideoFrame(
24 scoped_refptr<media::VideoFrame> video_frame)
32 int(media::VideoFrame::chromium_name), \
  /external/chromium_org/content/renderer/media/
rtc_video_renderer.cc 80 const scoped_refptr<media::VideoFrame>& frame) {
104 scoped_refptr<media::VideoFrame> video_frame =
105 media::VideoFrame::CreateBlackFrame(size);
webmediaplayer_ms.h 119 virtual scoped_refptr<media::VideoFrame> GetCurrentFrame() OVERRIDE;
120 virtual void PutCurrentFrame(const scoped_refptr<media::VideoFrame>& frame)
125 void OnFrameAvailable(const scoped_refptr<media::VideoFrame>& frame);
162 // reference but media::VideoFrame is a thread-safe ref-pointer.
163 scoped_refptr<media::VideoFrame> current_frame_;
  /external/chromium_org/media/cast/
cast_sender_impl.h 17 class VideoFrame;
  /external/chromium_org/media/cdm/ppapi/
fake_cdm_video_decoder.h 27 cdm::VideoFrame* decoded_frame) OVERRIDE;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakevideotrackrenderer.h 51 virtual void RenderFrame(const cricket::VideoFrame* frame) {
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
videotrackrenderers.h 51 virtual bool RenderFrame(const cricket::VideoFrame* frame);
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
carbonvideorenderer.h 49 virtual bool RenderFrame(const VideoFrame* frame);
  /external/chromium_org/cc/layers/
video_frame_provider_client_impl.cc 48 scoped_refptr<media::VideoFrame>
58 const scoped_refptr<media::VideoFrame>& frame) {
video_layer_impl.h 16 class VideoFrame;
54 scoped_refptr<media::VideoFrame> frame_;
  /external/chromium_org/content/common/gpu/media/
gpu_video_encode_accelerator.h 60 void OnInitialize(media::VideoFrame::Format input_format,
88 media::VideoFrame::Format input_format_;
  /external/chromium_org/content/test/
test_video_frame_provider.cc 66 scoped_refptr<media::VideoFrame> video_frame =
67 media::VideoFrame::CreateColorFrame(

Completed in 675 milliseconds

1 2 34 5 6 7 8 91011