aboutsummaryrefslogtreecommitdiff
path: root/java/org/libjpegturbo/turbojpeg/TJ.java
diff options
context:
space:
mode:
authordcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2013-04-27 20:55:45 +0000
committerdcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2013-04-27 20:55:45 +0000
commit3eaf0288a7b01dcb826b7f4c42b46bdad08d14a2 (patch)
tree0455bc47ecbacc0be4e2b2783dc91081f9ef4357 /java/org/libjpegturbo/turbojpeg/TJ.java
parentc0990aafb512c7c94914d340c7d867cf047fbe84 (diff)
Correct misuse of the word "pitch" + more code formatting tweaks
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@971 632fc199-4ca6-4c93-a231-07263d6284db
Diffstat (limited to 'java/org/libjpegturbo/turbojpeg/TJ.java')
-rw-r--r--java/org/libjpegturbo/turbojpeg/TJ.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/java/org/libjpegturbo/turbojpeg/TJ.java b/java/org/libjpegturbo/turbojpeg/TJ.java
index f182f96..9f7c682 100644
--- a/java/org/libjpegturbo/turbojpeg/TJ.java
+++ b/java/org/libjpegturbo/turbojpeg/TJ.java
@@ -350,8 +350,7 @@ public final class TJ {
* @return the size of the buffer (in bytes) required to hold a YUV planar
* image with the given width, height, and level of chrominance subsampling
*/
- public static native int bufSizeYUV(int width, int height,
- int subsamp)
+ public static native int bufSizeYUV(int width, int height, int subsamp)
throws Exception;
/**