/external/chromium_org/cc/test/ |
fake_video_frame_provider.h | 9 #include "media/base/video_frame.h"
|
/external/chromium_org/content/renderer/media/ |
native_handle_impl.h | 9 #include "media/base/video_frame.h"
|
/external/chromium_org/media/cast/ |
cast_sender.h | 33 // The video_frame must be valid until the callback is called. 38 const scoped_refptr<media::VideoFrame>& video_frame, 41 // The video_frame must be valid until the callback is called. 45 virtual void InsertCodedVideoFrame(const EncodedVideoFrame* video_frame,
|
cast_sender_impl.cc | 10 #include "media/base/video_frame.h" 28 const scoped_refptr<media::VideoFrame>& video_frame, 32 video_frame, capture_time)); 35 virtual void InsertCodedVideoFrame(const EncodedVideoFrame* video_frame, 40 video_frame, capture_time, callback));
|
/external/chromium_org/media/cast/framer/ |
frame_buffer.h | 31 bool GetEncodedVideoFrame(EncodedVideoFrame* video_frame,
|
framer.cc | 79 bool Framer::GetEncodedVideoFrame(EncodedVideoFrame* video_frame, 101 return it->second->GetEncodedVideoFrame(video_frame, rtp_timestamp);
|
/external/chromium_org/media/cast/test/ |
linux_output_window.h | 37 void RenderFrame(const scoped_refptr<media::VideoFrame>& video_frame);
|
video_utility.h | 7 #include "media/base/video_frame.h"
|
sender.cc | 13 #include "media/base/video_frame.h" 245 scoped_refptr<media::VideoFrame> video_frame = local 249 if (!PopulateVideoFrameFromFile(video_frame, video_file_)) 252 PopulateVideoFrame(video_frame, synthetic_count_); 267 video_frame), 272 video_frame)); 276 void SendVideoFrameOnTime(scoped_refptr<media::VideoFrame> video_frame) { 278 frame_input_->InsertRawVideoFrame(video_frame, send_time_);
|
/external/chromium_org/media/cast/video_receiver/ |
video_receiver_unittest.cc | 33 void DecodeComplete(const scoped_refptr<media::VideoFrame>& video_frame, 38 void FrameToDecode(scoped_ptr<EncodedVideoFrame> video_frame, 40 EXPECT_TRUE(video_frame->key_frame); 41 EXPECT_EQ(kVp8, video_frame->codec);
|
/external/chromium_org/media/filters/ |
fake_video_decoder.cc | 68 scoped_refptr<VideoFrame> video_frame = VideoFrame::CreateColorFrame( local 70 decoded_frames_.push_back(video_frame); 188 const scoped_refptr<VideoFrame>& video_frame) { 191 decode_cb.Run(status, video_frame);
|
fake_video_decoder.h | 19 #include "media/base/video_frame.h" 69 const scoped_refptr<VideoFrame>& video_frame);
|
skcanvas_video_renderer_unittest.cc | 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() local 277 VideoFrame* video_frame = natural_frame(); local [all...] |
/external/chromium_org/media/tools/player_x11/ |
gl_video_renderer.h | 22 void Paint(media::VideoFrame* video_frame);
|
x11_video_renderer.h | 23 void Paint(media::VideoFrame* video_frame);
|
/external/chromium_org/media/cast/video_sender/ |
video_sender.cc | 131 const scoped_refptr<media::VideoFrame>& video_frame, 138 if (!video_encoder_->EncodeVideoFrame(video_frame, capture_time, 156 scoped_ptr<EncodedVideoFrame> video_frame, 158 SendEncodedVideoFrame(video_frame.get(), capture_time); 161 bool VideoSender::EncryptVideoFrame(const EncodedVideoFrame& video_frame, 165 if (!encryptor_->SetCounter(GetAesNonce(video_frame.frame_id, iv_mask_))) { 170 if (!encryptor_->Encrypt(video_frame.data, &encrypted_frame->data)) { 174 encrypted_frame->codec = video_frame.codec; 175 encrypted_frame->key_frame = video_frame.key_frame; 176 encrypted_frame->frame_id = video_frame.frame_id [all...] |
/external/chromium_org/media/cast/net/rtp_sender/rtp_packetizer/ |
rtp_packetizer.h | 31 // The video_frame objects ownership is handled by the main cast thread. 32 void IncomingEncodedVideoFrame(const EncodedVideoFrame* video_frame,
|
/external/chromium_org/media/cast/net/rtp_sender/ |
rtp_sender.h | 41 // The video_frame objects ownership is handled by the main cast thread. 42 void IncomingEncodedVideoFrame(const EncodedVideoFrame* video_frame,
|
/external/chromium_org/media/cdm/ppapi/ |
cdm_adapter.cc | 492 LinkedVideoFrame video_frame(new VideoFrameImpl()); 494 status = cdm_->DecryptAndDecodeFrame(input_buffer, video_frame.get()); 498 video_frame, 717 const LinkedVideoFrame& video_frame, 728 if (!IsValidVideoFrame(video_frame)) { 733 static_cast<PpbBuffer*>(video_frame->FrameBuffer()); 737 decrypted_frame_info.tracking_info.timestamp = video_frame->Timestamp(); 740 CdmVideoFormatToPpDecryptedFrameFormat(video_frame->Format()); 741 decrypted_frame_info.width = video_frame->Size().width; 742 decrypted_frame_info.height = video_frame->Size().height [all...] |
/external/chromium_org/media/cast/video_sender/codecs/vp8/ |
vp8_encoder.cc | 12 #include "media/base/video_frame.h" 124 bool Vp8Encoder::Encode(const scoped_refptr<media::VideoFrame>& video_frame, 129 const_cast<uint8*>(video_frame->data(VideoFrame::kYPlane)); 131 const_cast<uint8*>(video_frame->data(VideoFrame::kUPlane)); 133 const_cast<uint8*>(video_frame->data(VideoFrame::kVPlane)); 135 raw_image_->stride[VPX_PLANE_Y] = video_frame->stride(VideoFrame::kYPlane); 136 raw_image_->stride[VPX_PLANE_U] = video_frame->stride(VideoFrame::kUPlane); 137 raw_image_->stride[VPX_PLANE_V] = video_frame->stride(VideoFrame::kVPlane);
|
/external/chromium_org/ppapi/tests/ |
test_video_destination.cc | 119 pp::VideoFrame_Private video_frame(image_data, 121 ASSERT_EQ(PP_OK, video_destination.PutFrame(video_frame));
|
test_video_source.cc | 114 const pp::VideoFrame_Private video_frame = cc2.output(); local 115 ASSERT_FALSE(video_frame.image_data().is_null());
|
/external/chromium_org/media/base/ |
video_frame_pool.h | 9 #include "media/base/video_frame.h"
|
/external/chromium_org/ppapi/examples/video_effects/ |
video_effects.cc | 58 void GetFrameDone(int32_t result, pp::VideoFrame_Private video_frame); 133 pp::VideoFrame_Private video_frame) { 141 pp::ImageData image_data = video_frame.image_data(); 155 video_destination_.PutFrame(video_frame);
|
/external/chromium/webkit/glue/media/ |
video_renderer_impl.h | 53 void SlowPaint(media::VideoFrame* video_frame, 60 void FastPaint(media::VideoFrame* video_frame,
|