jdhuff.c
上传用户:wuyixingx
上传日期:2007-01-08
资源大小:745k
文件大小:21k
源码类别:

图形图象

开发平台:

C/C++

  1. /*
  2.  * jdhuff.c
  3.  *
  4.  * Copyright (C) 1991-1997, Thomas G. Lane.
  5.  * This file is part of the Independent JPEG Group's software.
  6.  * For conditions of distribution and use, see the accompanying README file.
  7.  *
  8.  * This file contains Huffman entropy decoding routines.
  9.  *
  10.  * Much of the complexity here has to do with supporting input suspension.
  11.  * If the data source module demands suspension, we want to be able to back
  12.  * up to the start of the current MCU.  To do this, we copy state variables
  13.  * into local working storage, and update them back to the permanent
  14.  * storage only upon successful completion of an MCU.
  15.  */
  16. #define JPEG_INTERNALS
  17. #include "jinclude.h"
  18. #include "jpeglib.h"
  19. #include "jdhuff.h" /* Declarations shared with jdphuff.c */
  20. /*
  21.  * Expanded entropy decoder object for Huffman decoding.
  22.  *
  23.  * The savable_state subrecord contains fields that change within an MCU,
  24.  * but must not be updated permanently until we complete the MCU.
  25.  */
  26. typedef struct {
  27.   int last_dc_val[MAX_COMPS_IN_SCAN]; /* last DC coef for each component */
  28. } savable_state;
  29. /* This macro is to work around compilers with missing or broken
  30.  * structure assignment.  You'll need to fix this code if you have
  31.  * such a compiler and you change MAX_COMPS_IN_SCAN.
  32.  */
  33. #ifndef NO_STRUCT_ASSIGN
  34. #define ASSIGN_STATE(dest,src)  ((dest) = (src))
  35. #else
  36. #if MAX_COMPS_IN_SCAN == 4
  37. #define ASSIGN_STATE(dest,src)  
  38. ((dest).last_dc_val[0] = (src).last_dc_val[0], 
  39.  (dest).last_dc_val[1] = (src).last_dc_val[1], 
  40.  (dest).last_dc_val[2] = (src).last_dc_val[2], 
  41.  (dest).last_dc_val[3] = (src).last_dc_val[3])
  42. #endif
  43. #endif
  44. typedef struct {
  45.   struct jpeg_entropy_decoder pub; /* public fields */
  46.   /* These fields are loaded into local variables at start of each MCU.
  47.    * In case of suspension, we exit WITHOUT updating them.
  48.    */
  49.   bitread_perm_state bitstate; /* Bit buffer at start of MCU */
  50.   savable_state saved; /* Other state at start of MCU */
  51.   /* These fields are NOT loaded into local working state. */
  52.   unsigned int restarts_to_go; /* MCUs left in this restart interval */
  53.   /* Pointers to derived tables (these workspaces have image lifespan) */
  54.   d_derived_tbl * dc_derived_tbls[NUM_HUFF_TBLS];
  55.   d_derived_tbl * ac_derived_tbls[NUM_HUFF_TBLS];
  56.   /* Precalculated info set up by start_pass for use in decode_mcu: */
  57.   /* Pointers to derived tables to be used for each block within an MCU */
  58.   d_derived_tbl * dc_cur_tbls[D_MAX_BLOCKS_IN_MCU];
  59.   d_derived_tbl * ac_cur_tbls[D_MAX_BLOCKS_IN_MCU];
  60.   /* Whether we care about the DC and AC coefficient values for each block */
  61.   boolean dc_needed[D_MAX_BLOCKS_IN_MCU];
  62.   boolean ac_needed[D_MAX_BLOCKS_IN_MCU];
  63. } huff_entropy_decoder;
  64. typedef huff_entropy_decoder * huff_entropy_ptr;
  65. /*
  66.  * Initialize for a Huffman-compressed scan.
  67.  */
  68. METHODDEF(void)
  69. start_pass_huff_decoder (j_decompress_ptr cinfo)
  70. {
  71.   huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy;
  72.   int ci, blkn, dctbl, actbl;
  73.   jpeg_component_info * compptr;
  74.   /* Check that the scan parameters Ss, Se, Ah/Al are OK for sequential JPEG.
  75.    * This ought to be an error condition, but we make it a warning because
  76.    * there are some baseline files out there with all zeroes in these bytes.
  77.    */
  78.   if (cinfo->Ss != 0 || cinfo->Se != DCTSIZE2-1 ||
  79.       cinfo->Ah != 0 || cinfo->Al != 0)
  80.     WARNMS(cinfo, JWRN_NOT_SEQUENTIAL);
  81.   for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  82.     compptr = cinfo->cur_comp_info[ci];
  83.     dctbl = compptr->dc_tbl_no;
  84.     actbl = compptr->ac_tbl_no;
  85.     /* Compute derived values for Huffman tables */
  86.     /* We may do this more than once for a table, but it's not expensive */
  87.     jpeg_make_d_derived_tbl(cinfo, TRUE, dctbl,
  88.     & entropy->dc_derived_tbls[dctbl]);
  89.     jpeg_make_d_derived_tbl(cinfo, FALSE, actbl,
  90.     & entropy->ac_derived_tbls[actbl]);
  91.     /* Initialize DC predictions to 0 */
  92.     entropy->saved.last_dc_val[ci] = 0;
  93.   }
  94.   /* Precalculate decoding info for each block in an MCU of this scan */
  95.   for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
  96.     ci = cinfo->MCU_membership[blkn];
  97.     compptr = cinfo->cur_comp_info[ci];
  98.     /* Precalculate which table to use for each block */
  99.     entropy->dc_cur_tbls[blkn] = entropy->dc_derived_tbls[compptr->dc_tbl_no];
  100.     entropy->ac_cur_tbls[blkn] = entropy->ac_derived_tbls[compptr->ac_tbl_no];
  101.     /* Decide whether we really care about the coefficient values */
  102.     if (compptr->component_needed) {
  103.       entropy->dc_needed[blkn] = TRUE;
  104.       /* we don't need the ACs if producing a 1/8th-size image */
  105.       entropy->ac_needed[blkn] = (compptr->DCT_scaled_size > 1);
  106.     } else {
  107.       entropy->dc_needed[blkn] = entropy->ac_needed[blkn] = FALSE;
  108.     }
  109.   }
  110.   /* Initialize bitread state variables */
  111.   entropy->bitstate.bits_left = 0;
  112.   entropy->bitstate.get_buffer = 0; /* unnecessary, but keeps Purify quiet */
  113.   entropy->pub.insufficient_data = FALSE;
  114.   /* Initialize restart counter */
  115.   entropy->restarts_to_go = cinfo->restart_interval;
  116. }
  117. /*
  118.  * Compute the derived values for a Huffman table.
  119.  * This routine also performs some validation checks on the table.
  120.  *
  121.  * Note this is also used by jdphuff.c.
  122.  */
  123. GLOBAL(void)
  124. jpeg_make_d_derived_tbl (j_decompress_ptr cinfo, boolean isDC, int tblno,
  125.  d_derived_tbl ** pdtbl)
  126. {
  127.   JHUFF_TBL *htbl;
  128.   d_derived_tbl *dtbl;
  129.   int p, i, l, si, numsymbols;
  130.   int lookbits, ctr;
  131.   char huffsize[257];
  132.   unsigned int huffcode[257];
  133.   unsigned int code;
  134.   /* Note that huffsize[] and huffcode[] are filled in code-length order,
  135.    * paralleling the order of the symbols themselves in htbl->huffval[].
  136.    */
  137.   /* Find the input Huffman table */
  138.   if (tblno < 0 || tblno >= NUM_HUFF_TBLS)
  139.     ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tblno);
  140.   htbl =
  141.     isDC ? cinfo->dc_huff_tbl_ptrs[tblno] : cinfo->ac_huff_tbl_ptrs[tblno];
  142.   if (htbl == NULL)
  143.     ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tblno);
  144.   /* Allocate a workspace if we haven't already done so. */
  145.   if (*pdtbl == NULL)
  146.     *pdtbl = (d_derived_tbl *)
  147.       (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  148.   SIZEOF(d_derived_tbl));
  149.   dtbl = *pdtbl;
  150.   dtbl->pub = htbl; /* fill in back link */
  151.   
  152.   /* Figure C.1: make table of Huffman code length for each symbol */
  153.   p = 0;
  154.   for (l = 1; l <= 16; l++) {
  155.     i = (int) htbl->bits[l];
  156.     if (i < 0 || p + i > 256) /* protect against table overrun */
  157.       ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
  158.     while (i--)
  159.       huffsize[p++] = (char) l;
  160.   }
  161.   huffsize[p] = 0;
  162.   numsymbols = p;
  163.   
  164.   /* Figure C.2: generate the codes themselves */
  165.   /* We also validate that the counts represent a legal Huffman code tree. */
  166.   
  167.   code = 0;
  168.   si = huffsize[0];
  169.   p = 0;
  170.   while (huffsize[p]) {
  171.     while (((int) huffsize[p]) == si) {
  172.       huffcode[p++] = code;
  173.       code++;
  174.     }
  175.     /* code is now 1 more than the last code used for codelength si; but
  176.      * it must still fit in si bits, since no code is allowed to be all ones.
  177.      */
  178.     if (((INT32) code) >= (((INT32) 1) << si))
  179.       ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
  180.     code <<= 1;
  181.     si++;
  182.   }
  183.   /* Figure F.15: generate decoding tables for bit-sequential decoding */
  184.   p = 0;
  185.   for (l = 1; l <= 16; l++) {
  186.     if (htbl->bits[l]) {
  187.       /* valoffset[l] = huffval[] index of 1st symbol of code length l,
  188.        * minus the minimum code of length l
  189.        */
  190.       dtbl->valoffset[l] = (INT32) p - (INT32) huffcode[p];
  191.       p += htbl->bits[l];
  192.       dtbl->maxcode[l] = huffcode[p-1]; /* maximum code of length l */
  193.     } else {
  194.       dtbl->maxcode[l] = -1; /* -1 if no codes of this length */
  195.     }
  196.   }
  197.   dtbl->maxcode[17] = 0xFFFFFL; /* ensures jpeg_huff_decode terminates */
  198.   /* Compute lookahead tables to speed up decoding.
  199.    * First we set all the table entries to 0, indicating "too long";
  200.    * then we iterate through the Huffman codes that are short enough and
  201.    * fill in all the entries that correspond to bit sequences starting
  202.    * with that code.
  203.    */
  204.   MEMZERO(dtbl->look_nbits, SIZEOF(dtbl->look_nbits));
  205.   p = 0;
  206.   for (l = 1; l <= HUFF_LOOKAHEAD; l++) {
  207.     for (i = 1; i <= (int) htbl->bits[l]; i++, p++) {
  208.       /* l = current code's length, p = its index in huffcode[] & huffval[]. */
  209.       /* Generate left-justified code followed by all possible bit sequences */
  210.       lookbits = huffcode[p] << (HUFF_LOOKAHEAD-l);
  211.       for (ctr = 1 << (HUFF_LOOKAHEAD-l); ctr > 0; ctr--) {
  212. dtbl->look_nbits[lookbits] = l;
  213. dtbl->look_sym[lookbits] = htbl->huffval[p];
  214. lookbits++;
  215.       }
  216.     }
  217.   }
  218.   /* Validate symbols as being reasonable.
  219.    * For AC tables, we make no check, but accept all byte values 0..255.
  220.    * For DC tables, we require the symbols to be in range 0..15.
  221.    * (Tighter bounds could be applied depending on the data depth and mode,
  222.    * but this is sufficient to ensure safe decoding.)
  223.    */
  224.   if (isDC) {
  225.     for (i = 0; i < numsymbols; i++) {
  226.       int sym = htbl->huffval[i];
  227.       if (sym < 0 || sym > 15)
  228. ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
  229.     }
  230.   }
  231. }
  232. /*
  233.  * Out-of-line code for bit fetching (shared with jdphuff.c).
  234.  * See jdhuff.h for info about usage.
  235.  * Note: current values of get_buffer and bits_left are passed as parameters,
  236.  * but are returned in the corresponding fields of the state struct.
  237.  *
  238.  * On most machines MIN_GET_BITS should be 25 to allow the full 32-bit width
  239.  * of get_buffer to be used.  (On machines with wider words, an even larger
  240.  * buffer could be used.)  However, on some machines 32-bit shifts are
  241.  * quite slow and take time proportional to the number of places shifted.
  242.  * (This is true with most PC compilers, for instance.)  In this case it may
  243.  * be a win to set MIN_GET_BITS to the minimum value of 15.  This reduces the
  244.  * average shift distance at the cost of more calls to jpeg_fill_bit_buffer.
  245.  */
  246. #ifdef SLOW_SHIFT_32
  247. #define MIN_GET_BITS  15 /* minimum allowable value */
  248. #else
  249. #define MIN_GET_BITS  (BIT_BUF_SIZE-7)
  250. #endif
  251. GLOBAL(boolean)
  252. jpeg_fill_bit_buffer (bitread_working_state * state,
  253.       register bit_buf_type get_buffer, register int bits_left,
  254.       int nbits)
  255. /* Load up the bit buffer to a depth of at least nbits */
  256. {
  257.   /* Copy heavily used state fields into locals (hopefully registers) */
  258.   register const JOCTET * next_input_byte = state->next_input_byte;
  259.   register size_t bytes_in_buffer = state->bytes_in_buffer;
  260.   j_decompress_ptr cinfo = state->cinfo;
  261.   /* Attempt to load at least MIN_GET_BITS bits into get_buffer. */
  262.   /* (It is assumed that no request will be for more than that many bits.) */
  263.   /* We fail to do so only if we hit a marker or are forced to suspend. */
  264.   if (cinfo->unread_marker == 0) { /* cannot advance past a marker */
  265.     while (bits_left < MIN_GET_BITS) {
  266.       register int c;
  267.       /* Attempt to read a byte */
  268.       if (bytes_in_buffer == 0) {
  269. if (! (*cinfo->src->fill_input_buffer) (cinfo))
  270.   return FALSE;
  271. next_input_byte = cinfo->src->next_input_byte;
  272. bytes_in_buffer = cinfo->src->bytes_in_buffer;
  273.       }
  274.       bytes_in_buffer--;
  275.       c = GETJOCTET(*next_input_byte++);
  276.       /* If it's 0xFF, check and discard stuffed zero byte */
  277.       if (c == 0xFF) {
  278. /* Loop here to discard any padding FF's on terminating marker,
  279.  * so that we can save a valid unread_marker value.  NOTE: we will
  280.  * accept multiple FF's followed by a 0 as meaning a single FF data
  281.  * byte.  This data pattern is not valid according to the standard.
  282.  */
  283. do {
  284.   if (bytes_in_buffer == 0) {
  285.     if (! (*cinfo->src->fill_input_buffer) (cinfo))
  286.       return FALSE;
  287.     next_input_byte = cinfo->src->next_input_byte;
  288.     bytes_in_buffer = cinfo->src->bytes_in_buffer;
  289.   }
  290.   bytes_in_buffer--;
  291.   c = GETJOCTET(*next_input_byte++);
  292. } while (c == 0xFF);
  293. if (c == 0) {
  294.   /* Found FF/00, which represents an FF data byte */
  295.   c = 0xFF;
  296. } else {
  297.   /* Oops, it's actually a marker indicating end of compressed data.
  298.    * Save the marker code for later use.
  299.    * Fine point: it might appear that we should save the marker into
  300.    * bitread working state, not straight into permanent state.  But
  301.    * once we have hit a marker, we cannot need to suspend within the
  302.    * current MCU, because we will read no more bytes from the data
  303.    * source.  So it is OK to update permanent state right away.
  304.    */
  305.   cinfo->unread_marker = c;
  306.   /* See if we need to insert some fake zero bits. */
  307.   goto no_more_bytes;
  308. }
  309.       }
  310.       /* OK, load c into get_buffer */
  311.       get_buffer = (get_buffer << 8) | c;
  312.       bits_left += 8;
  313.     } /* end while */
  314.   } else {
  315.   no_more_bytes:
  316.     /* We get here if we've read the marker that terminates the compressed
  317.      * data segment.  There should be enough bits in the buffer register
  318.      * to satisfy the request; if so, no problem.
  319.      */
  320.     if (nbits > bits_left) {
  321.       /* Uh-oh.  Report corrupted data to user and stuff zeroes into
  322.        * the data stream, so that we can produce some kind of image.
  323.        * We use a nonvolatile flag to ensure that only one warning message
  324.        * appears per data segment.
  325.        */
  326.       if (! cinfo->entropy->insufficient_data) {
  327. WARNMS(cinfo, JWRN_HIT_MARKER);
  328. cinfo->entropy->insufficient_data = TRUE;
  329.       }
  330.       /* Fill the buffer with zero bits */
  331.       get_buffer <<= MIN_GET_BITS - bits_left;
  332.       bits_left = MIN_GET_BITS;
  333.     }
  334.   }
  335.   /* Unload the local registers */
  336.   state->next_input_byte = next_input_byte;
  337.   state->bytes_in_buffer = bytes_in_buffer;
  338.   state->get_buffer = get_buffer;
  339.   state->bits_left = bits_left;
  340.   return TRUE;
  341. }
  342. /*
  343.  * Out-of-line code for Huffman code decoding.
  344.  * See jdhuff.h for info about usage.
  345.  */
  346. GLOBAL(int)
  347. jpeg_huff_decode (bitread_working_state * state,
  348.   register bit_buf_type get_buffer, register int bits_left,
  349.   d_derived_tbl * htbl, int min_bits)
  350. {
  351.   register int l = min_bits;
  352.   register INT32 code;
  353.   /* HUFF_DECODE has determined that the code is at least min_bits */
  354.   /* bits long, so fetch that many bits in one swoop. */
  355.   CHECK_BIT_BUFFER(*state, l, return -1);
  356.   code = GET_BITS(l);
  357.   /* Collect the rest of the Huffman code one bit at a time. */
  358.   /* This is per Figure F.16 in the JPEG spec. */
  359.   while (code > htbl->maxcode[l]) {
  360.     code <<= 1;
  361.     CHECK_BIT_BUFFER(*state, 1, return -1);
  362.     code |= GET_BITS(1);
  363.     l++;
  364.   }
  365.   /* Unload the local registers */
  366.   state->get_buffer = get_buffer;
  367.   state->bits_left = bits_left;
  368.   /* With garbage input we may reach the sentinel value l = 17. */
  369.   if (l > 16) {
  370.     WARNMS(state->cinfo, JWRN_HUFF_BAD_CODE);
  371.     return 0; /* fake a zero as the safest result */
  372.   }
  373.   return htbl->pub->huffval[ (int) (code + htbl->valoffset[l]) ];
  374. }
  375. /*
  376.  * Figure F.12: extend sign bit.
  377.  * On some machines, a shift and add will be faster than a table lookup.
  378.  */
  379. #ifdef AVOID_TABLES
  380. #define HUFF_EXTEND(x,s)  ((x) < (1<<((s)-1)) ? (x) + (((-1)<<(s)) + 1) : (x))
  381. #else
  382. #define HUFF_EXTEND(x,s)  ((x) < extend_test[s] ? (x) + extend_offset[s] : (x))
  383. static const int extend_test[16] =   /* entry n is 2**(n-1) */
  384.   { 0, 0x0001, 0x0002, 0x0004, 0x0008, 0x0010, 0x0020, 0x0040, 0x0080,
  385.     0x0100, 0x0200, 0x0400, 0x0800, 0x1000, 0x2000, 0x4000 };
  386. static const int extend_offset[16] = /* entry n is (-1 << n) + 1 */
  387.   { 0, ((-1)<<1) + 1, ((-1)<<2) + 1, ((-1)<<3) + 1, ((-1)<<4) + 1,
  388.     ((-1)<<5) + 1, ((-1)<<6) + 1, ((-1)<<7) + 1, ((-1)<<8) + 1,
  389.     ((-1)<<9) + 1, ((-1)<<10) + 1, ((-1)<<11) + 1, ((-1)<<12) + 1,
  390.     ((-1)<<13) + 1, ((-1)<<14) + 1, ((-1)<<15) + 1 };
  391. #endif /* AVOID_TABLES */
  392. /*
  393.  * Check for a restart marker & resynchronize decoder.
  394.  * Returns FALSE if must suspend.
  395.  */
  396. LOCAL(boolean)
  397. process_restart (j_decompress_ptr cinfo)
  398. {
  399.   huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy;
  400.   int ci;
  401.   /* Throw away any unused bits remaining in bit buffer; */
  402.   /* include any full bytes in next_marker's count of discarded bytes */
  403.   cinfo->marker->discarded_bytes += entropy->bitstate.bits_left / 8;
  404.   entropy->bitstate.bits_left = 0;
  405.   /* Advance past the RSTn marker */
  406.   if (! (*cinfo->marker->read_restart_marker) (cinfo))
  407.     return FALSE;
  408.   /* Re-initialize DC predictions to 0 */
  409.   for (ci = 0; ci < cinfo->comps_in_scan; ci++)
  410.     entropy->saved.last_dc_val[ci] = 0;
  411.   /* Reset restart counter */
  412.   entropy->restarts_to_go = cinfo->restart_interval;
  413.   /* Reset out-of-data flag, unless read_restart_marker left us smack up
  414.    * against a marker.  In that case we will end up treating the next data
  415.    * segment as empty, and we can avoid producing bogus output pixels by
  416.    * leaving the flag set.
  417.    */
  418.   if (cinfo->unread_marker == 0)
  419.     entropy->pub.insufficient_data = FALSE;
  420.   return TRUE;
  421. }
  422. /*
  423.  * Decode and return one MCU's worth of Huffman-compressed coefficients.
  424.  * The coefficients are reordered from zigzag order into natural array order,
  425.  * but are not dequantized.
  426.  *
  427.  * The i'th block of the MCU is stored into the block pointed to by
  428.  * MCU_data[i].  WE ASSUME THIS AREA HAS BEEN ZEROED BY THE CALLER.
  429.  * (Wholesale zeroing is usually a little faster than retail...)
  430.  *
  431.  * Returns FALSE if data source requested suspension.  In that case no
  432.  * changes have been made to permanent state.  (Exception: some output
  433.  * coefficients may already have been assigned.  This is harmless for
  434.  * this module, since we'll just re-assign them on the next call.)
  435.  */
  436. METHODDEF(boolean)
  437. decode_mcu (j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
  438. {
  439.   huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy;
  440.   int blkn;
  441.   BITREAD_STATE_VARS;
  442.   savable_state state;
  443.   /* Process restart marker if needed; may have to suspend */
  444.   if (cinfo->restart_interval) {
  445.     if (entropy->restarts_to_go == 0)
  446.       if (! process_restart(cinfo))
  447. return FALSE;
  448.   }
  449.   /* If we've run out of data, just leave the MCU set to zeroes.
  450.    * This way, we return uniform gray for the remainder of the segment.
  451.    */
  452.   if (! entropy->pub.insufficient_data) {
  453.     /* Load up working state */
  454.     BITREAD_LOAD_STATE(cinfo,entropy->bitstate);
  455.     ASSIGN_STATE(state, entropy->saved);
  456.     /* Outer loop handles each block in the MCU */
  457.     for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
  458.       JBLOCKROW block = MCU_data[blkn];
  459.       d_derived_tbl * dctbl = entropy->dc_cur_tbls[blkn];
  460.       d_derived_tbl * actbl = entropy->ac_cur_tbls[blkn];
  461.       register int s, k, r;
  462.       /* Decode a single block's worth of coefficients */
  463.       /* Section F.2.2.1: decode the DC coefficient difference */
  464.       HUFF_DECODE(s, br_state, dctbl, return FALSE, label1);
  465.       if (s) {
  466. CHECK_BIT_BUFFER(br_state, s, return FALSE);
  467. r = GET_BITS(s);
  468. s = HUFF_EXTEND(r, s);
  469.       }
  470.       if (entropy->dc_needed[blkn]) {
  471. /* Convert DC difference to actual value, update last_dc_val */
  472. int ci = cinfo->MCU_membership[blkn];
  473. s += state.last_dc_val[ci];
  474. state.last_dc_val[ci] = s;
  475. /* Output the DC coefficient (assumes jpeg_natural_order[0] = 0) */
  476. (*block)[0] = (JCOEF) s;
  477.       }
  478.       if (entropy->ac_needed[blkn]) {
  479. /* Section F.2.2.2: decode the AC coefficients */
  480. /* Since zeroes are skipped, output area must be cleared beforehand */
  481. for (k = 1; k < DCTSIZE2; k++) {
  482.   HUFF_DECODE(s, br_state, actbl, return FALSE, label2);
  483.       
  484.   r = s >> 4;
  485.   s &= 15;
  486.       
  487.   if (s) {
  488.     k += r;
  489.     CHECK_BIT_BUFFER(br_state, s, return FALSE);
  490.     r = GET_BITS(s);
  491.     s = HUFF_EXTEND(r, s);
  492.     /* Output coefficient in natural (dezigzagged) order.
  493.      * Note: the extra entries in jpeg_natural_order[] will save us
  494.      * if k >= DCTSIZE2, which could happen if the data is corrupted.
  495.      */
  496.     (*block)[jpeg_natural_order[k]] = (JCOEF) s;
  497.   } else {
  498.     if (r != 15)
  499.       break;
  500.     k += 15;
  501.   }
  502. }
  503.       } else {
  504. /* Section F.2.2.2: decode the AC coefficients */
  505. /* In this path we just discard the values */
  506. for (k = 1; k < DCTSIZE2; k++) {
  507.   HUFF_DECODE(s, br_state, actbl, return FALSE, label3);
  508.       
  509.   r = s >> 4;
  510.   s &= 15;
  511.       
  512.   if (s) {
  513.     k += r;
  514.     CHECK_BIT_BUFFER(br_state, s, return FALSE);
  515.     DROP_BITS(s);
  516.   } else {
  517.     if (r != 15)
  518.       break;
  519.     k += 15;
  520.   }
  521. }
  522.       }
  523.     }
  524.     /* Completed MCU, so update state */
  525.     BITREAD_SAVE_STATE(cinfo,entropy->bitstate);
  526.     ASSIGN_STATE(entropy->saved, state);
  527.   }
  528.   /* Account for restart interval (no-op if not using restarts) */
  529.   entropy->restarts_to_go--;
  530.   return TRUE;
  531. }
  532. /*
  533.  * Module initialization routine for Huffman entropy decoding.
  534.  */
  535. GLOBAL(void)
  536. jinit_huff_decoder (j_decompress_ptr cinfo)
  537. {
  538.   huff_entropy_ptr entropy;
  539.   int i;
  540.   entropy = (huff_entropy_ptr)
  541.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  542. SIZEOF(huff_entropy_decoder));
  543.   cinfo->entropy = (struct jpeg_entropy_decoder *) entropy;
  544.   entropy->pub.start_pass = start_pass_huff_decoder;
  545.   entropy->pub.decode_mcu = decode_mcu;
  546.   /* Mark tables unallocated */
  547.   for (i = 0; i < NUM_HUFF_TBLS; i++) {
  548.     entropy->dc_derived_tbls[i] = entropy->ac_derived_tbls[i] = NULL;
  549.   }
  550. }