Home | History | Annotate | Download | only in libcamera

Lines Matching full:srcwidth

3509 bool ExynosCameraHWInterface::m_scaleDownYuv422(char *srcBuf, uint32_t srcWidth, uint32_t srcHeight,
3521 step_x = srcWidth / dstWidth;
3526 src_y_start_pos = (y * step_y * (srcWidth * 2));
3541 bool ExynosCameraHWInterface::m_YUY2toNV21(void *srcBuf, void *dstBuf, uint32_t srcWidth, uint32_t srcHeight)
3548 dst_cbcr_pos = srcWidth*srcHeight;
3550 src_y_start_pos = (y * (srcWidth * 2));
3552 for (uint32_t x = 0; x < (srcWidth * 2); x += 2) {
3559 src_y_start_pos = (y * (srcWidth * 2));
3561 for (uint32_t x = 0; x < (srcWidth * 2); x += 4) {