Home | History | Annotate | Download | only in libcamera

Lines Matching refs:dstW

691 int ExynosJpegEncoderForCamera::scaleDownYuv422(char **srcBuf, unsigned int srcW, unsigned int srcH,  char **dstBuf, unsigned int dstW, unsigned int dstH)
698 if (dstW & 0x01 || dstH & 0x01) {
702 step_x = srcW / dstW;
712 for (unsigned int x = 0; x < dstW; x += 2) {
725 int ExynosJpegEncoderForCamera::scaleDownYuv422_2p(char **srcBuf, unsigned int srcW, unsigned int srcH, char **dstBuf, unsigned int dstW, unsigned int dstH)
733 if (dstW % 2 != 0 || dstH % 2 != 0) {
737 step_x = srcW / dstW;
747 for (uint32_t x = 0; x < dstW; x++) {
761 for (uint32_t j = 0; j < dstW; j += 2) {