HomeSort by relevance Sort by last modified time
    Searched defs:y_size (Results 1 - 25 of 32) sorted by null

1 2

  /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/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/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;
  /external/webp/src/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;
  /hardware/qcom/display/msm8084/libcopybit/
software_converter.cpp 54 unsigned int y_size = stride * src->h; local
59 unsigned char* newChroma = (unsigned char *)(yv12_handle->base + y_size);
60 unsigned char* oldChroma = (unsigned char*)(hnd->base + y_size);
61 memcpy((char *)yv12_handle->base,(char *)hnd->base,y_size);
  /hardware/qcom/display/msm8226/libcopybit/
software_converter.cpp 54 unsigned int y_size = stride * src->h; local
59 unsigned char* newChroma = (unsigned char *)(yv12_handle->base + y_size);
60 unsigned char* oldChroma = (unsigned char*)(hnd->base + y_size);
61 memcpy((char *)yv12_handle->base,(char *)hnd->base,y_size);
  /hardware/qcom/display/msm8960/libcopybit/
software_converter.cpp 54 unsigned int y_size = stride * src->h; local
59 unsigned char* newChroma = (unsigned char *)(yv12_handle->base + y_size);
60 unsigned char* oldChroma = (unsigned char*)(hnd->base + y_size);
61 memcpy((char *)yv12_handle->base,(char *)hnd->base,y_size);
  /hardware/qcom/display/msm8974/libcopybit/
software_converter.cpp 54 unsigned int y_size = stride * src->h; local
59 unsigned char* newChroma = (unsigned char *)(yv12_handle->base + y_size);
60 unsigned char* oldChroma = (unsigned char*)(hnd->base + y_size);
61 memcpy((char *)yv12_handle->base,(char *)hnd->base,y_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/libyuv/util/
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;
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...]
  /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/webp/src/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/libyuv/files/source/
convert.cc 1755 int y_size = dst_width * abs_dst_height; local
    [all...]
  /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/libwebp/webp/
decode.h 188 size_t y_size; // luma plane size member in struct:WebPYUVABuffer
  /external/webp/include/webp/
decode.h 188 size_t y_size; // luma plane size member in struct:WebPYUVABuffer
  /hardware/intel/common/libva/test/videoprocess/
videoprocess.cpp 381 uint32_t y_size = surface_image.width * surface_image.height; local
382 uint32_t u_size = y_size/4;
384 newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2);
388 v_dst = newImageBuffer + y_size;
389 u_dst = newImageBuffer + y_size + u_size;
443 n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp);
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/venc/src/
video_encoder_device.cpp 1678 int y_size = 0; local
    [all...]
video_encoder_device_copper.cpp 1636 int y_size = 0; local
    [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/venc/src/
video_encoder_device.cpp 263 int y_size = 0; local
267 y_size = m_sVenc_cfg.input_width * m_sVenc_cfg.input_height;
268 //chroma offset is y_size aligned to the 2k boundary
269 c_offset= (y_size + 2047) & (~(2047));
283 fwrite((const char *)buf_addr, y_size, 1, m_debug.infile);
284 fwrite((const char *)(buf_addr + c_offset), (y_size>>1), 1, m_debug.infile);
    [all...]
  /hardware/intel/common/libva/test/encode/
avcenc.c 361 int y_size = picture_width * picture_height; local
377 u_src = newImageBuffer + y_size; /* UV offset for NV12 */
378 v_src = newImageBuffer + y_size + u_size;
    [all...]
mpeg2enc.c 440 int y_size = ctx->width * ctx->height; local
456 u_src = ctx->frame_data_buffer + y_size; /* UV offset for NV12 */
457 v_src = ctx->frame_data_buffer + y_size + u_size;
    [all...]

Completed in 501 milliseconds

1 2