Lines Matching refs:ycbcr
553 int getYUVPlaneInfo(private_handle_t* hnd, struct android_ycbcr* ycbcr)
557 memset(ycbcr->reserved, 0, sizeof(ycbcr->reserved));
568 ycbcr->y = (void*)hnd->base;
569 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height);
570 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height + 1);
571 ycbcr->ystride = ystride;
572 ycbcr->cstride = cstride;
573 ycbcr->chroma_step = 2;
582 ycbcr->y = (void*)hnd->base;
583 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height);
584 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + 1);
585 ycbcr->ystride = ystride;
586 ycbcr->cstride = cstride;
587 ycbcr->chroma_step = 2;
594 ycbcr->y = (void*)hnd->base;
595 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height);
596 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height +
598 ycbcr->ystride = ystride;
599 ycbcr->cstride = cstride;
600 ycbcr->chroma_step = 1;