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

1 2

  /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;
idec.c 701 idec->output_.u.YUVA.y_size = luma_size;
webp.c 595 output.u.YUVA.y_size = luma_size;
  /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;
  /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);
  /hardware/qcom/display/msm8994/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);
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
TaskJpegEncode.java 110 final int y_size = y_buffer.capacity(); local
114 for (int i = 0; i < y_size; i++) {
135 final int y_size = w * h; local
138 for (int i = 0; i < y_size; i++) {
  /external/libvpx/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;
  /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...]
  /external/webp/include/webp/
decode.h 188 size_t y_size; // luma plane size member in struct:WebPYUVABuffer
  /external/webp/src/webp/
decode.h 188 size_t y_size; // luma plane size member in struct:WebPYUVABuffer
  /hardware/intel/common/libva/test/encode/
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...]
mpeg2vaenc.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...]
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...]
  /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...]
  /external/libyuv/files/source/
convert.cc 1755 int y_size = dst_width * abs_dst_height; local
    [all...]
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
TestingCamera.java 1722 int y_size = y_stride * height; local
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 214 int y_size = stride * height; local
217 int size = y_size + c_size * 2;
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.c 2029 const BLOCK_SIZE y_size = get_plane_block_size(bsize, &xd->plane[0]); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_rdopt.c 2927 const BLOCK_SIZE y_size = get_plane_block_size(bsize, &xd->plane[0]); local
    [all...]

Completed in 1532 milliseconds

1 2