Searched defs:region_in_frame (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/content/renderer/media/
H A Dvideo_track_adapter.cc210 gfx::Rect region_in_frame = local
215 region_in_frame,
/external/chromium_org/media/base/
H A Dvideo_util.cc295 const gfx::Rect& region_in_frame,
303 if (region_in_frame != gfx::Rect(frame->coded_size())) {
304 LetterboxYUV(frame, region_in_frame);
307 const int y_offset = region_in_frame.x()
308 + (region_in_frame.y() * frame->stride(kY));
309 const int uv_offset = region_in_frame.x() / 2
310 + (region_in_frame.y() / 2 * uv_stride);
316 region_in_frame.width(),
317 region_in_frame.height(),
293 CopyRGBToVideoFrame(const uint8* source, int stride, const gfx::Rect& region_in_frame, VideoFrame* frame) argument
/external/chromium_org/content/browser/media/capture/
H A Ddesktop_capture_device_aura.cc148 // |region_in_frame| defines the desktop bound in the captured frame.
150 gfx::Point UpdateCursorState(const gfx::Rect& region_in_frame);
378 gfx::Rect region_in_frame = local
381 region_in_frame = gfx::Rect(region_in_frame.x() & ~1,
382 region_in_frame.y() & ~1,
383 region_in_frame.width() & ~1,
384 region_in_frame.height() & ~1);
385 if (region_in_frame.IsEmpty())
404 yuv_readback_pipeline_->scaler()->DstSize() != region_in_frame
430 UpdateCursorState( const gfx::Rect& region_in_frame) argument
[all...]
H A Dweb_contents_video_capture_device.cc466 gfx::Rect region_in_frame = ComputeYV12LetterboxRegion( local
471 if (input.width() != region_in_frame.width() ||
472 input.height() != region_in_frame.height()) {
475 if (input.width() < region_in_frame.width() ||
476 input.height() < region_in_frame.height()) {
486 region_in_frame.width(),
487 region_in_frame.height());
499 region_in_frame, local
/external/chromium_org/content/browser/compositor/
H A Ddelegated_frame_host.cc741 gfx::Rect region_in_frame =
744 region_in_frame = gfx::Rect(region_in_frame.x() & ~1,
745 region_in_frame.y() & ~1,
746 region_in_frame.width() & ~1,
747 region_in_frame.height() & ~1);
748 if (region_in_frame.IsEmpty())
756 if (result->size().width() != region_in_frame.width() ||
757 result->size().height() != region_in_frame.height()) {
761 region_in_frame
773 region_in_frame, local
[all...]

Completed in 1020 milliseconds