Home | History | Annotate | Download | only in libcamera2

Lines Matching refs:dstW

677 int ExynosJpegEncoderForCamera::scaleDownYuv422(char **srcBuf, unsigned int srcW, unsigned int srcH,  char **dstBuf, unsigned int dstW, unsigned int dstH)
684 if (dstW & 0x01 || dstH & 0x01) {
688 step_x = srcW / dstW;
698 for (unsigned int x = 0; x < dstW; x += 2) {
711 int ExynosJpegEncoderForCamera::scaleDownYuv422_2p(char **srcBuf, unsigned int srcW, unsigned int srcH, char **dstBuf, unsigned int dstW, unsigned int dstH)
719 if (dstW % 2 != 0 || dstH % 2 != 0) {
723 step_x = srcW / dstW;
733 for (uint32_t x = 0; x < dstW; x++) {
744 for (uint32_t j = 0; j < dstW; j += 2) {