Searched refs:srcPlanes (Results 1 – 5 of 5) sorted by relevance
/external/libjpeg-turbo/ |
D | turbojpeg.c | 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() [all …]
|
D | turbojpeg-jni.c | 294 const unsigned char *srcPlanes[3]; in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII() local 336 bailif0(srcPlanes[i]=(*env)->GetPrimitiveArrayCritical(env, jSrcPlanes[i], in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII() 338 srcPlanes[i]=&srcPlanes[i][srcOffsets[i]]; in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII() 344 if(tjCompressFromYUVPlanes(handle, srcPlanes, width, srcStrides, height, in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII() 352 if(srcPlanes[i] && jSrcPlanes[i]) in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII() 354 (unsigned char *)srcPlanes[i], 0); in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII() 853 const unsigned char *srcPlanes[3]; in TJDecompressor_decodeYUV() local 898 bailif0(srcPlanes[i]=(*env)->GetPrimitiveArrayCritical(env, jSrcPlanes[i], in TJDecompressor_decodeYUV() 900 srcPlanes[i]=&srcPlanes[i][srcOffsets[i]]; in TJDecompressor_decodeYUV() 904 if(tjDecodeYUVPlanes(handle, srcPlanes, srcStrides, subsamp, in TJDecompressor_decodeYUV() [all …]
|
D | turbojpeg.h | 810 const unsigned char **srcPlanes, int width, const int *strides, int height, 1350 const unsigned char **srcPlanes, const int *strides, int subsamp,
|
/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/ |
D | TJDecompressor.java | 888 private native void decodeYUV(byte[][] srcPlanes, int[] srcOffsets, in decodeYUV() argument 892 private native void decodeYUV(byte[][] srcPlanes, int[] srcOffsets, in decodeYUV() argument
|
D | TJCompressor.java | 603 private native int compressFromYUV(byte[][] srcPlanes, int[] srcOffsets, in compressFromYUV() argument
|