]> granicus.if.org Git - libjpeg-turbo/commitdiff
TurboJPEG C: Code formatting tweaks
authorDRC <information@libjpeg-turbo.org>
Mon, 13 Nov 2017 14:15:50 +0000 (08:15 -0600)
committerDRC <information@libjpeg-turbo.org>
Mon, 13 Nov 2017 21:14:12 +0000 (15:14 -0600)
turbojpeg.c
turbojpeg.h

index c9bc6197b86b64ef79b5b401d79a2ce9d41692ca..a89359956c4b585d6f96cda5b5b4bfee6323f3d1 100644 (file)
@@ -790,8 +790,7 @@ DLLEXPORT int DLLCALL tjCompress2(tjhandle handle, const unsigned char *srcBuf,
        if(setjmp(this->jerr.setjmp_buffer))
        {
                /* If we get here, the JPEG code has signaled an error. */
-               retval=-1;
-               goto bailout;
+               retval=-1;  goto bailout;
        }
 
        cinfo->image_width=width;
@@ -907,8 +906,7 @@ DLLEXPORT int DLLCALL tjEncodeYUVPlanes(tjhandle handle,
        if(setjmp(this->jerr.setjmp_buffer))
        {
                /* If we get here, the JPEG code has signaled an error. */
-               retval=-1;
-               goto bailout;
+               retval=-1;  goto bailout;
        }
 
        cinfo->image_width=width;
@@ -990,8 +988,7 @@ DLLEXPORT int DLLCALL tjEncodeYUVPlanes(tjhandle handle,
        if(setjmp(this->jerr.setjmp_buffer))
        {
                /* If we get here, the JPEG code has signaled an error. */
-               retval=-1;
-               goto bailout;
+               retval=-1;  goto bailout;
        }
 
        for(row=0; row<ph0; row+=cinfo->max_v_samp_factor)
@@ -1108,8 +1105,7 @@ DLLEXPORT int DLLCALL tjCompressFromYUVPlanes(tjhandle handle,
        if(setjmp(this->jerr.setjmp_buffer))
        {
                /* If we get here, the JPEG code has signaled an error. */
-               retval=-1;
-               goto bailout;
+               retval=-1;  goto bailout;
        }
 
        cinfo->image_width=width;
@@ -1171,8 +1167,7 @@ DLLEXPORT int DLLCALL tjCompressFromYUVPlanes(tjhandle handle,
        if(setjmp(this->jerr.setjmp_buffer))
        {
                /* If we get here, the JPEG code has signaled an error. */
-               retval=-1;
-               goto bailout;
+               retval=-1;  goto bailout;
        }
 
        for(row=0; row<(int)cinfo->image_height;
@@ -1404,8 +1399,7 @@ DLLEXPORT int DLLCALL tjDecompress2(tjhandle handle,
        if(setjmp(this->jerr.setjmp_buffer))
        {
                /* If we get here, the JPEG code has signaled an error. */
-               retval=-1;
-               goto bailout;
+               retval=-1;  goto bailout;
        }
 
        jpeg_mem_src_tj(dinfo, jpegBuf, jpegSize);
@@ -1456,8 +1450,7 @@ DLLEXPORT int DLLCALL tjDecompress2(tjhandle handle,
        if(setjmp(this->jerr.setjmp_buffer))
        {
                /* If we get here, the JPEG code has signaled an error. */
-               retval=-1;
-               goto bailout;
+               retval=-1;  goto bailout;
        }
        for(i=0; i<(int)dinfo->output_height; i++)
        {
@@ -1589,8 +1582,7 @@ DLLEXPORT int DLLCALL tjDecodeYUVPlanes(tjhandle handle,
        if(setjmp(this->jerr.setjmp_buffer))
        {
                /* If we get here, the JPEG code has signaled an error. */
-               retval=-1;
-               goto bailout;
+               retval=-1;  goto bailout;
        }
 
        if(pixelFormat==TJPF_CMYK)
@@ -1684,8 +1676,7 @@ DLLEXPORT int DLLCALL tjDecodeYUVPlanes(tjhandle handle,
        if(setjmp(this->jerr.setjmp_buffer))
        {
                /* If we get here, the JPEG code has signaled an error. */
-               retval=-1;
-               goto bailout;
+               retval=-1;  goto bailout;
        }
 
        for(row=0; row<ph0; row+=dinfo->max_v_samp_factor)
@@ -1789,8 +1780,7 @@ DLLEXPORT int DLLCALL tjDecompressToYUVPlanes(tjhandle handle,
        if(setjmp(this->jerr.setjmp_buffer))
        {
                /* If we get here, the JPEG code has signaled an error. */
-               retval=-1;
-               goto bailout;
+               retval=-1;  goto bailout;
        }
 
        if(!this->headerRead)
@@ -1871,8 +1861,7 @@ DLLEXPORT int DLLCALL tjDecompressToYUVPlanes(tjhandle handle,
        if(setjmp(this->jerr.setjmp_buffer))
        {
                /* If we get here, the JPEG code has signaled an error. */
-               retval=-1;
-               goto bailout;
+               retval=-1;  goto bailout;
        }
 
        if(flags&TJFLAG_FASTUPSAMPLE) dinfo->do_fancy_upsampling=FALSE;
@@ -2060,8 +2049,7 @@ DLLEXPORT int DLLCALL tjTransform(tjhandle handle,
        if(setjmp(this->jerr.setjmp_buffer))
        {
                /* If we get here, the JPEG code has signaled an error. */
-               retval=-1;
-               goto bailout;
+               retval=-1;  goto bailout;
        }
 
        jpeg_mem_src_tj(dinfo, jpegBuf, jpegSize);
index f60caf8acec6722894f9f04fc7a8b710d89573b4..410e98a8ba2f5829c3f131f0dfe1f02441aa6075 100644 (file)
@@ -275,7 +275,6 @@ static const int tjGreenOffset[TJ_NUMPF] = {1, 1, 1, 1, 2, 2, 0, 1, 1, 2, 2, -1}
  * then the blue component will be <tt>pixel[tjBlueOffset[TJ_BGRX]]</tt>.
  */
 static const int tjBlueOffset[TJ_NUMPF] = {2, 0, 2, 0, 1, 3, 0, 2, 0, 1, 3, -1};
-
 /**
  * Pixel size (in bytes) for a given pixel format.
  */