Home
last modified time | relevance | path

Searched refs:VPX_PLANE_U (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/vpx/src/
Dvpx_image.c138 img->stride[VPX_PLANE_U] = img->stride[VPX_PLANE_V] = s >> xcs; in img_alloc_helper()
203 img->planes[VPX_PLANE_U] = data in vpx_img_set_rect()
205 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_U]; in vpx_img_set_rect()
206 data += (img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_U]; in vpx_img_set_rect()
217 img->planes[VPX_PLANE_U] = data in vpx_img_set_rect()
219 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_U]; in vpx_img_set_rect()
240 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1) in vpx_img_flip()
241 * img->stride[VPX_PLANE_U]; in vpx_img_flip()
242 img->stride[VPX_PLANE_U] = -img->stride[VPX_PLANE_U]; in vpx_img_flip()
/external/libvpx/vpx/
Dvpx_image.h116 #define VPX_PLANE_U 1 /**< U (Chroma) plane */ macro
122 #define PLANE_U VPX_PLANE_U
/external/libvpx/vp8/
Dvp8_cx_iface.c576 yv12->u_buffer = img->planes[VPX_PLANE_U]; in image2yuvconfig()
585 yv12->uv_stride = img->stride[VPX_PLANE_U]; in image2yuvconfig()
914 ctx->preview_img.planes[VPX_PLANE_U] = sd.u_buffer; in vp8e_get_preview()
928 ctx->preview_img.stride[VPX_PLANE_U] = sd.uv_stride; in vp8e_get_preview()
Dvp8_dx_iface.c555 yv12->u_buffer = img->planes[VPX_PLANE_U]; in image2yuvconfig()
564 yv12->uv_stride = img->stride[VPX_PLANE_U]; in image2yuvconfig()
/external/libvpx/
Dvpxdec.c1074 buf = img->planes[flipuv?VPX_PLANE_V:VPX_PLANE_U]; in main()
1079 buf += img->stride[VPX_PLANE_U]; in main()
1082 buf = img->planes[flipuv?VPX_PLANE_U:VPX_PLANE_V]; in main()
Dvpxenc.c312 ptr = img->planes[img->fmt==VPX_IMG_FMT_YV12? VPX_PLANE_V : VPX_PLANE_U]; in read_frame()
315 ptr = img->planes[img->fmt==VPX_IMG_FMT_YV12?VPX_PLANE_U : VPX_PLANE_V]; in read_frame()