Lines Matching refs:ystride
352 ycbcr->ystride = y_stride; in GetYuvUbwcSPPlaneInfo()
358 unsigned int ystride, cstride; in GetYuvSPPlaneInfo() local
360 ystride = cstride = UINT(width) * bpp; in GetYuvSPPlaneInfo()
362 ycbcr->cb = reinterpret_cast<void *>(base + ystride * UINT(height)); in GetYuvSPPlaneInfo()
363 ycbcr->cr = reinterpret_cast<void *>(base + ystride * UINT(height) + 1); in GetYuvSPPlaneInfo()
364 ycbcr->ystride = ystride; in GetYuvSPPlaneInfo()
376 unsigned int ystride, cstride; in GetYUVPlaneInfo() local
441 ystride = width; in GetYUVPlaneInfo()
444 ycbcr->cr = reinterpret_cast<void *>(hnd->base + ystride * height); in GetYUVPlaneInfo()
445 ycbcr->cb = reinterpret_cast<void *>(hnd->base + ystride * height + cstride * height / 2); in GetYUVPlaneInfo()
446 ycbcr->ystride = ystride; in GetYUVPlaneInfo()