Lines Matching refs:srcPlanes

1074 	const unsigned char **srcPlanes, int width, const int *strides, int height,  in tjCompressFromYUVPlanes()  argument
1093 if(!srcPlanes || !srcPlanes[0] || width<=0 || height<=0 || subsamp<0 in tjCompressFromYUVPlanes()
1097 if(subsamp!=TJSAMP_GRAY && (!srcPlanes[1] || !srcPlanes[2])) in tjCompressFromYUVPlanes()
1139 ptr=(JSAMPLE *)srcPlanes[i]; in tjCompressFromYUVPlanes()
1209 const unsigned char *srcPlanes[3]; in tjCompressFromYUV() local
1218 srcPlanes[0]=srcBuf; in tjCompressFromYUV()
1223 srcPlanes[1]=srcPlanes[2]=NULL; in tjCompressFromYUV()
1230 srcPlanes[1]=srcPlanes[0]+strides[0]*ph0; in tjCompressFromYUV()
1231 srcPlanes[2]=srcPlanes[1]+strides[1]*ph1; in tjCompressFromYUV()
1234 return tjCompressFromYUVPlanes(handle, srcPlanes, width, strides, height, in tjCompressFromYUV()
1534 const unsigned char **srcPlanes, const int *strides, int subsamp, in tjDecodeYUVPlanes() argument
1561 if(!srcPlanes || !srcPlanes[0] || subsamp<0 || subsamp>=NUMSUBOPT in tjDecodeYUVPlanes()
1565 if(subsamp!=TJSAMP_GRAY && (!srcPlanes[1] || !srcPlanes[2])) in tjDecodeYUVPlanes()
1655 ptr=(JSAMPLE *)srcPlanes[i]; in tjDecodeYUVPlanes()
1700 const unsigned char *srcPlanes[3]; in tjDecodeYUV() local
1709 srcPlanes[0]=srcBuf; in tjDecodeYUV()
1714 srcPlanes[1]=srcPlanes[2]=NULL; in tjDecodeYUV()
1721 srcPlanes[1]=srcPlanes[0]+strides[0]*ph0; in tjDecodeYUV()
1722 srcPlanes[2]=srcPlanes[1]+strides[1]*ph1; in tjDecodeYUV()
1725 return tjDecodeYUVPlanes(handle, srcPlanes, strides, subsamp, dstBuf, width, in tjDecodeYUV()