Lines Matching refs:ystride
382 ycbcr->ystride = y_stride; in GetYuvUbwcSPPlaneInfo()
411 unsigned int ystride, cstride; in GetYuvSPPlaneInfo() local
413 ystride = cstride = UINT(width) * bpp; in GetYuvSPPlaneInfo()
415 ycbcr->cb = reinterpret_cast<void *>(base + ystride * UINT(height)); in GetYuvSPPlaneInfo()
416 ycbcr->cr = reinterpret_cast<void *>(base + ystride * UINT(height) + 1); in GetYuvSPPlaneInfo()
417 ycbcr->ystride = ystride; in GetYuvSPPlaneInfo()
428 unsigned int ystride, cstride; in GetYUVPlaneInfo() local
489 ystride = VENUS_Y_STRIDE(COLOR_FMT_P010, width); in GetYUVPlaneInfo()
493 reinterpret_cast<void *>(hnd->base + ystride * VENUS_Y_SCANLINES(COLOR_FMT_P010, height)); in GetYUVPlaneInfo()
495 ystride * VENUS_Y_SCANLINES(COLOR_FMT_P010, height) + 1); in GetYUVPlaneInfo()
496 ycbcr->ystride = ystride; in GetYUVPlaneInfo()
517 ystride = width; in GetYUVPlaneInfo()
520 ycbcr->cr = reinterpret_cast<void *>(hnd->base + ystride * height); in GetYUVPlaneInfo()
521 ycbcr->cb = reinterpret_cast<void *>(hnd->base + ystride * height + cstride * height / 2); in GetYUVPlaneInfo()
522 ycbcr->ystride = ystride; in GetYUVPlaneInfo()
527 ystride = width * 2; in GetYUVPlaneInfo()
532 ycbcr->ystride = ystride; in GetYUVPlaneInfo()
955 stride[0] = static_cast<uint32_t>(yuvInfo.ystride); in GetBufferLayout()