/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtctexturevideoframe_unittest.cc | 63 cricket::VideoFrame* frame2 = frame1.Copy(); 78 cricket::VideoFrame* frame2 = frame1->Copy();
|
webrtcvideoframe.cc | 61 webrtc::VideoFrame* frame(); 62 const webrtc::VideoFrame* frame() const; 66 webrtc::VideoFrame video_frame_; 106 webrtc::VideoFrame* WebRtcVideoFrame::FrameBuffer::frame() { 110 const webrtc::VideoFrame* WebRtcVideoFrame::FrameBuffer::frame() const { 221 VideoFrame* WebRtcVideoFrame::Copy() const { 322 webrtc::VideoFrame* WebRtcVideoFrame::frame() { 326 const webrtc::VideoFrame* WebRtcVideoFrame::frame() const { 387 VideoFrame* WebRtcVideoFrame::CreateEmptyFrame( 399 size_t buffer_size = VideoFrame::SizeOf(w, h) [all...] |
/external/chromium_org/media/cast/video_sender/ |
video_sender_unittest.cc | 90 scoped_refptr<media::VideoFrame> GetNewVideoFrame() { 92 scoped_refptr<media::VideoFrame> video_frame = 93 media::VideoFrame::CreateFrame(VideoFrame::I420, size, gfx::Rect(size), 111 scoped_refptr<media::VideoFrame> video_frame = GetNewVideoFrame(); 170 scoped_refptr<media::VideoFrame> video_frame = GetNewVideoFrame();
|
video_encoder.cc | 43 const scoped_refptr<media::VideoFrame>& video_frame, 67 const scoped_refptr<media::VideoFrame>& video_frame,
|
/external/chromium_org/media/video/capture/ |
fake_video_capture_device.cc | 140 VideoFrame::AllocationSize(VideoFrame::I420, capture_format_.frame_size); 159 VideoFrame::AllocationSize(VideoFrame::I420, capture_format_.frame_size); 243 VideoFrame::AllocationSize(VideoFrame::I420, capture_format_.frame_size);
|
video_capture_device.h | 151 media::VideoFrame::Format format, 177 media::VideoFrame::Format format,
|
video_capture_proxy.cc | 81 const scoped_refptr<VideoFrame>& frame) { 130 const scoped_refptr<VideoFrame>& frame) {
|
/external/chromium_org/third_party/libjingle/source/talk/media/devices/ |
gdivideorenderer.cc | 36 #include "talk/media/base/videoframe.h" 56 // better to pass RGB bytes to VideoWindow. However, we pass VideoFrame to put 58 bool RenderFrame(const VideoFrame* frame); 98 void OnRenderFrame(const VideoFrame* frame); 147 bool GdiVideoRenderer::VideoWindow::RenderFrame(const VideoFrame* frame) { 176 OnRenderFrame(reinterpret_cast<const VideoFrame*>(wParam)); 235 void GdiVideoRenderer::VideoWindow::OnRenderFrame(const VideoFrame* frame) { 262 bool GdiVideoRenderer::RenderFrame(const VideoFrame* frame) {
|
/frameworks/av/media/libmediaplayerservice/ |
MetadataRetrieverClient.cpp | 36 #include <private/media/VideoFrame.h> 187 VideoFrame *frame = mRetriever->getFrameAtTime(timeUs, option); 192 size_t size = sizeof(VideoFrame) + frame->mSize; 201 ALOGE("not enough memory for VideoFrame size=%u", size); 205 VideoFrame *frameCopy = static_cast<VideoFrame *>(mThumbnail->pointer()); 213 frameCopy->mData = (uint8_t *)frameCopy + sizeof(VideoFrame);
|
/external/chromium_org/content/browser/renderer_host/media/ |
video_capture_controller_unittest.cc | 261 device_->ReserveOutputBuffer(media::VideoFrame::I420, capture_resolution); 280 media::VideoFrame::I420, 294 device_->ReserveOutputBuffer(media::VideoFrame::I420, capture_resolution); 298 media::VideoFrame::I420, 322 buffer = device_->ReserveOutputBuffer(media::VideoFrame::I420, 327 media::VideoFrame::I420, 334 ASSERT_FALSE(device_->ReserveOutputBuffer(media::VideoFrame::I420, 361 device_->ReserveOutputBuffer(media::VideoFrame::I420, capture_resolution); 365 media::VideoFrame::I420, 371 device_->ReserveOutputBuffer(media::VideoFrame::I420, capture_resolution) [all...] |
video_capture_device_impl.cc | 66 scoped_refptr<media::VideoFrame>* storage, 74 client_->ReserveOutputBuffer(media::VideoFrame::I420, capture_size_); 119 *storage = media::VideoFrame::WrapExternalPackedMemory( 120 media::VideoFrame::I420, 182 media::VideoFrame::I420,
|
web_contents_video_capture_device.cc | 122 scoped_refptr<media::VideoFrame>* storage, 150 const scoped_refptr<media::VideoFrame>&, 183 // Render the SkBitmap |input| into the given VideoFrame buffer |output|, then 193 const scoped_refptr<media::VideoFrame>& output, 223 const scoped_refptr<media::VideoFrame>& target, 265 const scoped_refptr<media::VideoFrame>& target, 287 // A dedicated worker thread on which SkBitmap->VideoFrame conversion will 330 scoped_refptr<media::VideoFrame>* storage, 414 scoped_refptr<media::VideoFrame> frame; 432 scoped_refptr<media::VideoFrame> frame [all...] |
desktop_capture_device_aura_unittest.cc | 33 scoped_refptr<Buffer>(media::VideoFrame::Format format, 44 media::VideoFrame::Format format,
|
/external/chromium_org/media/cast/video_sender/codecs/vp8/ |
vp8_encoder.cc | 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/content/renderer/pepper/ |
pepper_video_capture_host.cc | 136 const scoped_refptr<media::VideoFrame>& frame) { 146 DCHECK_EQ(frame->format(), media::VideoFrame::I420); 148 media::VideoFrame::AllocationSize(frame->format(), 154 COMPILE_ASSERT(media::VideoFrame::kYPlane == 0, y_plane_should_be_0); 155 COMPILE_ASSERT(media::VideoFrame::kUPlane == 1, u_plane_should_be_1); 156 COMPILE_ASSERT(media::VideoFrame::kVPlane == 2, v_plane_should_be_2); 157 for (size_t j = 0; j < media::VideoFrame::NumPlanes(frame->format()); 186 const size_t size = media::VideoFrame::AllocationSize( 187 media::VideoFrame::I420, gfx::Size(info.width, info.height));
|
/external/chromium_org/content/browser/renderer_host/ |
compositing_iosurface_mac.h | 86 // VideoFrame, and invoke a callback to indicate success or failure. 89 const scoped_refptr<media::VideoFrame>& target, 254 const scoped_refptr<media::VideoFrame>& target, 265 const scoped_refptr<media::VideoFrame>& video_frame_output, 274 const scoped_refptr<media::VideoFrame>& video_frame_output); 279 const scoped_refptr<media::VideoFrame>& video_frame_output);
|
render_widget_host_view_browsertest.cc | 320 scoped_refptr<media::VideoFrame>* storage, 329 *storage = media::VideoFrame::CreateBlackFrame(gfx::Size(100, 100)); 401 scoped_refptr<media::VideoFrame> dest = 402 media::VideoFrame::CreateBlackFrame(frame_size()); 461 scoped_refptr<media::VideoFrame> first_output = 462 media::VideoFrame::CreateBlackFrame(frame_size()); 464 scoped_refptr<media::VideoFrame> second_output = 465 media::VideoFrame::CreateBlackFrame(frame_size()); 556 scoped_refptr<media::VideoFrame> video_frame, 685 scoped_refptr<media::VideoFrame> video_frame [all...] |
/external/chromium_org/media/tools/player_x11/ |
gl_video_renderer.cc | 114 void GlVideoRenderer::Paint(media::VideoFrame* video_frame) { 119 DCHECK(video_frame->format() == media::VideoFrame::YV12 || 120 video_frame->format() == media::VideoFrame::YV16); 121 DCHECK(video_frame->stride(media::VideoFrame::kUPlane) == 122 video_frame->stride(media::VideoFrame::kVPlane));
|
/external/chromium_org/content/renderer/media/ |
video_source_handler.cc | 15 #include "third_party/libjingle/source/talk/media/base/videoframe.h" 18 using cricket::VideoFrame; 36 virtual bool RenderFrame(const cricket::VideoFrame* frame) OVERRIDE {
|
/external/chromium_org/media/filters/ |
pipeline_integration_test_base.h | 110 VideoFrame::Format last_video_frame_format_; 131 void OnVideoRendererPaint(const scoped_refptr<VideoFrame>& frame);
|
video_renderer_impl_unittest.cc | 181 // Queues a VideoFrame with |next_frame_timestamp_|. 188 scoped_refptr<VideoFrame> frame = VideoFrame::CreateFrame( 189 VideoFrame::YV12, natural_size, gfx::Rect(natural_size), natural_size, 200 VideoDecoder::kOk, VideoFrame::CreateEOSFrame())); 205 scoped_refptr<VideoFrame> null_frame; 212 scoped_refptr<VideoFrame> null_frame; 236 scoped_refptr<VideoFrame> GetCurrentFrame() { 242 scoped_refptr<VideoFrame> frame = GetCurrentFrame(); 311 void OnPaint(const scoped_refptr<VideoFrame>& frame) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
remotevideocapturer_unittest.cc | 38 using cricket::VideoFrame; 80 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* frame) {
|
/external/chromium_org/content/renderer/media/android/ |
webmediaplayer_android.cc | 56 using media::VideoFrame; 147 current_frame_ = VideoFrame::CreateBlackFrame(gfx::Size(1, 1)); [all...] |
/external/chromium_org/content/common/gpu/client/ |
gpu_video_encode_accelerator_host.cc | 73 media::VideoFrame::Format input_format, 85 const scoped_refptr<media::VideoFrame>& frame, 104 const size_t plane_count = media::VideoFrame::NumPlanes(frame->format()); 185 scoped_refptr<media::VideoFrame> frame = frame_map_[frame_id];
|
/external/chromium_org/content/common/gpu/media/ |
gpu_video_encode_accelerator.cc | 31 input_format_(media::VideoFrame::UNKNOWN), 111 media::VideoFrame::Format input_format, 171 scoped_refptr<media::VideoFrame> frame = 172 media::VideoFrame::WrapExternalPackedMemory( 192 "could not create VideoFrame for frame_id=" << frame_id;
|