summaryrefslogtreecommitdiff
path: root/jpegutils/transupp-6b.c
diff options
context:
space:
mode:
Diffstat (limited to 'jpegutils/transupp-6b.c')
-rw-r--r--jpegutils/transupp-6b.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/jpegutils/transupp-6b.c b/jpegutils/transupp-6b.c
index 2bb9133..7edd4de 100644
--- a/jpegutils/transupp-6b.c
+++ b/jpegutils/transupp-6b.c
@@ -59,7 +59,6 @@ enum {
((cinfo)->err->msg_code = (code), \
(*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
-
static long
jround_up (long a, long b)
/* Compute a rounded up to next multiple of b, ie, ceil(a/b)*b */
@@ -69,7 +68,6 @@ jround_up (long a, long b)
return a - (a % b);
}
-
static void
jcopy_block_row (JBLOCKROW input_row, JBLOCKROW output_row,
JDIMENSION num_blocks)
@@ -85,7 +83,6 @@ jcopy_block_row (JBLOCKROW input_row, JBLOCKROW output_row,
}
}
-
/*
* Lossless image transformation routines. These routines work on DCT
* coefficient arrays and thus do not require any lossy decompression
@@ -123,7 +120,6 @@ jcopy_block_row (JBLOCKROW input_row, JBLOCKROW output_row,
* dimensions and ignore the source's.
*/
-
static void
do_flip_h (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
jvirt_barray_ptr *src_coef_arrays)
@@ -172,7 +168,6 @@ do_flip_h (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
}
}
-
static void
do_flip_v (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
jvirt_barray_ptr *src_coef_arrays,
@@ -243,7 +238,6 @@ do_flip_v (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
}
}
-
static void
do_transpose (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
jvirt_barray_ptr *src_coef_arrays,
@@ -287,7 +281,6 @@ do_transpose (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
}
}
-
static void
do_rot_90 (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
jvirt_barray_ptr *src_coef_arrays,
@@ -351,7 +344,6 @@ do_rot_90 (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
}
}
-
static void
do_rot_270 (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
jvirt_barray_ptr *src_coef_arrays,
@@ -415,7 +407,6 @@ do_rot_270 (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
}
}
-
static void
do_rot_180 (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
jvirt_barray_ptr *src_coef_arrays,
@@ -516,7 +507,6 @@ do_rot_180 (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
}
}
-
static void
do_transverse (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
jvirt_barray_ptr *src_coef_arrays,
@@ -615,7 +605,6 @@ do_transverse (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
}
}
-
/* Request any required workspace.
*
* We allocate the workspace virtual arrays from the source decompression
@@ -695,7 +684,6 @@ jtransform_request_workspace (j_decompress_ptr srcinfo,
info->workspace_coef_arrays = coef_arrays;
}
-
/* Transpose destination image parameters */
static void
@@ -735,7 +723,6 @@ transpose_critical_parameters (j_compress_ptr dstinfo)
}
}
-
/* Trim off any partial iMCUs on the indicated destination edge */
static void
@@ -778,7 +765,6 @@ trim_bottom_edge (j_compress_ptr dstinfo)
dstinfo->image_height = MCU_rows * (max_v_samp_factor * DCTSIZE);
}
-
/* Adjust output image parameters as needed.
*
* This must be called after jpeg_copy_critical_parameters()
@@ -867,7 +853,6 @@ jtransform_adjust_parameters (j_decompress_ptr srcinfo,
return src_coef_arrays;
}
-
/* Execute the actual transformation, if any.
*
* This must be called *after* jpeg_write_coefficients, because it depends
@@ -912,7 +897,6 @@ jtransform_execute_transformation (j_decompress_ptr srcinfo,
}
}
-
/* Setup decompression object to save desired markers in memory.
* This must be called before jpeg_read_header() to have the desired effect.
*/
@@ -988,5 +972,4 @@ jcopy_markers_execute (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
}
}
-
#endif /* HAVE_LIBJPEG */