Home
last modified time | relevance | path

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

/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
DTJCompressor.java267 public void setSourceImage(YUVImage srcImage) throws TJException { in setSourceImage()
422 public void encodeYUV(YUVImage dstImage, int flags) throws TJException { in encodeYUV()
454 YUVImage yuvImage = new YUVImage(dstBuf, srcWidth, 4, srcHeight, subsamp); in encodeYUV()
475 public YUVImage encodeYUV(int pad, int flags) throws TJException { in encodeYUV()
480 YUVImage yuvImage = new YUVImage(srcWidth, pad, srcHeight, subsamp); in encodeYUV()
506 public YUVImage encodeYUV(int[] strides, int flags) throws TJException { in encodeYUV()
509 YUVImage yuvImage = new YUVImage(srcWidth, strides, srcHeight, subsamp); in encodeYUV()
521 YUVImage yuvImage = new YUVImage(srcWidth, 4, srcHeight, subsamp); in encodeYUV()
652 private YUVImage srcYUVImage = null;
DTJDecompressor.java85 public TJDecompressor(YUVImage yuvImage) throws TJException { in TJDecompressor()
126 public void setSourceImage(YUVImage srcImage) { in setSourceImage()
465 public void decompressToYUV(YUVImage dstImage, int flags) in decompressToYUV()
491 YUVImage dstImage = new YUVImage(dstBuf, jpegWidth, 4, jpegHeight, in decompressToYUV()
534 public YUVImage decompressToYUV(int desiredWidth, int[] strides, in decompressToYUV()
548 YUVImage yuvImage = new YUVImage(scaledWidth, null, scaledHeight, in decompressToYUV()
588 public YUVImage decompressToYUV(int desiredWidth, int pad, int desiredHeight, in decompressToYUV()
601 YUVImage yuvImage = new YUVImage(scaledWidth, pad, scaledHeight, in decompressToYUV()
612 YUVImage dstImage = new YUVImage(jpegWidth, 4, jpegHeight, jpegSubsamp); in decompressToYUV()
903 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/
DMakefile.am17 org/libjpegturbo/turbojpeg/YUVImage.java \
40 org/libjpegturbo/turbojpeg/YUVImage.class \
DCMakeLists.txt12 org/libjpegturbo/turbojpeg/YUVImage
DTJUnitTest.java669 YUVImage yuvImage = tjc.encodeYUV(pad, flags); in compTest()
735 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()
DTJBench.java145 YUVImage yuvImage = null; in decomp()
165 yuvImage = new YUVImage(width, yuvpad, height, subsamp); in decomp()
293 YUVImage yuvImage = null; in fullTest()
329 yuvImage = new YUVImage(tilew, yuvpad, tileh, subsamp); in fullTest()
/external/libjpeg-turbo/
DChangeLog.md7 when using the YUVImage constructor that creates an instance backed by separate