Lines Matching refs:dstPlanes
868 int pixelFormat, unsigned char **dstPlanes, int *strides, int subsamp, in tjEncodeYUVPlanes() argument
894 || pixelFormat>=TJ_NUMPF || !dstPlanes || !dstPlanes[0] || subsamp<0 in tjEncodeYUVPlanes()
897 if(subsamp!=TJSAMP_GRAY && (!dstPlanes[1] || !dstPlanes[2])) in tjEncodeYUVPlanes()
990 ptr=dstPlanes[i]; in tjEncodeYUVPlanes()
1033 unsigned char *dstPlanes[3]; in tjEncodeYUV3() local
1042 dstPlanes[0]=dstBuf; in tjEncodeYUV3()
1047 dstPlanes[1]=dstPlanes[2]=NULL; in tjEncodeYUV3()
1054 dstPlanes[1]=dstPlanes[0]+strides[0]*ph0; in tjEncodeYUV3()
1055 dstPlanes[2]=dstPlanes[1]+strides[1]*ph1; in tjEncodeYUV3()
1059 dstPlanes, strides, subsamp, flags); in tjEncodeYUV3()
1743 unsigned char **dstPlanes, int width, int *strides, int height, int flags) in tjDecompressToYUVPlanes() argument
1762 if(jpegBuf==NULL || jpegSize<=0 || !dstPlanes || !dstPlanes[0] || width<0 in tjDecompressToYUVPlanes()
1787 if(jpegSubsamp!=TJSAMP_GRAY && (!dstPlanes[1] || !dstPlanes[2])) in tjDecompressToYUVPlanes()
1828 ptr=dstPlanes[i]; in tjDecompressToYUVPlanes()
1919 unsigned char *dstPlanes[3]; in tjDecompressToYUV2() local
1957 dstPlanes[0]=dstBuf; in tjDecompressToYUV2()
1962 dstPlanes[1]=dstPlanes[2]=NULL; in tjDecompressToYUV2()
1969 dstPlanes[1]=dstPlanes[0]+strides[0]*ph0; in tjDecompressToYUV2()
1970 dstPlanes[2]=dstPlanes[1]+strides[1]*ph1; in tjDecompressToYUV2()
1974 return tjDecompressToYUVPlanes(handle, jpegBuf, jpegSize, dstPlanes, width, in tjDecompressToYUV2()