/external/chromium_org/media/cdm/ppapi/ |
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 | 271 const int y_size = av_frame_->width * av_frame_->height; local 272 const int uv_size = y_size / 2; 273 const int space_required = y_size + (uv_size * 2); 297 cdm_video_frame->FrameBuffer()->Data() + y_size); 304 cdm_video_frame->FrameBuffer()->Data() + y_size + uv_size); 315 cdm_video_frame->SetPlaneOffset(cdm::VideoFrame::kUPlane, y_size); 317 y_size + uv_size);
|
/external/chromium_org/third_party/libwebp/dec/ |
buffer.c | 49 const uint64_t y_size = (uint64_t)buf->y_stride * height; local 53 ok &= (y_size <= buf->y_size); 116 buf->y_size = (size_t)size;
|
/external/webp/src/dec/ |
buffer.c | 49 const uint64_t y_size = (uint64_t)buf->y_stride * height; local 53 ok &= (y_size <= buf->y_size); 116 buf->y_size = (size_t)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);
|
/hardware/qcom/display/msm8x26/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/libyuv/files/source/ |
convert.cc | 1755 int y_size = dst_width * abs_dst_height; 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
|
/external/chromium_org/third_party/libwebp/enc/ |
picture.c | 55 uint64_t y_size, uv_size, uv0_size, a_size, total_size; local 80 y_size = (uint64_t)y_stride * height; 84 total_size = y_size + a_size + 2 * uv_size + 2 * uv0_size; 104 mem += y_size; [all...] |
/external/webp/src/enc/ |
picture.c | 55 uint64_t y_size, uv_size, uv0_size, a_size, total_size; local 80 y_size = (uint64_t)y_stride * height; 84 total_size = y_size + a_size + 2 * uv_size + 2 * uv0_size; 104 mem += y_size; [all...] |
/hardware/qcom/media/mm-video-legacy/vidc/venc/src/ |
video_encoder_device.cpp | 1680 int y_size = 0; local [all...] |
video_encoder_device_copper.cpp | 1638 int y_size = 0; local [all...] |
/hardware/qcom/media/mm-video-v4l2/vidc/venc/src/ |
video_encoder_device.cpp | 1769 int y_size = 0; local [all...] |
/cts/tests/tests/hardware/src/android/hardware/cts/ |
CameraTest.java | 201 int y_size = stride * height; local 204 int size = y_size + c_size * 2; [all...] |
/pdk/apps/TestingCamera/src/com/android/testingcamera/ |
TestingCamera.java | 1496 int y_size = y_stride * height; local [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_rdopt.c | 2930 const BLOCK_SIZE y_size = get_plane_block_size(bsize, &xd->plane[0]); local [all...] |