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

  /external/libvpx/vpx/src/
vpx_image.c 138 img->stride[VPX_PLANE_U] = img->stride[VPX_PLANE_V] = s >> xcs;
203 img->planes[VPX_PLANE_U] = data
205 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_U];
206 data += (img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_U];
217 img->planes[VPX_PLANE_U] = data
219 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_U];
240 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1)
241 * img->stride[VPX_PLANE_U];
242 img->stride[VPX_PLANE_U] = -img->stride[VPX_PLANE_U];
    [all...]
  /external/libvpx/vpx/
vpx_image.h 116 #define VPX_PLANE_U 1 /**< U (Chroma) plane */
122 #define PLANE_U VPX_PLANE_U
  /external/libvpx/vp8/
vp8_cx_iface.c 576 yv12->u_buffer = img->planes[VPX_PLANE_U];
585 yv12->uv_stride = img->stride[VPX_PLANE_U];
914 ctx->preview_img.planes[VPX_PLANE_U] = sd.u_buffer;
928 ctx->preview_img.stride[VPX_PLANE_U] = sd.uv_stride;
    [all...]
vp8_dx_iface.c 555 yv12->u_buffer = img->planes[VPX_PLANE_U];
564 yv12->uv_stride = img->stride[VPX_PLANE_U];
  /external/libvpx/
vpxdec.c 1074 buf = img->planes[flipuv?VPX_PLANE_V:VPX_PLANE_U];
1079 buf += img->stride[VPX_PLANE_U];
1082 buf = img->planes[flipuv?VPX_PLANE_U:VPX_PLANE_V];
    [all...]
vpxenc.c 312 ptr = img->planes[img->fmt==VPX_IMG_FMT_YV12? VPX_PLANE_V : VPX_PLANE_U];
315 ptr = img->planes[img->fmt==VPX_IMG_FMT_YV12?VPX_PLANE_U : VPX_PLANE_V];
    [all...]

Completed in 98 milliseconds