Index: jdarith.c |
diff --git a/jdarith.c b/jdarith.c |
index 9b2972856f7b10a0fd53a7533c567dba314ea083..98d5fad1525280611a50cee048961aec03537875 100644 |
--- a/jdarith.c |
+++ b/jdarith.c |
@@ -1,11 +1,12 @@ |
/* |
* jdarith.c |
* |
- * This file is part of the Independent JPEG Group's software: |
- * Developed 1997-2009 by Guido Vollbeding. |
+ * This file was part of the Independent JPEG Group's software: |
+ * Developed 1997-2015 by Guido Vollbeding. |
* libjpeg-turbo Modifications: |
* Copyright (C) 2015, D. R. Commander. |
- * For conditions of distribution and use, see the accompanying README file. |
+ * For conditions of distribution and use, see the accompanying README.ijg |
+ * file. |
* |
* This file contains portable arithmetic entropy decoding routines for JPEG |
* (implementing the ISO/IEC IS 10918-1 and CCITT Recommendation ITU-T T.81). |
@@ -25,8 +26,8 @@ |
typedef struct { |
struct jpeg_entropy_decoder pub; /* public fields */ |
- INT32 c; /* C register, base of coding interval + input bit buffer */ |
- INT32 a; /* A register, normalized size of coding interval */ |
+ JLONG c; /* C register, base of coding interval + input bit buffer */ |
+ JLONG a; /* A register, normalized size of coding interval */ |
int ct; /* bit shift counter, # of bits left in bit buffer part of C */ |
/* init: ct = -16 */ |
/* run: ct = 0..7 */ |
@@ -34,17 +35,17 @@ typedef struct { |
int last_dc_val[MAX_COMPS_IN_SCAN]; /* last DC coef for each component */ |
int dc_context[MAX_COMPS_IN_SCAN]; /* context index for DC conditioning */ |
- unsigned int restarts_to_go; /* MCUs left in this restart interval */ |
+ unsigned int restarts_to_go; /* MCUs left in this restart interval */ |
/* Pointers to statistics areas (these workspaces have image lifespan) */ |
- unsigned char * dc_stats[NUM_ARITH_TBLS]; |
- unsigned char * ac_stats[NUM_ARITH_TBLS]; |
+ unsigned char *dc_stats[NUM_ARITH_TBLS]; |
+ unsigned char *ac_stats[NUM_ARITH_TBLS]; |
/* Statistics bin for coding with fixed probability 0.5 */ |
unsigned char fixed_bin[4]; |
} arith_entropy_decoder; |
-typedef arith_entropy_decoder * arith_entropy_ptr; |
+typedef arith_entropy_decoder *arith_entropy_ptr; |
/* The following two definitions specify the allocation chunk size |
* for the statistics area. |
@@ -67,7 +68,7 @@ LOCAL(int) |
get_byte (j_decompress_ptr cinfo) |
/* Read next input byte; we do not support suspension in this module. */ |
{ |
- struct jpeg_source_mgr * src = cinfo->src; |
+ struct jpeg_source_mgr *src = cinfo->src; |
if (src->bytes_in_buffer == 0) |
if (! (*src->fill_input_buffer) (cinfo)) |
@@ -96,7 +97,7 @@ get_byte (j_decompress_ptr cinfo) |
* (instead of fixed) with the bit shift counter CT. |
* Thus, we also need only one (variable instead of |
* fixed size) shift for the LPS/MPS decision, and |
- * we can get away with any renormalization update |
+ * we can do away with any renormalization update |
* of C (except for new data insertion, of course). |
* |
* I've also introduced a new scheme for accessing |
@@ -109,7 +110,7 @@ arith_decode (j_decompress_ptr cinfo, unsigned char *st) |
{ |
register arith_entropy_ptr e = (arith_entropy_ptr) cinfo->entropy; |
register unsigned char nl, nm; |
- register INT32 qe, temp; |
+ register JLONG qe, temp; |
register int sv, data; |
/* Renormalization & data input per section D.2.6 */ |
@@ -117,32 +118,32 @@ arith_decode (j_decompress_ptr cinfo, unsigned char *st) |
if (--e->ct < 0) { |
/* Need to fetch next data byte */ |
if (cinfo->unread_marker) |
- data = 0; /* stuff zero data */ |
+ data = 0; /* stuff zero data */ |
else { |
- data = get_byte(cinfo); /* read next input byte */ |
- if (data == 0xFF) { /* zero stuff or marker code */ |
- do data = get_byte(cinfo); |
- while (data == 0xFF); /* swallow extra 0xFF bytes */ |
- if (data == 0) |
- data = 0xFF; /* discard stuffed zero byte */ |
- else { |
- /* Note: Different from the Huffman decoder, hitting |
- * a marker while processing the compressed data |
- * segment is legal in arithmetic coding. |
- * The convention is to supply zero data |
- * then until decoding is complete. |
- */ |
- cinfo->unread_marker = data; |
- data = 0; |
- } |
- } |
+ data = get_byte(cinfo); /* read next input byte */ |
+ if (data == 0xFF) { /* zero stuff or marker code */ |
+ do data = get_byte(cinfo); |
+ while (data == 0xFF); /* swallow extra 0xFF bytes */ |
+ if (data == 0) |
+ data = 0xFF; /* discard stuffed zero byte */ |
+ else { |
+ /* Note: Different from the Huffman decoder, hitting |
+ * a marker while processing the compressed data |
+ * segment is legal in arithmetic coding. |
+ * The convention is to supply zero data |
+ * then until decoding is complete. |
+ */ |
+ cinfo->unread_marker = data; |
+ data = 0; |
+ } |
+ } |
} |
e->c = (e->c << 8) | data; /* insert data into C register */ |
- if ((e->ct += 8) < 0) /* update bit shift counter */ |
- /* Need more initial bytes */ |
- if (++e->ct == 0) |
- /* Got 2 initial bytes -> re-init A and exit loop */ |
- e->a = 0x8000L; /* => e->a = 0x10000L after loop exit */ |
+ if ((e->ct += 8) < 0) /* update bit shift counter */ |
+ /* Need more initial bytes */ |
+ if (++e->ct == 0) |
+ /* Got 2 initial bytes -> re-init A and exit loop */ |
+ e->a = 0x8000L; /* => e->a = 0x10000L after loop exit */ |
} |
e->a <<= 1; |
} |
@@ -151,9 +152,9 @@ arith_decode (j_decompress_ptr cinfo, unsigned char *st) |
* Qe values and probability estimation state machine |
*/ |
sv = *st; |
- qe = jpeg_aritab[sv & 0x7F]; /* => Qe_Value */ |
- nl = (unsigned char) qe & 0xFF; qe >>= 8; /* Next_Index_LPS + Switch_MPS */ |
- nm = (unsigned char) qe & 0xFF; qe >>= 8; /* Next_Index_MPS */ |
+ qe = jpeg_aritab[sv & 0x7F]; /* => Qe_Value */ |
+ nl = qe & 0xFF; qe >>= 8; /* Next_Index_LPS + Switch_MPS */ |
+ nm = qe & 0xFF; qe >>= 8; /* Next_Index_MPS */ |
/* Decode & estimation procedures per sections D.2.4 & D.2.5 */ |
temp = e->a - qe; |
@@ -164,19 +165,19 @@ arith_decode (j_decompress_ptr cinfo, unsigned char *st) |
/* Conditional LPS (less probable symbol) exchange */ |
if (e->a < qe) { |
e->a = qe; |
- *st = (sv & 0x80) ^ nm; /* Estimate_after_MPS */ |
+ *st = (sv & 0x80) ^ nm; /* Estimate_after_MPS */ |
} else { |
e->a = qe; |
- *st = (sv & 0x80) ^ nl; /* Estimate_after_LPS */ |
- sv ^= 0x80; /* Exchange LPS/MPS */ |
+ *st = (sv & 0x80) ^ nl; /* Estimate_after_LPS */ |
+ sv ^= 0x80; /* Exchange LPS/MPS */ |
} |
} else if (e->a < 0x8000L) { |
/* Conditional MPS (more probable symbol) exchange */ |
if (e->a < qe) { |
- *st = (sv & 0x80) ^ nl; /* Estimate_after_LPS */ |
- sv ^= 0x80; /* Exchange LPS/MPS */ |
+ *st = (sv & 0x80) ^ nl; /* Estimate_after_LPS */ |
+ sv ^= 0x80; /* Exchange LPS/MPS */ |
} else { |
- *st = (sv & 0x80) ^ nm; /* Estimate_after_MPS */ |
+ *st = (sv & 0x80) ^ nm; /* Estimate_after_MPS */ |
} |
} |
@@ -193,7 +194,7 @@ process_restart (j_decompress_ptr cinfo) |
{ |
arith_entropy_ptr entropy = (arith_entropy_ptr) cinfo->entropy; |
int ci; |
- jpeg_component_info * compptr; |
+ jpeg_component_info *compptr; |
/* Advance past the RSTn marker */ |
if (! (*cinfo->marker->read_restart_marker) (cinfo)) |
@@ -202,13 +203,13 @@ process_restart (j_decompress_ptr cinfo) |
/* Re-initialize statistics areas */ |
for (ci = 0; ci < cinfo->comps_in_scan; ci++) { |
compptr = cinfo->cur_comp_info[ci]; |
- if (! cinfo->progressive_mode || (cinfo->Ss == 0 && cinfo->Ah == 0)) { |
+ if (!cinfo->progressive_mode || (cinfo->Ss == 0 && cinfo->Ah == 0)) { |
MEMZERO(entropy->dc_stats[compptr->dc_tbl_no], DC_STAT_BINS); |
/* Reset DC predictions to 0 */ |
entropy->last_dc_val[ci] = 0; |
entropy->dc_context[ci] = 0; |
} |
- if (! cinfo->progressive_mode || cinfo->Ss) { |
+ if (!cinfo->progressive_mode || cinfo->Ss) { |
MEMZERO(entropy->ac_stats[compptr->ac_tbl_no], AC_STAT_BINS); |
} |
} |
@@ -216,7 +217,7 @@ process_restart (j_decompress_ptr cinfo) |
/* Reset arithmetic decoding variables */ |
entropy->c = 0; |
entropy->a = 0; |
- entropy->ct = -16; /* force reading 2 initial bytes to fill C */ |
+ entropy->ct = -16; /* force reading 2 initial bytes to fill C */ |
/* Reset restart counter */ |
entropy->restarts_to_go = cinfo->restart_interval; |
@@ -255,7 +256,7 @@ decode_mcu_DC_first (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
entropy->restarts_to_go--; |
} |
- if (entropy->ct == -1) return TRUE; /* if error do nothing */ |
+ if (entropy->ct == -1) return TRUE; /* if error do nothing */ |
/* Outer loop handles each block in the MCU */ |
@@ -279,34 +280,34 @@ decode_mcu_DC_first (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
st += 2; st += sign; |
/* Figure F.23: Decoding the magnitude category of v */ |
if ((m = arith_decode(cinfo, st)) != 0) { |
- st = entropy->dc_stats[tbl] + 20; /* Table F.4: X1 = 20 */ |
- while (arith_decode(cinfo, st)) { |
- if ((m <<= 1) == 0x8000) { |
- WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
- entropy->ct = -1; /* magnitude overflow */ |
- return TRUE; |
- } |
- st += 1; |
- } |
+ st = entropy->dc_stats[tbl] + 20; /* Table F.4: X1 = 20 */ |
+ while (arith_decode(cinfo, st)) { |
+ if ((m <<= 1) == 0x8000) { |
+ WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
+ entropy->ct = -1; /* magnitude overflow */ |
+ return TRUE; |
+ } |
+ st += 1; |
+ } |
} |
/* Section F.1.4.4.1.2: Establish dc_context conditioning category */ |
if (m < (int) ((1L << cinfo->arith_dc_L[tbl]) >> 1)) |
- entropy->dc_context[ci] = 0; /* zero diff category */ |
+ entropy->dc_context[ci] = 0; /* zero diff category */ |
else if (m > (int) ((1L << cinfo->arith_dc_U[tbl]) >> 1)) |
- entropy->dc_context[ci] = 12 + (sign * 4); /* large diff category */ |
+ entropy->dc_context[ci] = 12 + (sign * 4); /* large diff category */ |
else |
- entropy->dc_context[ci] = 4 + (sign * 4); /* small diff category */ |
+ entropy->dc_context[ci] = 4 + (sign * 4); /* small diff category */ |
v = m; |
/* Figure F.24: Decoding the magnitude bit pattern of v */ |
st += 14; |
while (m >>= 1) |
- if (arith_decode(cinfo, st)) v |= m; |
+ if (arith_decode(cinfo, st)) v |= m; |
v += 1; if (sign) v = -v; |
entropy->last_dc_val[ci] += v; |
} |
/* Scale and output the DC coefficient (assumes jpeg_natural_order[0]=0) */ |
- (*block)[0] = (JCOEF) (entropy->last_dc_val[ci] << cinfo->Al); |
+ (*block)[0] = (JCOEF) LEFT_SHIFT(entropy->last_dc_val[ci], cinfo->Al); |
} |
return TRUE; |
@@ -334,7 +335,7 @@ decode_mcu_AC_first (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
entropy->restarts_to_go--; |
} |
- if (entropy->ct == -1) return TRUE; /* if error do nothing */ |
+ if (entropy->ct == -1) return TRUE; /* if error do nothing */ |
/* There is always only one block per MCU */ |
block = MCU_data[0]; |
@@ -345,13 +346,13 @@ decode_mcu_AC_first (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
/* Figure F.20: Decode_AC_coefficients */ |
for (k = cinfo->Ss; k <= cinfo->Se; k++) { |
st = entropy->ac_stats[tbl] + 3 * (k - 1); |
- if (arith_decode(cinfo, st)) break; /* EOB flag */ |
+ if (arith_decode(cinfo, st)) break; /* EOB flag */ |
while (arith_decode(cinfo, st + 1) == 0) { |
st += 3; k++; |
if (k > cinfo->Se) { |
- WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
- entropy->ct = -1; /* spectral overflow */ |
- return TRUE; |
+ WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
+ entropy->ct = -1; /* spectral overflow */ |
+ return TRUE; |
} |
} |
/* Figure F.21: Decoding nonzero value v */ |
@@ -361,17 +362,17 @@ decode_mcu_AC_first (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
/* Figure F.23: Decoding the magnitude category of v */ |
if ((m = arith_decode(cinfo, st)) != 0) { |
if (arith_decode(cinfo, st)) { |
- m <<= 1; |
- st = entropy->ac_stats[tbl] + |
- (k <= cinfo->arith_ac_K[tbl] ? 189 : 217); |
- while (arith_decode(cinfo, st)) { |
- if ((m <<= 1) == 0x8000) { |
- WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
- entropy->ct = -1; /* magnitude overflow */ |
- return TRUE; |
- } |
- st += 1; |
- } |
+ m <<= 1; |
+ st = entropy->ac_stats[tbl] + |
+ (k <= cinfo->arith_ac_K[tbl] ? 189 : 217); |
+ while (arith_decode(cinfo, st)) { |
+ if ((m <<= 1) == 0x8000) { |
+ WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
+ entropy->ct = -1; /* magnitude overflow */ |
+ return TRUE; |
+ } |
+ st += 1; |
+ } |
} |
} |
v = m; |
@@ -406,8 +407,8 @@ decode_mcu_DC_refine (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
entropy->restarts_to_go--; |
} |
- st = entropy->fixed_bin; /* use fixed probability estimation */ |
- p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */ |
+ st = entropy->fixed_bin; /* use fixed probability estimation */ |
+ p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */ |
/* Outer loop handles each block in the MCU */ |
@@ -442,14 +443,14 @@ decode_mcu_AC_refine (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
entropy->restarts_to_go--; |
} |
- if (entropy->ct == -1) return TRUE; /* if error do nothing */ |
+ if (entropy->ct == -1) return TRUE; /* if error do nothing */ |
/* There is always only one block per MCU */ |
block = MCU_data[0]; |
tbl = cinfo->cur_comp_info[0]->ac_tbl_no; |
- p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */ |
- m1 = (-1) << cinfo->Al; /* -1 in the bit position being coded */ |
+ p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */ |
+ m1 = (-1) << cinfo->Al; /* -1 in the bit position being coded */ |
/* Establish EOBx (previous stage end-of-block) index */ |
for (kex = cinfo->Se; kex > 0; kex--) |
@@ -458,30 +459,30 @@ decode_mcu_AC_refine (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
for (k = cinfo->Ss; k <= cinfo->Se; k++) { |
st = entropy->ac_stats[tbl] + 3 * (k - 1); |
if (k > kex) |
- if (arith_decode(cinfo, st)) break; /* EOB flag */ |
+ if (arith_decode(cinfo, st)) break; /* EOB flag */ |
for (;;) { |
thiscoef = *block + jpeg_natural_order[k]; |
- if (*thiscoef) { /* previously nonzero coef */ |
- if (arith_decode(cinfo, st + 2)) { |
- if (*thiscoef < 0) |
- *thiscoef += m1; |
- else |
- *thiscoef += p1; |
- } |
- break; |
+ if (*thiscoef) { /* previously nonzero coef */ |
+ if (arith_decode(cinfo, st + 2)) { |
+ if (*thiscoef < 0) |
+ *thiscoef += m1; |
+ else |
+ *thiscoef += p1; |
+ } |
+ break; |
} |
- if (arith_decode(cinfo, st + 1)) { /* newly nonzero coef */ |
- if (arith_decode(cinfo, entropy->fixed_bin)) |
- *thiscoef = m1; |
- else |
- *thiscoef = p1; |
- break; |
+ if (arith_decode(cinfo, st + 1)) { /* newly nonzero coef */ |
+ if (arith_decode(cinfo, entropy->fixed_bin)) |
+ *thiscoef = m1; |
+ else |
+ *thiscoef = p1; |
+ break; |
} |
st += 3; k++; |
if (k > cinfo->Se) { |
- WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
- entropy->ct = -1; /* spectral overflow */ |
- return TRUE; |
+ WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
+ entropy->ct = -1; /* spectral overflow */ |
+ return TRUE; |
} |
} |
} |
@@ -498,7 +499,7 @@ METHODDEF(boolean) |
decode_mcu (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
{ |
arith_entropy_ptr entropy = (arith_entropy_ptr) cinfo->entropy; |
- jpeg_component_info * compptr; |
+ jpeg_component_info *compptr; |
JBLOCKROW block; |
unsigned char *st; |
int blkn, ci, tbl, sign, k; |
@@ -511,7 +512,7 @@ decode_mcu (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
entropy->restarts_to_go--; |
} |
- if (entropy->ct == -1) return TRUE; /* if error do nothing */ |
+ if (entropy->ct == -1) return TRUE; /* if error do nothing */ |
/* Outer loop handles each block in the MCU */ |
@@ -537,28 +538,28 @@ decode_mcu (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
st += 2; st += sign; |
/* Figure F.23: Decoding the magnitude category of v */ |
if ((m = arith_decode(cinfo, st)) != 0) { |
- st = entropy->dc_stats[tbl] + 20; /* Table F.4: X1 = 20 */ |
- while (arith_decode(cinfo, st)) { |
- if ((m <<= 1) == 0x8000) { |
- WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
- entropy->ct = -1; /* magnitude overflow */ |
- return TRUE; |
- } |
- st += 1; |
- } |
+ st = entropy->dc_stats[tbl] + 20; /* Table F.4: X1 = 20 */ |
+ while (arith_decode(cinfo, st)) { |
+ if ((m <<= 1) == 0x8000) { |
+ WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
+ entropy->ct = -1; /* magnitude overflow */ |
+ return TRUE; |
+ } |
+ st += 1; |
+ } |
} |
/* Section F.1.4.4.1.2: Establish dc_context conditioning category */ |
if (m < (int) ((1L << cinfo->arith_dc_L[tbl]) >> 1)) |
- entropy->dc_context[ci] = 0; /* zero diff category */ |
+ entropy->dc_context[ci] = 0; /* zero diff category */ |
else if (m > (int) ((1L << cinfo->arith_dc_U[tbl]) >> 1)) |
- entropy->dc_context[ci] = 12 + (sign * 4); /* large diff category */ |
+ entropy->dc_context[ci] = 12 + (sign * 4); /* large diff category */ |
else |
- entropy->dc_context[ci] = 4 + (sign * 4); /* small diff category */ |
+ entropy->dc_context[ci] = 4 + (sign * 4); /* small diff category */ |
v = m; |
/* Figure F.24: Decoding the magnitude bit pattern of v */ |
st += 14; |
while (m >>= 1) |
- if (arith_decode(cinfo, st)) v |= m; |
+ if (arith_decode(cinfo, st)) v |= m; |
v += 1; if (sign) v = -v; |
entropy->last_dc_val[ci] += v; |
} |
@@ -573,14 +574,14 @@ decode_mcu (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
/* Figure F.20: Decode_AC_coefficients */ |
for (k = 1; k <= DCTSIZE2 - 1; k++) { |
st = entropy->ac_stats[tbl] + 3 * (k - 1); |
- if (arith_decode(cinfo, st)) break; /* EOB flag */ |
+ if (arith_decode(cinfo, st)) break; /* EOB flag */ |
while (arith_decode(cinfo, st + 1) == 0) { |
- st += 3; k++; |
- if (k > DCTSIZE2 - 1) { |
- WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
- entropy->ct = -1; /* spectral overflow */ |
- return TRUE; |
- } |
+ st += 3; k++; |
+ if (k > DCTSIZE2 - 1) { |
+ WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
+ entropy->ct = -1; /* spectral overflow */ |
+ return TRUE; |
+ } |
} |
/* Figure F.21: Decoding nonzero value v */ |
/* Figure F.22: Decoding the sign of v */ |
@@ -588,25 +589,25 @@ decode_mcu (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
st += 2; |
/* Figure F.23: Decoding the magnitude category of v */ |
if ((m = arith_decode(cinfo, st)) != 0) { |
- if (arith_decode(cinfo, st)) { |
- m <<= 1; |
- st = entropy->ac_stats[tbl] + |
- (k <= cinfo->arith_ac_K[tbl] ? 189 : 217); |
- while (arith_decode(cinfo, st)) { |
- if ((m <<= 1) == 0x8000) { |
- WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
- entropy->ct = -1; /* magnitude overflow */ |
- return TRUE; |
- } |
- st += 1; |
- } |
- } |
+ if (arith_decode(cinfo, st)) { |
+ m <<= 1; |
+ st = entropy->ac_stats[tbl] + |
+ (k <= cinfo->arith_ac_K[tbl] ? 189 : 217); |
+ while (arith_decode(cinfo, st)) { |
+ if ((m <<= 1) == 0x8000) { |
+ WARNMS(cinfo, JWRN_ARITH_BAD_CODE); |
+ entropy->ct = -1; /* magnitude overflow */ |
+ return TRUE; |
+ } |
+ st += 1; |
+ } |
+ } |
} |
v = m; |
/* Figure F.24: Decoding the magnitude bit pattern of v */ |
st += 14; |
while (m >>= 1) |
- if (arith_decode(cinfo, st)) v |= m; |
+ if (arith_decode(cinfo, st)) v |= m; |
v += 1; if (sign) v = -v; |
if (block) |
(*block)[jpeg_natural_order[k]] = (JCOEF) v; |
@@ -626,30 +627,30 @@ start_pass (j_decompress_ptr cinfo) |
{ |
arith_entropy_ptr entropy = (arith_entropy_ptr) cinfo->entropy; |
int ci, tbl; |
- jpeg_component_info * compptr; |
+ jpeg_component_info *compptr; |
if (cinfo->progressive_mode) { |
/* Validate progressive scan parameters */ |
if (cinfo->Ss == 0) { |
if (cinfo->Se != 0) |
- goto bad; |
+ goto bad; |
} else { |
/* need not check Ss/Se < 0 since they came from unsigned bytes */ |
if (cinfo->Se < cinfo->Ss || cinfo->Se > DCTSIZE2 - 1) |
- goto bad; |
+ goto bad; |
/* AC scans may have only one component */ |
if (cinfo->comps_in_scan != 1) |
- goto bad; |
+ goto bad; |
} |
if (cinfo->Ah != 0) { |
/* Successive approximation refinement scan: must have Al = Ah-1. */ |
if (cinfo->Ah-1 != cinfo->Al) |
- goto bad; |
+ goto bad; |
} |
- if (cinfo->Al > 13) { /* need not check for < 0 */ |
+ if (cinfo->Al > 13) { /* need not check for < 0 */ |
bad: |
ERREXIT4(cinfo, JERR_BAD_PROGRESSION, |
- cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); |
+ cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); |
} |
/* Update progression status, and verify that scan order is legal. |
* Note that inter-scan inconsistencies are treated as warnings |
@@ -659,32 +660,32 @@ start_pass (j_decompress_ptr cinfo) |
int coefi, cindex = cinfo->cur_comp_info[ci]->component_index; |
int *coef_bit_ptr = & cinfo->coef_bits[cindex][0]; |
if (cinfo->Ss && coef_bit_ptr[0] < 0) /* AC without prior DC scan */ |
- WARNMS2(cinfo, JWRN_BOGUS_PROGRESSION, cindex, 0); |
+ WARNMS2(cinfo, JWRN_BOGUS_PROGRESSION, cindex, 0); |
for (coefi = cinfo->Ss; coefi <= cinfo->Se; coefi++) { |
- int expected = (coef_bit_ptr[coefi] < 0) ? 0 : coef_bit_ptr[coefi]; |
- if (cinfo->Ah != expected) |
- WARNMS2(cinfo, JWRN_BOGUS_PROGRESSION, cindex, coefi); |
- coef_bit_ptr[coefi] = cinfo->Al; |
+ int expected = (coef_bit_ptr[coefi] < 0) ? 0 : coef_bit_ptr[coefi]; |
+ if (cinfo->Ah != expected) |
+ WARNMS2(cinfo, JWRN_BOGUS_PROGRESSION, cindex, coefi); |
+ coef_bit_ptr[coefi] = cinfo->Al; |
} |
} |
/* Select MCU decoding routine */ |
if (cinfo->Ah == 0) { |
if (cinfo->Ss == 0) |
- entropy->pub.decode_mcu = decode_mcu_DC_first; |
+ entropy->pub.decode_mcu = decode_mcu_DC_first; |
else |
- entropy->pub.decode_mcu = decode_mcu_AC_first; |
+ entropy->pub.decode_mcu = decode_mcu_AC_first; |
} else { |
if (cinfo->Ss == 0) |
- entropy->pub.decode_mcu = decode_mcu_DC_refine; |
+ entropy->pub.decode_mcu = decode_mcu_DC_refine; |
else |
- entropy->pub.decode_mcu = decode_mcu_AC_refine; |
+ entropy->pub.decode_mcu = decode_mcu_AC_refine; |
} |
} else { |
/* Check that the scan parameters Ss, Se, Ah/Al are OK for sequential JPEG. |
* This ought to be an error condition, but we make it a warning. |
*/ |
if (cinfo->Ss != 0 || cinfo->Ah != 0 || cinfo->Al != 0 || |
- (cinfo->Se < DCTSIZE2 && cinfo->Se != DCTSIZE2 - 1)) |
+ (cinfo->Se < DCTSIZE2 && cinfo->Se != DCTSIZE2 - 1)) |
WARNMS(cinfo, JWRN_NOT_SEQUENTIAL); |
/* Select MCU decoding routine */ |
entropy->pub.decode_mcu = decode_mcu; |
@@ -693,25 +694,25 @@ start_pass (j_decompress_ptr cinfo) |
/* Allocate & initialize requested statistics areas */ |
for (ci = 0; ci < cinfo->comps_in_scan; ci++) { |
compptr = cinfo->cur_comp_info[ci]; |
- if (! cinfo->progressive_mode || (cinfo->Ss == 0 && cinfo->Ah == 0)) { |
+ if (!cinfo->progressive_mode || (cinfo->Ss == 0 && cinfo->Ah == 0)) { |
tbl = compptr->dc_tbl_no; |
if (tbl < 0 || tbl >= NUM_ARITH_TBLS) |
- ERREXIT1(cinfo, JERR_NO_ARITH_TABLE, tbl); |
+ ERREXIT1(cinfo, JERR_NO_ARITH_TABLE, tbl); |
if (entropy->dc_stats[tbl] == NULL) |
- entropy->dc_stats[tbl] = (unsigned char *) (*cinfo->mem->alloc_small) |
- ((j_common_ptr) cinfo, JPOOL_IMAGE, DC_STAT_BINS); |
+ entropy->dc_stats[tbl] = (unsigned char *) (*cinfo->mem->alloc_small) |
+ ((j_common_ptr) cinfo, JPOOL_IMAGE, DC_STAT_BINS); |
MEMZERO(entropy->dc_stats[tbl], DC_STAT_BINS); |
/* Initialize DC predictions to 0 */ |
entropy->last_dc_val[ci] = 0; |
entropy->dc_context[ci] = 0; |
} |
- if (! cinfo->progressive_mode || cinfo->Ss) { |
+ if (!cinfo->progressive_mode || cinfo->Ss) { |
tbl = compptr->ac_tbl_no; |
if (tbl < 0 || tbl >= NUM_ARITH_TBLS) |
- ERREXIT1(cinfo, JERR_NO_ARITH_TABLE, tbl); |
+ ERREXIT1(cinfo, JERR_NO_ARITH_TABLE, tbl); |
if (entropy->ac_stats[tbl] == NULL) |
- entropy->ac_stats[tbl] = (unsigned char *) (*cinfo->mem->alloc_small) |
- ((j_common_ptr) cinfo, JPOOL_IMAGE, AC_STAT_BINS); |
+ entropy->ac_stats[tbl] = (unsigned char *) (*cinfo->mem->alloc_small) |
+ ((j_common_ptr) cinfo, JPOOL_IMAGE, AC_STAT_BINS); |
MEMZERO(entropy->ac_stats[tbl], AC_STAT_BINS); |
} |
} |
@@ -719,7 +720,7 @@ start_pass (j_decompress_ptr cinfo) |
/* Initialize arithmetic decoding variables */ |
entropy->c = 0; |
entropy->a = 0; |
- entropy->ct = -16; /* force reading 2 initial bytes to fill C */ |
+ entropy->ct = -16; /* force reading 2 initial bytes to fill C */ |
/* Initialize restart counter */ |
entropy->restarts_to_go = cinfo->restart_interval; |
@@ -738,7 +739,7 @@ jinit_arith_decoder (j_decompress_ptr cinfo) |
entropy = (arith_entropy_ptr) |
(*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, |
- SIZEOF(arith_entropy_decoder)); |
+ sizeof(arith_entropy_decoder)); |
cinfo->entropy = (struct jpeg_entropy_decoder *) entropy; |
entropy->pub.start_pass = start_pass; |
@@ -756,10 +757,10 @@ jinit_arith_decoder (j_decompress_ptr cinfo) |
int *coef_bit_ptr, ci; |
cinfo->coef_bits = (int (*)[DCTSIZE2]) |
(*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, |
- cinfo->num_components*DCTSIZE2*SIZEOF(int)); |
+ cinfo->num_components*DCTSIZE2*sizeof(int)); |
coef_bit_ptr = & cinfo->coef_bits[0][0]; |
- for (ci = 0; ci < cinfo->num_components; ci++) |
+ for (ci = 0; ci < cinfo->num_components; ci++) |
for (i = 0; i < DCTSIZE2; i++) |
- *coef_bit_ptr++ = -1; |
+ *coef_bit_ptr++ = -1; |
} |
} |