Searched refs:video_frame (Results 26 - 50 of 83) sorted by relevance

1234

/external/chromium_org/media/cast/
H A Dcast_sender.h33 // 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,
H A Dcast_sender_impl.cc10 #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));
H A Dcast_receiver.h36 typedef base::Callback<void(const scoped_refptr<media::VideoFrame>& video_frame,
/external/chromium_org/media/cast/video_sender/
H A Dvideo_encoder.h37 // The video_frame must be valid until the closure callback is called.
42 bool EncodeVideoFrame(const scoped_refptr<media::VideoFrame>& video_frame,
55 const scoped_refptr<media::VideoFrame>& video_frame,
H A Dvideo_sender.cc131 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, argument
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
130 InsertRawVideoFrame( const scoped_refptr<media::VideoFrame>& video_frame, const base::TimeTicks& capture_time) argument
155 SendEncodedVideoFrameMainThread( scoped_ptr<EncodedVideoFrame> video_frame, const base::TimeTicks& capture_time) argument
[all...]
/external/chromium_org/media/filters/
H A Dvpx_video_decoder.h13 #include "media/base/video_frame.h"
61 scoped_refptr<VideoFrame>* video_frame);
68 scoped_refptr<VideoFrame>* video_frame);
H A Dfake_video_decoder.cc68 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);
184 OnFrameDecoded( int buffer_size, const DecodeCB& decode_cb, Status status, const scoped_refptr<VideoFrame>& video_frame) argument
/external/chromium_org/media/cast/net/rtp_sender/rtp_packetizer/
H A Drtp_packetizer.cc37 const EncodedVideoFrame* video_frame,
46 Cast(video_frame->key_frame,
47 video_frame->frame_id,
48 video_frame->last_referenced_frame_id,
50 video_frame->data);
36 IncomingEncodedVideoFrame( const EncodedVideoFrame* video_frame, const base::TimeTicks& capture_time) argument
H A Drtp_packetizer.h31 // The video_frame objects ownership is handled by the main cast thread.
32 void IncomingEncodedVideoFrame(const EncodedVideoFrame* video_frame,
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_adapter.cc492 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
714 DeliverFrame( int32_t result, const cdm::Status& status, const LinkedVideoFrame& video_frame, const PP_DecryptTrackingInfo& tracking_info) argument
794 IsValidVideoFrame(const LinkedVideoFrame& video_frame) argument
[all...]
/external/chromium_org/content/renderer/media/webrtc/
H A Dwebrtc_video_sink_adapter.h46 void DoRenderFrameOnMainThread(scoped_refptr<media::VideoFrame> video_frame);
/external/chromium_org/media/cast/framer/
H A Dframe_buffer.h31 bool GetEncodedVideoFrame(EncodedVideoFrame* video_frame,
H A Dframer.h45 bool GetEncodedVideoFrame(EncodedVideoFrame* video_frame,
H A Dframer.cc79 bool Framer::GetEncodedVideoFrame(EncodedVideoFrame* video_frame, argument
101 return it->second->GetEncodedVideoFrame(video_frame, rtp_timestamp);
/external/chromium_org/media/cast/net/rtp_sender/
H A Drtp_sender.h41 // The video_frame objects ownership is handled by the main cast thread.
42 void IncomingEncodedVideoFrame(const EncodedVideoFrame* video_frame,
/external/chromium_org/media/cast/test/
H A Dlinux_output_window.h37 void RenderFrame(const scoped_refptr<media::VideoFrame>& video_frame);
H A Dsender.cc13 #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) { argument
278 frame_input_->InsertRawVideoFrame(video_frame, send_time_);
/external/chromium_org/media/cast/video_receiver/
H A Dvideo_receiver_unittest.cc33 void DecodeComplete(const scoped_refptr<media::VideoFrame>& video_frame, argument
38 void FrameToDecode(scoped_ptr<EncodedVideoFrame> video_frame, argument
40 EXPECT_TRUE(video_frame->key_frame);
41 EXPECT_EQ(kVp8, video_frame->codec);
/external/chromium_org/ppapi/examples/video_effects/
H A Dvideo_effects.cc58 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);
132 GetFrameDone(int32_t result, pp::VideoFrame_Private video_frame) argument
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dcapturerenderadapter.h77 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* video_frame);
/external/chromium/webkit/glue/
H A Dwebvideoframe_impl.cc7 #include "media/base/video_frame.h"
24 scoped_refptr<media::VideoFrame> video_frame)
25 : video_frame_(video_frame) {
23 WebVideoFrameImpl( scoped_refptr<media::VideoFrame> video_frame) argument
/external/chromium_org/content/renderer/media/
H A Drtc_video_renderer.cc9 #include "media/base/video_frame.h"
104 scoped_refptr<media::VideoFrame> video_frame = local
106 OnVideoFrame(video_frame);
/external/chromium_org/ppapi/tests/
H A Dtest_video_destination.cc119 pp::VideoFrame_Private video_frame(image_data,
121 ASSERT_EQ(PP_OK, video_destination.PutFrame(video_frame));
H A Dtest_video_source.cc114 const pp::VideoFrame_Private video_frame = cc2.output(); local
115 ASSERT_FALSE(video_frame.image_data().is_null());
/external/chromium_org/media/cast/video_sender/codecs/vp8/
H A Dvp8_encoder.cc12 #include "media/base/video_frame.h"
124 bool Vp8Encoder::Encode(const scoped_refptr<media::VideoFrame>& video_frame, argument
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);

Completed in 335 milliseconds

1234