HomeSort by relevance Sort by last modified time
    Searched full:region_in_frame (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/content/browser/renderer_host/media/
desktop_capture_device_aura.cc 136 // |region_in_frame| defines the desktop bound in the captured frame.
138 gfx::Point UpdateCursorState(const gfx::Rect& region_in_frame);
302 gfx::Rect region_in_frame =
305 region_in_frame = gfx::Rect(region_in_frame.x() & ~1,
306 region_in_frame.y() & ~1,
307 region_in_frame.width() & ~1,
308 region_in_frame.height() & ~1);
309 if (region_in_frame.IsEmpty())
328 yuv_readback_pipeline_->scaler()->DstSize() != region_in_frame.size())
    [all...]
web_contents_video_capture_device.cc 470 gfx::Rect region_in_frame = ComputeYV12LetterboxRegion( local
475 if (input.width() != region_in_frame.width() ||
476 input.height() != region_in_frame.height()) {
479 if (input.width() < region_in_frame.width() ||
480 input.height() < region_in_frame.height()) {
490 region_in_frame.width(),
491 region_in_frame.height());
503 region_in_frame, local
  /external/chromium_org/media/base/
video_util.cc 281 const gfx::Rect& region_in_frame,
289 if (region_in_frame != gfx::Rect(frame->coded_size())) {
290 LetterboxYUV(frame, region_in_frame);
293 const int y_offset = region_in_frame.x()
294 + (region_in_frame.y() * frame->stride(kY));
295 const int uv_offset = region_in_frame.x() / 2
296 + (region_in_frame.y() / 2 * uv_stride);
302 region_in_frame.width(),
303 region_in_frame.height(),
video_util.h 80 // Copy an RGB bitmap into the specified |region_in_frame| of a YUV video frame.
81 // Fills the regions outside |region_in_frame| with black.
84 const gfx::Rect& region_in_frame,
  /external/chromium_org/content/browser/renderer_host/
compositing_iosurface_mac.mm 106 // Copies tightly-packed scanlines from |buf| to |region_in_frame| in the given
108 // |region_in_frame.width()| and its stride is always in 4-byte alignment.
114 const gfx::Rect& region_in_frame,
127 media::LetterboxYUV(target.get(), region_in_frame);
130 int packed_width = region_in_frame.width();
131 int packed_height = region_in_frame.height();
147 dst += (region_in_frame.y() * dst_stride) + region_in_frame.x();
149 dst += (region_in_frame.y() / 2 * dst_stride) + (region_in_frame.x() / 2)
    [all...]
render_widget_host_view_aura.cc 2005 region_in_frame, local
    [all...]

Completed in 198 milliseconds