• Home
  • Raw
  • Download

Lines Matching refs:strides

832 	int *strides, int subsamp, int flags)  in tjEncodeYUVPlanes()  argument
956 ptr+=(strides && strides[i]!=0)? strides[i]:pw[i]; in tjEncodeYUVPlanes()
996 int pw0, ph0, strides[3], retval=-1; in tjEncodeYUV3() local
1005 strides[0]=PAD(pw0, pad); in tjEncodeYUV3()
1008 strides[1]=strides[2]=0; in tjEncodeYUV3()
1015 strides[1]=strides[2]=PAD(pw1, pad); in tjEncodeYUV3()
1016 dstPlanes[1]=dstPlanes[0]+strides[0]*ph0; in tjEncodeYUV3()
1017 dstPlanes[2]=dstPlanes[1]+strides[1]*ph1; in tjEncodeYUV3()
1021 dstPlanes, strides, subsamp, flags); in tjEncodeYUV3()
1045 unsigned char **srcPlanes, int width, int *strides, int height, int subsamp, in tjCompressFromYUVPlanes() argument
1113 ptr+=(strides && strides[i]!=0)? strides[i]:pw[i]; in tjCompressFromYUVPlanes()
1180 int pw0, ph0, strides[3], retval=-1; in tjCompressFromYUV() local
1189 strides[0]=PAD(pw0, pad); in tjCompressFromYUV()
1192 strides[1]=strides[2]=0; in tjCompressFromYUV()
1199 strides[1]=strides[2]=PAD(pw1, pad); in tjCompressFromYUV()
1200 srcPlanes[1]=srcPlanes[0]+strides[0]*ph0; in tjCompressFromYUV()
1201 srcPlanes[2]=srcPlanes[1]+strides[1]*ph1; in tjCompressFromYUV()
1204 return tjCompressFromYUVPlanes(handle, srcPlanes, width, strides, height, in tjCompressFromYUV()
1503 unsigned char **srcPlanes, int *strides, int subsamp, unsigned char *dstBuf, in tjDecodeYUVPlanes() argument
1627 ptr+=(strides && strides[i]!=0)? strides[i]:pw[i]; in tjDecodeYUVPlanes()
1669 int pw0, ph0, strides[3], retval=-1; in tjDecodeYUV() local
1678 strides[0]=PAD(pw0, pad); in tjDecodeYUV()
1681 strides[1]=strides[2]=0; in tjDecodeYUV()
1688 strides[1]=strides[2]=PAD(pw1, pad); in tjDecodeYUV()
1689 srcPlanes[1]=srcPlanes[0]+strides[0]*ph0; in tjDecodeYUV()
1690 srcPlanes[2]=srcPlanes[1]+strides[1]*ph1; in tjDecodeYUV()
1693 return tjDecodeYUVPlanes(handle, srcPlanes, strides, subsamp, dstBuf, width, in tjDecodeYUV()
1702 int width, int *strides, int height, int flags) in tjDecompressToYUVPlanes() argument
1791 ptr+=(strides && strides[i]!=0)? strides[i]:pw[i]; in tjDecompressToYUVPlanes()
1879 int pw0, ph0, strides[3], retval=-1, jpegSubsamp=-1; in tjDecompressToYUV2() local
1911 strides[0]=PAD(pw0, pad); in tjDecompressToYUV2()
1914 strides[1]=strides[2]=0; in tjDecompressToYUV2()
1921 strides[1]=strides[2]=PAD(pw1, pad); in tjDecompressToYUV2()
1922 dstPlanes[1]=dstPlanes[0]+strides[0]*ph0; in tjDecompressToYUV2()
1923 dstPlanes[2]=dstPlanes[1]+strides[1]*ph1; in tjDecompressToYUV2()
1928 strides, height, flags); in tjDecompressToYUV2()