Home | History | Annotate | Download | only in gralloc960

Lines Matching refs:vss

505  * @param vss           [in]    Vertical sub-sampling factor (2 for P010, 1 for
517 static bool get_yuv_pX10_stride_and_size(int width, int height, int vss, int* pixel_stride, int* byte_stride, size_t* size)
521 if (vss < 1 || vss > 2)
523 AERR("Invalid vertical sub-sampling factor: %d, should be 1 or 2", vss);
529 if (vss == 2)
540 int chroma_size = GRALLOC_ALIGN(width * 2, YUV_MALI_PLANE_ALIGN) * (height / vss);