12 if (c == 0xFF) { /* need to stuff a zero byte? */
13 emit_byte(entropy, 0);
16 + put_buffer = (uint_least32_t) put_buffer << 8;
24 if (arith_decode(cinfo, st)) v |= m;
25 v += 1; if (sign) v = -v;
26 - entropy->last_dc_val[ci] += v;
27 + entropy->last_dc_val[ci] = (entropy->last_dc_val[ci] + v) & 0xffff;
30 /* Scale and output the DC coefficient (assumes jpeg_natural_order[0]=0) */
33 if (arith_decode(cinfo, st)) v |= m;
34 v += 1; if (sign) v = -v;
35 - entropy->last_dc_val[ci] += v;
36 + entropy->last_dc_val[ci] = (entropy->last_dc_val[ci] + v) & 0xffff;