Home | History | Annotate | Download | only in turbojpeg

Lines Matching defs:dstBuf

312    * @param dstBuf buffer that will receive the decompressed/decoded image.
371 public void decompress(byte[] dstBuf, int x, int y, int desiredWidth,
376 if (dstBuf == null || x < 0 || y < 0 || pitch < 0 ||
382 yuvImage.getStrides(), yuvImage.getSubsamp(), dstBuf, x, y,
387 decompress(jpegBuf, jpegBufSize, dstBuf, x, y, desiredWidth, pitch,
390 decompress(jpegBuf, jpegBufSize, dstBuf
400 public void decompress(byte[] dstBuf, int desiredWidth, int pitch,
403 decompress(dstBuf, 0, 0, desiredWidth, pitch, desiredHeight, pixelFormat,
490 public void decompressToYUV(byte[] dstBuf, int flags) throws TJException {
491 YUVImage dstImage = new YUVImage(dstBuf, jpegWidth, 4, jpegHeight,
622 * @param dstBuf buffer that will receive the decompressed/decoded image.
679 public void decompress(int[] dstBuf, int x, int y, int desiredWidth,
684 if (dstBuf == null || x < 0 || y < 0 || stride < 0 ||
690 yuvImage.getStrides(), yuvImage.getSubsamp(), dstBuf, x, y,
694 decompress(jpegBuf, jpegBufSize, dstBuf, x, y, desiredWidth, stride,
863 private native void decompress(byte[] srcBuf, int size, byte[] dstBuf,
867 private native void decompress(byte[] srcBuf, int size, byte[] dstBuf, int x,
872 private native void decompress(byte[] srcBuf, int size, int[] dstBuf,
876 private native void decompress(byte[] srcBuf, int size, int[] dstBuf, int x,
881 private native void decompressToYUV(byte[] srcBuf, int size, byte[] dstBuf,
889 int[] srcStrides, int subsamp, byte[] dstBuf, int x, int y, int width,
893 int[] srcStrides, int subsamp, int[] dstBuf, int x, int y, int width,