aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDRC <information@libjpeg-turbo.org>2015-08-13 18:05:32 -0500
committerDRC <information@libjpeg-turbo.org>2015-08-13 18:05:32 -0500
commitb1682fb7c8441a2fa9090b54f97b28a8a7c6d9cf (patch)
treecb25a469ccbd544132680a9325cdd5687f54597a
parent7170d9e0e5a94d1f43ef6d6b5ad21e3eb0e06c13 (diff)
downloadlibjpeg-turbo-b1682fb7c8441a2fa9090b54f97b28a8a7c6d9cf.tar.gz
Tabs to spaces in turbojpeg.h
This was a formatting regression in 1.4.x introduced when the new TurboJPEG functions were added.
-rw-r--r--turbojpeg.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/turbojpeg.h b/turbojpeg.h
index 1f394fa2..d5c624e1 100644
--- a/turbojpeg.h
+++ b/turbojpeg.h
@@ -807,8 +807,8 @@ DLLEXPORT int DLLCALL tjCompressFromYUV(tjhandle handle, unsigned char *srcBuf,
* @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
*/
DLLEXPORT int DLLCALL tjCompressFromYUVPlanes(tjhandle handle,
- unsigned char **srcPlanes, int width, int *strides, int height, int subsamp,
- unsigned char **jpegBuf, unsigned long *jpegSize, int jpegQual, int flags);
+ unsigned char **srcPlanes, int width, int *strides, int height, int subsamp,
+ unsigned char **jpegBuf, unsigned long *jpegSize, int jpegQual, int flags);
/**
@@ -880,7 +880,7 @@ DLLEXPORT unsigned long DLLCALL tjBufSizeYUV2(int width, int pad, int height,
* plane, or -1 if the arguments are out of bounds.
*/
DLLEXPORT unsigned long DLLCALL tjPlaneSizeYUV(int componentID, int width,
- int stride, int height, int subsamp);
+ int stride, int height, int subsamp);
/**
@@ -1292,8 +1292,8 @@ DLLEXPORT int DLLCALL tjDecompressToYUVPlanes(tjhandle handle,
* @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
*/
DLLEXPORT int DLLCALL tjDecodeYUV(tjhandle handle, unsigned char *srcBuf,
- int pad, int subsamp, unsigned char *dstBuf, int width, int pitch,
- int height, int pixelFormat, int flags);
+ int pad, int subsamp, unsigned char *dstBuf, int width, int pitch,
+ int height, int pixelFormat, int flags);
/**
@@ -1349,8 +1349,8 @@ DLLEXPORT int DLLCALL tjDecodeYUV(tjhandle handle, unsigned char *srcBuf,
* @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
*/
DLLEXPORT int DLLCALL tjDecodeYUVPlanes(tjhandle handle,
- unsigned char **srcPlanes, int *strides, int subsamp, unsigned char *dstBuf,
- int width, int pitch, int height, int pixelFormat, int flags);
+ unsigned char **srcPlanes, int *strides, int subsamp, unsigned char *dstBuf,
+ int width, int pitch, int height, int pixelFormat, int flags);
/**