From 0c0df2d0c7cc20d79cd1fc77e43f36bce86e382f Mon Sep 17 00:00:00 2001 From: DRC Date: Mon, 16 Jan 2023 16:52:46 -0600 Subject: [PATCH] TJDecompressor.java: "YUV" = "planar YUV" (Oversight from 9a146f0f23b01869e1bf7c478e12b43f83d59c32) --- java/doc/index-all.html | 7 ++++--- .../org/libjpegturbo/turbojpeg/TJDecompressor.html | 14 ++++++++------ .../org/libjpegturbo/turbojpeg/TJDecompressor.java | 7 ++++--- 3 files changed, 16 insertions(+), 12 deletions(-) diff --git a/java/doc/index-all.html b/java/doc/index-all.html index df8e653f..02245366 100644 --- a/java/doc/index-all.html +++ b/java/doc/index-all.html @@ -195,9 +195,10 @@
decompress(int, int, int, int) - Method in class org.libjpegturbo.turbojpeg.TJDecompressor
-
Decompress the JPEG source image or decode the YUV source image associated - with this decompressor instance and return a BufferedImage - instance containing the packed-pixel decompressed/decoded image.
+
Decompress the JPEG source image or decode the planar YUV source image + associated with this decompressor instance and return a + BufferedImage instance containing the packed-pixel + decompressed/decoded image.
decompressToYUV(YUVImage, int) - Method in class org.libjpegturbo.turbojpeg.TJDecompressor
diff --git a/java/doc/org/libjpegturbo/turbojpeg/TJDecompressor.html b/java/doc/org/libjpegturbo/turbojpeg/TJDecompressor.html index cc7eb628..3f0baffb 100644 --- a/java/doc/org/libjpegturbo/turbojpeg/TJDecompressor.html +++ b/java/doc/org/libjpegturbo/turbojpeg/TJDecompressor.html @@ -281,9 +281,10 @@ implements java.io.Closeable int desiredHeight, int bufferedImageType, int flags) -
Decompress the JPEG source image or decode the YUV source image associated - with this decompressor instance and return a BufferedImage - instance containing the packed-pixel decompressed/decoded image.
+
Decompress the JPEG source image or decode the planar YUV source image + associated with this decompressor instance and return a + BufferedImage instance containing the packed-pixel + decompressed/decoded image.
@@ -1160,9 +1161,10 @@ public byte[] decompressToYUV(int flags) int bufferedImageType, int flags) throws TJException -
Decompress the JPEG source image or decode the YUV source image associated - with this decompressor instance and return a BufferedImage - instance containing the packed-pixel decompressed/decoded image.
+
Decompress the JPEG source image or decode the planar YUV source image + associated with this decompressor instance and return a + BufferedImage instance containing the packed-pixel + decompressed/decoded image.
Parameters:
desiredWidth - see decompress(byte[], int, int, int, int, int, int, int) for description
desiredHeight - see diff --git a/java/org/libjpegturbo/turbojpeg/TJDecompressor.java b/java/org/libjpegturbo/turbojpeg/TJDecompressor.java index e5ee9cf2..c1ec6a7e 100644 --- a/java/org/libjpegturbo/turbojpeg/TJDecompressor.java +++ b/java/org/libjpegturbo/turbojpeg/TJDecompressor.java @@ -837,9 +837,10 @@ public class TJDecompressor implements Closeable { } /** - * Decompress the JPEG source image or decode the YUV source image associated - * with this decompressor instance and return a BufferedImage - * instance containing the packed-pixel decompressed/decoded image. + * Decompress the JPEG source image or decode the planar YUV source image + * associated with this decompressor instance and return a + * BufferedImage instance containing the packed-pixel + * decompressed/decoded image. * * @param desiredWidth see * {@link #decompress(byte[], int, int, int, int, int, int, int)} for