Lines Matching refs:subsamp

141   (JNIEnv *env, jclass cls, jint width, jint pad, jint height, jint subsamp)  in Java_org_libjpegturbo_turbojpeg_TJ_bufSizeYUV__IIII()  argument
143 jint retval = (jint)tjBufSizeYUV2(width, pad, height, subsamp); in Java_org_libjpegturbo_turbojpeg_TJ_bufSizeYUV__IIII()
153 (JNIEnv *env, jclass cls, jint width, jint height, jint subsamp) in Java_org_libjpegturbo_turbojpeg_TJ_bufSizeYUV__III() argument
157 subsamp); in Java_org_libjpegturbo_turbojpeg_TJ_bufSizeYUV__III()
163 jint height, jint subsamp) in Java_org_libjpegturbo_turbojpeg_TJ_planeSizeYUV__IIIII() argument
166 subsamp); in Java_org_libjpegturbo_turbojpeg_TJ_planeSizeYUV__IIIII()
176 (JNIEnv *env, jclass cls, jint componentID, jint width, jint subsamp) in Java_org_libjpegturbo_turbojpeg_TJ_planeWidth__III() argument
178 jint retval = (jint)tjPlaneWidth(componentID, width, subsamp); in Java_org_libjpegturbo_turbojpeg_TJ_planeWidth__III()
188 (JNIEnv *env, jclass cls, jint componentID, jint height, jint subsamp) in Java_org_libjpegturbo_turbojpeg_TJ_planeHeight__III() argument
190 jint retval = (jint)tjPlaneHeight(componentID, height, subsamp); in Java_org_libjpegturbo_turbojpeg_TJ_planeHeight__III()
323 jint width, jintArray jSrcStrides, jint height, jint subsamp, in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII() argument
334 int nc = (subsamp == org_libjpegturbo_turbojpeg_TJ_SAMP_GRAY ? 1 : 3), i; in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII()
338 if (subsamp < 0 || subsamp >= org_libjpegturbo_turbojpeg_TJ_NUMSAMP) in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII()
350 jpegSize = tjBufSize(width, height, subsamp); in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII()
367 int planeSize = tjPlaneSizeYUV(i, width, srcStrides[i], height, subsamp); in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII()
368 int pw = tjPlaneWidth(i, width, subsamp); in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII()
391 subsamp, &jpegBuf, &jpegSize, jpegQual, in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII()
405 jintArray jDstOffsets, jintArray jDstStrides, jint subsamp, jint flags) in TJCompressor_encodeYUV() argument
415 int nc = (subsamp == org_libjpegturbo_turbojpeg_TJ_SAMP_GRAY ? 1 : 3), i; in TJCompressor_encodeYUV()
420 height < 1 || pitch < 0 || subsamp < 0 || in TJCompressor_encodeYUV()
421 subsamp >= org_libjpegturbo_turbojpeg_TJ_NUMSAMP) in TJCompressor_encodeYUV()
450 int planeSize = tjPlaneSizeYUV(i, width, dstStrides[i], height, subsamp); in TJCompressor_encodeYUV()
451 int pw = tjPlaneWidth(i, width, subsamp); in TJCompressor_encodeYUV()
475 subsamp, flags) == -1) { in TJCompressor_encodeYUV()
488 jintArray jDstOffsets, jintArray jDstStrides, jint subsamp, jint flags) in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3BIIIIII_3_3B_3I_3III() argument
491 dstobjs, jDstOffsets, jDstStrides, subsamp, flags); in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3BIIIIII_3_3B_3I_3III()
498 jintArray jDstOffsets, jintArray jDstStrides, jint subsamp, jint flags) in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3IIIIIII_3_3B_3I_3III() argument
507 jDstOffsets, jDstStrides, subsamp, flags); in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3IIIIIII_3_3B_3I_3III()
515 jint pitch, jint height, jint pf, jbyteArray dst, jint subsamp, jint flags) in TJCompressor_encodeYUV_12() argument
533 (jsize)tjBufSizeYUV(width, height, subsamp)) in TJCompressor_encodeYUV_12()
539 if (tjEncodeYUV2(handle, srcBuf, width, pitch, height, pf, dstBuf, subsamp, in TJCompressor_encodeYUV_12()
554 jint height, jint pf, jbyteArray dst, jint subsamp, jint flags) in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3BIIII_3BII() argument
557 subsamp, flags); in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3BIIII_3BII()
563 jint height, jint pf, jbyteArray dst, jint subsamp, jint flags) in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3IIIII_3BII() argument
571 stride * sizeof(jint), height, pf, dst, subsamp, in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3IIIII_3BII()
904 jintArray jSrcStrides, jint subsamp, jarray dst, jint dstElementSize, in TJDecompressor_decodeYUV() argument
915 int nc = (subsamp == org_libjpegturbo_turbojpeg_TJ_SAMP_GRAY ? 1 : 3), i; in TJDecompressor_decodeYUV()
919 if (pf < 0 || pf >= org_libjpegturbo_turbojpeg_TJ_NUMPF || subsamp < 0 || in TJDecompressor_decodeYUV()
920 subsamp >= org_libjpegturbo_turbojpeg_TJ_NUMSAMP) in TJDecompressor_decodeYUV()
949 int planeSize = tjPlaneSizeYUV(i, width, srcStrides[i], height, subsamp); in TJDecompressor_decodeYUV()
950 int pw = tjPlaneWidth(i, width, subsamp); in TJDecompressor_decodeYUV()
972 if (tjDecodeYUVPlanes(handle, srcPlanes, srcStrides, subsamp, in TJDecompressor_decodeYUV()
986 jintArray jSrcStrides, jint subsamp, jbyteArray dst, jint x, jint y, in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decodeYUV___3_3B_3I_3II_3BIIIIIII() argument
990 subsamp, dst, 1, x, y, width, pitch, height, pf, in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decodeYUV___3_3B_3I_3II_3BIIIIIII()
997 jintArray jSrcStrides, jint subsamp, jintArray dst, jint x, jint y, in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decodeYUV___3_3B_3I_3II_3IIIIIIII() argument
1006 subsamp, dst, sizeof(jint), x, y, width, in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decodeYUV___3_3B_3I_3II_3IIIIIIII()