OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:uv_rows
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/media/cdm/ppapi/
fake_cdm_video_decoder.cc
63
int
uv_rows
= height / 2;
local
66
int u_offset = v_offset + uv_stride *
uv_rows
+ kPlanePadding;
67
int frame_size = u_offset + uv_stride *
uv_rows
+ kPlanePadding;
libvpx_cdm_video_decoder.cc
150
const int
uv_rows
= vpx_image_->d_h / 2;
local
151
const int u_size = vpx_image_->stride[VPX_PLANE_U] *
uv_rows
;
152
const int v_size = vpx_image_->stride[VPX_PLANE_V] *
uv_rows
;
ffmpeg_cdm_video_decoder.cc
291
const int
uv_rows
= av_frame_->height / 2;
local
295
uv_rows
,
302
uv_rows
,
/external/chromium_org/content/renderer/media/webrtc/
webrtc_video_sink_adapter.cc
68
int
uv_rows
= frame->GetHeight() / 2; // YV12 format.
local
72
frame->GetUPlane(), frame->GetUPitch(),
uv_rows
, video_frame.get());
74
frame->GetVPlane(), frame->GetVPitch(),
uv_rows
, video_frame.get());
/external/chromium_org/media/base/
video_util.cc
88
int
uv_rows
= frame->rows(VideoFrame::kUPlane);
local
91
for (int i = 0; i <
uv_rows
; ++i) {
Completed in 69 milliseconds