Use consistent/modern code formatting for dbl ptrs

This commit is contained in:
DRC
2016-02-19 10:56:13 -06:00
parent d4be42360c
commit f76c01d0bd
5 changed files with 5 additions and 5 deletions

View File

@@ -220,7 +220,7 @@ start_pass_huff (j_compress_ptr cinfo, boolean gather_statistics)
GLOBAL(void) GLOBAL(void)
jpeg_make_c_derived_tbl (j_compress_ptr cinfo, boolean isDC, int tblno, jpeg_make_c_derived_tbl (j_compress_ptr cinfo, boolean isDC, int tblno,
c_derived_tbl ** pdtbl) c_derived_tbl **pdtbl)
{ {
JHUFF_TBL *htbl; JHUFF_TBL *htbl;
c_derived_tbl *dtbl; c_derived_tbl *dtbl;

View File

@@ -34,7 +34,7 @@ jpeg_add_quant_table (j_compress_ptr cinfo, int which_tbl,
* are limited to 1..255 for JPEG baseline compatibility. * are limited to 1..255 for JPEG baseline compatibility.
*/ */
{ {
JQUANT_TBL ** qtblptr; JQUANT_TBL **qtblptr;
int i; int i;
long temp; long temp;

View File

@@ -67,7 +67,7 @@ GLOBAL(void)
jpeg_copy_critical_parameters (j_decompress_ptr srcinfo, jpeg_copy_critical_parameters (j_decompress_ptr srcinfo,
j_compress_ptr dstinfo) j_compress_ptr dstinfo)
{ {
JQUANT_TBL ** qtblptr; JQUANT_TBL **qtblptr;
jpeg_component_info *incomp, *outcomp; jpeg_component_info *incomp, *outcomp;
JQUANT_TBL *c_quant, *slot_quant; JQUANT_TBL *c_quant, *slot_quant;
int tblno, ci, coefi; int tblno, ci, coefi;

View File

@@ -153,7 +153,7 @@ start_pass_huff_decoder (j_decompress_ptr cinfo)
GLOBAL(void) GLOBAL(void)
jpeg_make_d_derived_tbl (j_decompress_ptr cinfo, boolean isDC, int tblno, jpeg_make_d_derived_tbl (j_decompress_ptr cinfo, boolean isDC, int tblno,
d_derived_tbl ** pdtbl) d_derived_tbl **pdtbl)
{ {
JHUFF_TBL *htbl; JHUFF_TBL *htbl;
d_derived_tbl *dtbl; d_derived_tbl *dtbl;

View File

@@ -71,7 +71,7 @@ typedef struct _rle_source_struct {
jvirt_sarray_ptr image; /* virtual array to hold the image */ jvirt_sarray_ptr image; /* virtual array to hold the image */
JDIMENSION row; /* current row # in the virtual array */ JDIMENSION row; /* current row # in the virtual array */
rle_hdr header; /* Input file information */ rle_hdr header; /* Input file information */
rle_pixel** rle_row; /* holds a row returned by rle_getrow() */ rle_pixel **rle_row; /* holds a row returned by rle_getrow() */
} rle_source_struct; } rle_source_struct;