JDHUFF.c
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:19k
源码类别:

网络截获/分析

开发平台:

Visual C++

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