HomeSort by relevance Sort by last modified time
    Searched refs:y_size (Results 1 - 24 of 24) sorted by null

  /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 272 const int y_size = av_frame_->width * av_frame_->height; local
273 const int uv_size = y_size / 2;
274 const int space_required = y_size + (uv_size * 2);
298 cdm_video_frame->FrameBuffer()->Data() + y_size);
305 cdm_video_frame->FrameBuffer()->Data() + y_size + uv_size);
316 cdm_video_frame->SetPlaneOffset(cdm::VideoFrame::kUPlane, y_size);
318 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;
idec.c 676 idec->output_.u.YUVA.y_size = luma_size;
webp.c 563 output.u.YUVA.y_size = luma_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;
idec.c 680 idec->output_.u.YUVA.y_size = luma_size;
webp.c 546 output.u.YUVA.y_size = luma_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/chromium_org/ui/surface/
accelerated_surface_transformer_win.cc 547 gfx::Size* y_size,
554 *y_size = gfx::Size((dst_size.width() + 3) / 4, dst_size.height());
557 *uv_size = gfx::Size((y_size->width() + 1) / 2, (y_size->height() + 1) / 2);
559 if (!d3d_utils::CreateOrReuseLockableSurface(device(), *y_size,
  /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...]
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_controller.cc 38 int y_size = width * height; local
39 src += y_size;
42 src += y_size/4;
  /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...]
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
TestingCamera.java 1496 int y_size = y_stride * height; local
    [all...]
  /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 201 int y_size = stride * height; local
204 int size = y_size + c_size * 2;
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.c 2900 const BLOCK_SIZE y_size = get_plane_block_size(bsize, &xd->plane[0]); local
    [all...]

Completed in 2003 milliseconds