Home
last modified time | relevance | path

Searched refs:YUVImage (Results 1 – 7 of 7) sorted by relevance

/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
DTJCompressor.java269 public void setSourceImage(YUVImage srcImage) throws TJException { in setSourceImage()
426 public void encodeYUV(YUVImage dstImage, int flags) throws TJException { in encodeYUV()
459 YUVImage dstYUVImage = new YUVImage(dstBuf, srcWidth, 4, srcHeight, in encodeYUV()
481 public YUVImage encodeYUV(int pad, int flags) throws TJException { in encodeYUV()
486 YUVImage dstYUVImage = new YUVImage(srcWidth, pad, srcHeight, subsamp); in encodeYUV()
512 public YUVImage encodeYUV(int[] strides, int flags) throws TJException { in encodeYUV()
515 YUVImage dstYUVImage = new YUVImage(srcWidth, strides, srcHeight, subsamp); in encodeYUV()
528 YUVImage dstYUVImage = new YUVImage(srcWidth, 4, srcHeight, subsamp); in encodeYUV()
671 private YUVImage srcYUVImage = null;
DTJDecompressor.java86 public TJDecompressor(YUVImage yuvImage) throws TJException { in TJDecompressor()
128 public void setSourceImage(YUVImage srcImage) { in setSourceImage()
476 public void decompressToYUV(YUVImage dstImage, int flags) in decompressToYUV()
503 YUVImage dstYUVImage = new YUVImage(dstBuf, jpegWidth, 4, jpegHeight, in decompressToYUV()
546 public YUVImage decompressToYUV(int desiredWidth, int[] strides, in decompressToYUV()
560 YUVImage dstYUVImage = new YUVImage(scaledWidth, null, scaledHeight, in decompressToYUV()
600 public YUVImage decompressToYUV(int desiredWidth, int pad, int desiredHeight, in decompressToYUV()
613 YUVImage dstYUVImage = new YUVImage(scaledWidth, pad, scaledHeight, in decompressToYUV()
625 YUVImage dstYUVImage = new YUVImage(jpegWidth, 4, jpegHeight, jpegSubsamp); in decompressToYUV()
925 protected YUVImage yuvImage = null;
DYUVImage.java66 public class YUVImage { class
90 public YUVImage(int width, int[] strides, int height, int subsamp) { in YUVImage() method in YUVImage
108 public YUVImage(int width, int pad, int height, int subsamp) { in YUVImage() method in YUVImage
147 public YUVImage(byte[][] planes, int[] offsets, int width, int[] strides, in YUVImage() method in YUVImage
173 public YUVImage(byte[] yuvImage, int width, int pad, int height, in YUVImage() method in YUVImage
/external/libjpeg-turbo/java/
DTJUnitTest.java671 YUVImage yuvImage = tjc.encodeYUV(pad, flags); in compTest()
736 YUVImage yuvImage = tjd.decompressToYUV(scaledWidth, pad, scaledHeight, in decompTest()
843 YUVImage dstImage = null; in bufSizeTest()
858 dstImage = new YUVImage(w, pad, h, subsamp); in bufSizeTest()
874 dstImage = new YUVImage(h, pad, w, subsamp); in bufSizeTest()
DCMakeLists.txt26 org/libjpegturbo/turbojpeg/YUVImage.java
DTJBench.java173 YUVImage yuvImage = null; in decomp()
194 yuvImage = new YUVImage(width, yuvPad, height, subsamp); in decomp()
337 YUVImage yuvImage = null; in fullTest()
374 yuvImage = new YUVImage(tilew, yuvPad, tileh, subsamp); in fullTest()
/external/libjpeg-turbo/
DChangeLog.md269 when using the YUVImage constructor that creates an instance backed by separate