HomeSort by relevance Sort by last modified time
    Searched refs:VPX_PLANE_V (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;
207 img->planes[VPX_PLANE_V] = data
209 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
213 img->planes[VPX_PLANE_V] = data
215 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
216 data += (img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
244 img->planes[VPX_PLANE_V] += (signed)((img->d_h >> img->y_chroma_shift) - 1)
245 * img->stride[VPX_PLANE_V];
246 img->stride[VPX_PLANE_V] = -img->stride[VPX_PLANE_V];
    [all...]
  /external/libvpx/vpx/
vpx_image.h 117 #define VPX_PLANE_V 2 /**< V (Chroma) plane */
123 #define PLANE_V VPX_PLANE_V
  /external/libvpx/vp8/
vp8_cx_iface.c 577 yv12->v_buffer = img->planes[VPX_PLANE_V];
915 ctx->preview_img.planes[VPX_PLANE_V] = sd.v_buffer;
929 ctx->preview_img.stride[VPX_PLANE_V] = sd.uv_stride;
    [all...]
vp8_dx_iface.c 556 yv12->v_buffer = img->planes[VPX_PLANE_V];
  /external/libvpx/
vpxdec.c 1074 buf = img->planes[flipuv?VPX_PLANE_V:VPX_PLANE_U];
1082 buf = img->planes[flipuv?VPX_PLANE_U:VPX_PLANE_V];
1087 buf += img->stride[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 106 milliseconds