summaryrefslogtreecommitdiff
path: root/jpegutils/jpegint-8a.h
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-10-27 17:41:34 +0200
committerraveit65 <[email protected]>2021-11-20 17:09:50 +0100
commit3bd33d4b89dd74b5f523957d092acfdf49410280 (patch)
treee5db530b0c9d191a6ceb049be4f0815e48b5d020 /jpegutils/jpegint-8a.h
parent785eb88e75c2da2dadfc1aca869761ece725abad (diff)
downloadeom-3bd33d4b89dd74b5f523957d092acfdf49410280.tar.bz2
eom-3bd33d4b89dd74b5f523957d092acfdf49410280.tar.xz
Use a blank line at most
Diffstat (limited to 'jpegutils/jpegint-8a.h')
-rw-r--r--jpegutils/jpegint-8a.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/jpegutils/jpegint-8a.h b/jpegutils/jpegint-8a.h
index 0c27a4e..142f311 100644
--- a/jpegutils/jpegint-8a.h
+++ b/jpegutils/jpegint-8a.h
@@ -11,7 +11,6 @@
* applications using the library shouldn't need to include this file.
*/
-
/* Declarations for both compression & decompression */
typedef enum { /* Operating modes for buffer controllers */
@@ -39,7 +38,6 @@ typedef enum { /* Operating modes for buffer controllers */
#define DSTATE_RDCOEFS 209 /* reading file in jpeg_read_coefficients */
#define DSTATE_STOPPING 210 /* looking for EOI in jpeg_finish_decompress */
-
/* Declarations for compression modules */
/* Master control module */
@@ -133,7 +131,6 @@ struct jpeg_marker_writer {
JMETHOD(void, write_marker_byte, (j_compress_ptr cinfo, int val));
};
-
/* Declarations for decompression modules */
/* Master control module */
@@ -259,7 +256,6 @@ struct jpeg_color_quantizer {
JMETHOD(void, new_color_map, (j_decompress_ptr cinfo));
};
-
/* Miscellaneous useful macros */
#undef MAX
@@ -267,7 +263,6 @@ struct jpeg_color_quantizer {
#undef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
-
/* We assume that right shift corresponds to signed division by 2 with
* rounding towards minus infinity. This is correct for typical "arithmetic
* shift" instructions that shift in copies of the sign bit. But some
@@ -289,7 +284,6 @@ struct jpeg_color_quantizer {
#define RIGHT_SHIFT(x,shft) ((x) >> (shft))
#endif
-
/* Short forms of external names for systems with brain-damaged linkers. */
#ifdef NEED_SHORT_EXTERNAL_NAMES
@@ -335,7 +329,6 @@ struct jpeg_color_quantizer {
#define jpeg_aritab jAriTab
#endif /* NEED_SHORT_EXTERNAL_NAMES */
-
/* Compression module initialization routines */
EXTERN(void) jinit_compress_master JPP((j_compress_ptr cinfo));
EXTERN(void) jinit_c_master_control JPP((j_compress_ptr cinfo,