• Home
  • Raw
  • Download

Lines Matching refs:ph0

765   int i, retval = 0, row, pw0, ph0, pw[MAX_COMPONENTS], ph[MAX_COMPONENTS];  in tjEncodeYUVPlanes()  local
821 ph0 = PAD(height, cinfo->max_v_samp_factor); in tjEncodeYUVPlanes()
823 if ((row_pointer = (JSAMPROW *)malloc(sizeof(JSAMPROW) * ph0)) == NULL) in tjEncodeYUVPlanes()
831 if (height < ph0) in tjEncodeYUVPlanes()
832 for (i = height; i < ph0; i++) row_pointer[i] = row_pointer[height - 1]; in tjEncodeYUVPlanes()
870 ph[i] = ph0 * compptr->v_samp_factor / cinfo->max_v_samp_factor; in tjEncodeYUVPlanes()
886 for (row = 0; row < ph0; row += cinfo->max_v_samp_factor) { in tjEncodeYUVPlanes()
920 int pw0, ph0, strides[3], retval = -1; in tjEncodeYUV3() local
931 ph0 = tjPlaneHeight(0, height, subsamp); in tjEncodeYUV3()
942 dstPlanes[1] = dstPlanes[0] + strides[0] * ph0; in tjEncodeYUV3()
1115 int pw0, ph0, strides[3], retval = -1; in tjCompressFromYUV() local
1126 ph0 = tjPlaneHeight(0, height, subsamp); in tjCompressFromYUV()
1137 srcPlanes[1] = srcPlanes[0] + strides[0] * ph0; in tjCompressFromYUV()
1437 int i, retval = 0, row, pw0, ph0, pw[MAX_COMPONENTS], ph[MAX_COMPONENTS]; in tjDecodeYUVPlanes() local
1500 ph0 = PAD(height, dinfo->max_v_samp_factor); in tjDecodeYUVPlanes()
1504 if ((row_pointer = (JSAMPROW *)malloc(sizeof(JSAMPROW) * ph0)) == NULL) in tjDecodeYUVPlanes()
1512 if (height < ph0) in tjDecodeYUVPlanes()
1513 for (i = height; i < ph0; i++) row_pointer[i] = row_pointer[height - 1]; in tjDecodeYUVPlanes()
1533 ph[i] = ph0 * compptr->v_samp_factor / dinfo->max_v_samp_factor; in tjDecodeYUVPlanes()
1549 for (row = 0; row < ph0; row += dinfo->max_v_samp_factor) { in tjDecodeYUVPlanes()
1582 int pw0, ph0, strides[3], retval = -1; in tjDecodeYUV() local
1593 ph0 = tjPlaneHeight(0, height, subsamp); in tjDecodeYUV()
1604 srcPlanes[1] = srcPlanes[0] + strides[0] * ph0; in tjDecodeYUV()
1800 int pw0, ph0, strides[3], retval = -1, jpegSubsamp = -1; in tjDecompressToYUV2() local
1835 ph0 = tjPlaneHeight(0, height, jpegSubsamp); in tjDecompressToYUV2()
1846 dstPlanes[1] = dstPlanes[0] + strides[0] * ph0; in tjDecompressToYUV2()