]> granicus.if.org Git - libjpeg-turbo/commitdiff
Tabs to spaces in turbojpeg.h
authorDRC <information@libjpeg-turbo.org>
Thu, 13 Aug 2015 23:05:32 +0000 (18:05 -0500)
committerDRC <information@libjpeg-turbo.org>
Thu, 13 Aug 2015 23:05:32 +0000 (18:05 -0500)
This was a formatting regression in 1.4.x introduced when the new
TurboJPEG functions were added.

turbojpeg.h

index 1f394fa2b6fbeb5ea65d42b06dfaaf6162884b47..d5c624e10c977965bcdcb4183e1e050879cb8f48 100644 (file)
@@ -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);
 
 
 /**