/external/chromium_org/media/cdm/ppapi/external_clear_key/ |
libvpx_cdm_video_decoder.cc | 149 const int y_size = vpx_image_->stride[VPX_PLANE_Y] * vpx_image_->d_h; local 153 const int space_required = y_size + u_size + v_size; 165 y_size); 166 memcpy(cdm_video_frame->FrameBuffer()->Data() + y_size, 169 memcpy(cdm_video_frame->FrameBuffer()->Data() + y_size + u_size, 181 cdm_video_frame->SetPlaneOffset(cdm::VideoFrame::kUPlane, y_size); 183 y_size + u_size);
|
ffmpeg_cdm_video_decoder.cc | 275 const int y_size = av_frame_->width * av_frame_->height; local 276 const int uv_size = y_size / 2; 277 const int space_required = y_size + (uv_size * 2); 301 cdm_video_frame->FrameBuffer()->Data() + y_size); 308 cdm_video_frame->FrameBuffer()->Data() + y_size + uv_size); 319 cdm_video_frame->SetPlaneOffset(cdm::VideoFrame::kUPlane, y_size); 321 y_size + uv_size);
|
/external/chromium_org/third_party/libyuv/util/ |
psnr_main.cc | 238 const int y_size, const int uv_size, const size_t total_size, 243 const uint8* const u_org = ch_org + y_size + uv_offset; 244 const uint8* const u_rec = ch_rec + y_size; 245 const uint8* const v_org = ch_org + y_size + (uv_size - uv_offset); 246 const uint8* const v_rec = ch_rec + y_size + uv_size; 250 libyuv::ComputeSumSquareError(ch_org, ch_rec, y_size)); 256 double y_err = ComputeSumSquareError(ch_org, ch_rec, y_size); 265 distorted_frame->y = ComputePSNR(y_err, static_cast<double>(y_size)); 279 distorted_frame->y /= y_size; 348 const int y_size = image_width * image_height local [all...] |
convert.cc | 224 const int y_size = Abs(image_width) * Abs(image_height); local 227 org_size = y_size + 2 * uv_size; // YUV original. 231 const int y_size = dst_width * dst_height; local 233 const size_t total_size = y_size + 2 * uv_size;
|
/external/chromium_org/third_party/libwebp/dec/ |
buffer.c | 49 const uint64_t y_size = (uint64_t)y_stride * height; local 53 ok &= (y_size <= buf->y_size); 117 buf->y_size = (size_t)size;
|
idec.c | 690 idec->output_.u.YUVA.y_size = luma_size;
|
webp.c | 583 output.u.YUVA.y_size = luma_size;
|
/external/chromium_org/third_party/libwebp/enc/ |
picture.c | 97 uint64_t y_size, uv_size, a_size, total_size; local 112 y_size = (uint64_t)y_stride * height; 116 total_size = y_size + a_size + 2 * uv_size; 137 mem += y_size;
|
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
planarfunctions_unittest.cc | 135 int y_size = height * width; local 150 v_size = u_size = y_size; 158 uint8* image_pointer = new uint8[y_size + u_size + v_size + kAlignment]; 160 u_pointer = ALIGNP(&image_pointer[y_size], kAlignment); 161 v_pointer = ALIGNP(&image_pointer[y_size + u_size], kAlignment); 528 int y_size = kHeight * kWidth; local 540 uint8 *u_output_pointer = y_output_pointer + y_size; 565 int y_size = kHeight * kWidth; local 577 uint8 *u_output_pointer = y_output_pointer + y_size; 614 int y_size = kHeight * kWidth local 661 int y_size = kHeight * kWidth; local 705 int y_size = kHeight * kWidth; local [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/ |
convert_to_i420.cc | 73 int y_size = crop_width * abs_crop_height; local 75 rotate_buffer = (uint8*)malloc(y_size + uv_size * 2); 80 u = y + y_size;
|
/external/chromium_org/third_party/libyuv/source/ |
convert_to_i420.cc | 73 int y_size = crop_width * abs_crop_height; local 75 rotate_buffer = (uint8*)malloc(y_size + uv_size * 2); 80 u = y + y_size;
|
/external/chromium_org/third_party/webrtc/modules/video_processing/main/source/ |
deflickering.cc | 130 const uint32_t y_size = height * width; local 233 for (uint32_t i = 0; i < y_size; i++) {
|
/external/chromium_org/third_party/libwebp/webp/ |
decode.h | 188 size_t y_size; // luma plane size member in struct:WebPYUVABuffer
|
/external/libyuv/files/source/ |
convert.cc | 1755 int y_size = dst_width * abs_dst_height; local [all...] |
/cts/tests/tests/hardware/src/android/hardware/cts/ |
CameraTest.java | 212 int y_size = stride * height; local 215 int size = y_size + c_size * 2; [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
vp9_rdopt.c | 2051 const BLOCK_SIZE y_size = get_plane_block_size(bsize, &xd->plane[0]); local [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_rdopt.c | 2927 const BLOCK_SIZE y_size = get_plane_block_size(bsize, &xd->plane[0]); local [all...] |