• Home
  • Raw
  • Download

Lines Matching refs:pf

214    jint width, jint pitch, jint height, jint pf, jbyteArray dst,  in TJCompressor_compress()  argument
224 if (pf < 0 || pf >= org_libjpegturbo_turbojpeg_TJ_NUMPF || width < 1 || in TJCompressor_compress()
230 actualPitch = (pitch == 0) ? width * tjPixelSize[pf] : pitch; in TJCompressor_compress()
231 arraySize = (y + height - 1) * actualPitch + (x + width) * tjPixelSize[pf]; in TJCompressor_compress()
243 if (tjCompress2(handle, &srcBuf[y * actualPitch + x * tjPixelSize[pf]], in TJCompressor_compress()
244 width, pitch, height, pf, &jpegBuf, &jpegSize, jpegSubsamp, in TJCompressor_compress()
257 jint pitch, jint height, jint pf, jbyteArray dst, jint jpegSubsamp, in Java_org_libjpegturbo_turbojpeg_TJCompressor_compress___3BIIIIII_3BIII() argument
261 pf, dst, jpegSubsamp, jpegQual, flags); in Java_org_libjpegturbo_turbojpeg_TJCompressor_compress___3BIIIIII_3BIII()
267 jint height, jint pf, jbyteArray dst, jint jpegSubsamp, jint jpegQual, in Java_org_libjpegturbo_turbojpeg_TJCompressor_compress___3BIIII_3BIII() argument
271 pf, dst, jpegSubsamp, jpegQual, flags); in Java_org_libjpegturbo_turbojpeg_TJCompressor_compress___3BIIII_3BIII()
277 jint stride, jint height, jint pf, jbyteArray dst, jint jpegSubsamp, in Java_org_libjpegturbo_turbojpeg_TJCompressor_compress___3IIIIIII_3BIII() argument
280 if (pf < 0 || pf >= org_libjpegturbo_turbojpeg_TJ_NUMPF) in Java_org_libjpegturbo_turbojpeg_TJCompressor_compress___3IIIIIII_3BIII()
282 if (tjPixelSize[pf] != sizeof(jint)) in Java_org_libjpegturbo_turbojpeg_TJCompressor_compress___3IIIIIII_3BIII()
286 stride * sizeof(jint), height, pf, dst, in Java_org_libjpegturbo_turbojpeg_TJCompressor_compress___3IIIIIII_3BIII()
296 jint height, jint pf, jbyteArray dst, jint jpegSubsamp, jint jpegQual, in Java_org_libjpegturbo_turbojpeg_TJCompressor_compress___3IIIII_3BIII() argument
299 if (pf < 0 || pf >= org_libjpegturbo_turbojpeg_TJ_NUMPF) in Java_org_libjpegturbo_turbojpeg_TJCompressor_compress___3IIIII_3BIII()
301 if (tjPixelSize[pf] != sizeof(jint)) in Java_org_libjpegturbo_turbojpeg_TJCompressor_compress___3IIIII_3BIII()
305 stride * sizeof(jint), height, pf, dst, in Java_org_libjpegturbo_turbojpeg_TJCompressor_compress___3IIIII_3BIII()
391 jint width, jint pitch, jint height, jint pf, jobjectArray dstobjs, in TJCompressor_encodeYUV() argument
403 if (pf < 0 || pf >= org_libjpegturbo_turbojpeg_TJ_NUMPF || width < 1 || in TJCompressor_encodeYUV()
418 actualPitch = (pitch == 0) ? width * tjPixelSize[pf] : pitch; in TJCompressor_encodeYUV()
419 arraySize = (y + height - 1) * actualPitch + (x + width) * tjPixelSize[pf]; in TJCompressor_encodeYUV()
447 if (tjEncodeYUVPlanes(handle, &srcBuf[y * actualPitch + x * tjPixelSize[pf]], in TJCompressor_encodeYUV()
448 width, pitch, height, pf, dstPlanes, dstStrides, in TJCompressor_encodeYUV()
468 jint pitch, jint height, jint pf, jobjectArray dstobjs, in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3BIIIIII_3_3B_3I_3III() argument
471 TJCompressor_encodeYUV(env, obj, src, 1, x, y, width, pitch, height, pf, in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3BIIIIII_3_3B_3I_3III()
478 jint stride, jint height, jint pf, jobjectArray dstobjs, in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3IIIIIII_3_3B_3I_3III() argument
481 if (pf < 0 || pf >= org_libjpegturbo_turbojpeg_TJ_NUMPF) in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3IIIIIII_3_3B_3I_3III()
483 if (tjPixelSize[pf] != sizeof(jint)) in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3IIIIIII_3_3B_3I_3III()
487 stride * sizeof(jint), height, pf, dstobjs, in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3IIIIIII_3_3B_3I_3III()
496 jint pitch, jint height, jint pf, jbyteArray dst, jint subsamp, jint flags) in TJCompressor_encodeYUV_12() argument
504 if (pf < 0 || pf >= org_libjpegturbo_turbojpeg_TJ_NUMPF || width < 1 || in TJCompressor_encodeYUV_12()
510 arraySize = (pitch == 0) ? width * tjPixelSize[pf] * height : pitch * height; in TJCompressor_encodeYUV_12()
520 if (tjEncodeYUV2(handle, srcBuf, width, pitch, height, pf, dstBuf, subsamp, in TJCompressor_encodeYUV_12()
532 jint height, jint pf, jbyteArray dst, jint subsamp, jint flags) in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3BIIII_3BII() argument
534 TJCompressor_encodeYUV_12(env, obj, src, 1, width, pitch, height, pf, dst, in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3BIIII_3BII()
541 jint height, jint pf, jbyteArray dst, jint subsamp, jint flags) in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3IIIII_3BII() argument
543 if (pf < 0 || pf >= org_libjpegturbo_turbojpeg_TJ_NUMPF) in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3IIIII_3BII()
545 if (tjPixelSize[pf] != sizeof(jint)) in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3IIIII_3BII()
549 stride * sizeof(jint), height, pf, dst, subsamp, in Java_org_libjpegturbo_turbojpeg_TJCompressor_encodeYUV___3IIIII_3BII()
661 jint pf, jint flags) in TJDecompressor_decompress() argument
669 if (pf < 0 || pf >= org_libjpegturbo_turbojpeg_TJ_NUMPF) in TJDecompressor_decompress()
676 actualPitch = (pitch == 0) ? width * tjPixelSize[pf] : pitch; in TJDecompressor_decompress()
677 arraySize = (y + height - 1) * actualPitch + (x + width) * tjPixelSize[pf]; in TJDecompressor_decompress()
685 &dstBuf[y * actualPitch + x * tjPixelSize[pf]], width, in TJDecompressor_decompress()
686 pitch, height, pf, flags) == -1) in TJDecompressor_decompress()
697 jint x, jint y, jint width, jint pitch, jint height, jint pf, jint flags) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompress___3BI_3BIIIIIII() argument
700 pitch, height, pf, flags); in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompress___3BI_3BIIIIIII()
706 jint width, jint pitch, jint height, jint pf, jint flags) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompress___3BI_3BIIIII() argument
709 pitch, height, pf, flags); in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompress___3BI_3BIIIII()
715 jint x, jint y, jint width, jint stride, jint height, jint pf, jint flags) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompress___3BI_3IIIIIIII() argument
717 if (pf < 0 || pf >= org_libjpegturbo_turbojpeg_TJ_NUMPF) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompress___3BI_3IIIIIIII()
719 if (tjPixelSize[pf] != sizeof(jint)) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompress___3BI_3IIIIIIII()
723 width, stride * sizeof(jint), height, pf, flags); in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompress___3BI_3IIIIIIII()
732 jint width, jint stride, jint height, jint pf, jint flags) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompress___3BI_3IIIIII() argument
734 if (pf < 0 || pf >= org_libjpegturbo_turbojpeg_TJ_NUMPF) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompress___3BI_3IIIIII()
736 if (tjPixelSize[pf] != sizeof(jint)) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompress___3BI_3IIIIII()
740 width, stride * sizeof(jint), height, pf, flags); in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompress___3BI_3IIIIII()
870 jint x, jint y, jint width, jint pitch, jint height, jint pf, jint flags) in TJDecompressor_decodeYUV() argument
882 if (pf < 0 || pf >= org_libjpegturbo_turbojpeg_TJ_NUMPF || subsamp < 0 || in TJDecompressor_decodeYUV()
896 actualPitch = (pitch == 0) ? width * tjPixelSize[pf] : pitch; in TJDecompressor_decodeYUV()
897 arraySize = (y + height - 1) * actualPitch + (x + width) * tjPixelSize[pf]; in TJDecompressor_decodeYUV()
926 &dstBuf[y * actualPitch + x * tjPixelSize[pf]], width, in TJDecompressor_decodeYUV()
927 pitch, height, pf, flags) == -1) in TJDecompressor_decodeYUV()
947 jint width, jint pitch, jint height, jint pf, jint flags) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decodeYUV___3_3B_3I_3II_3BIIIIIII() argument
950 subsamp, dst, 1, x, y, width, pitch, height, pf, in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decodeYUV___3_3B_3I_3II_3BIIIIIII()
958 jint width, jint stride, jint height, jint pf, jint flags) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decodeYUV___3_3B_3I_3II_3IIIIIIII() argument
960 if (pf < 0 || pf >= org_libjpegturbo_turbojpeg_TJ_NUMPF) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decodeYUV___3_3B_3I_3II_3IIIIIIII()
962 if (tjPixelSize[pf] != sizeof(jint)) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decodeYUV___3_3B_3I_3II_3IIIIIIII()
967 stride * sizeof(jint), height, pf, flags); in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decodeYUV___3_3B_3I_3II_3IIIIIIII()