rdgif.c
Upload User: yxlamp
Upload Date: 2021-05-06
Package Size: 2833k
Code Size: 22k
Development Platform:

Visual C++

  1. /*
  2.  * rdgif.c
  3.  *
  4.  * Copyright (C) 1991-1996, 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.  **************************************************************************
  9.  * WARNING: You will need an LZW patent license from Unisys in order to   *
  10.  * use this file legally in any commercial or shareware application.      *
  11.  **************************************************************************
  12.  *
  13.  * This file contains routines to read input images in GIF format.
  14.  *
  15.  * These routines may need modification for non-Unix environments or
  16.  * specialized applications.  As they stand, they assume input from
  17.  * an ordinary stdio stream.  They further assume that reading begins
  18.  * at the start of the file; input_init may need work if the
  19.  * user interface has already read some data (e.g., to determine that
  20.  * the file is indeed GIF format).
  21.  */
  22. /*
  23.  * This code is loosely based on giftoppm from the PBMPLUS distribution
  24.  * of Feb. 1991.  That file contains the following copyright notice:
  25.  * +-------------------------------------------------------------------+
  26.  * | Copyright 1990, David Koblas.                                     |
  27.  * |   Permission to use, copy, modify, and distribute this software   |
  28.  * |   and its documentation for any purpose and without fee is hereby |
  29.  * |   granted, provided that the above copyright notice appear in all |
  30.  * |   copies and that both that copyright notice and this permission  |
  31.  * |   notice appear in supporting documentation.  This software is    |
  32.  * |   provided "as is" without express or implied warranty.           |
  33.  * +-------------------------------------------------------------------+
  34.  *
  35.  * We are also required to state that
  36.  *    "The Graphics Interchange Format(c) is the Copyright property of
  37.  *    CompuServe Incorporated. GIF(sm) is a Service Mark property of
  38.  *    CompuServe Incorporated."
  39.  */
  40. #include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
  41. #ifdef GIF_SUPPORTED
  42. #define MAXCOLORMAPSIZE 256 /* max # of colors in a GIF colormap */
  43. #define NUMCOLORS 3 /* # of colors */
  44. #define CM_RED 0 /* color component numbers */
  45. #define CM_GREEN 1
  46. #define CM_BLUE 2
  47. #define MAX_LZW_BITS 12 /* maximum LZW code size */
  48. #define LZW_TABLE_SIZE (1<<MAX_LZW_BITS) /* # of possible LZW symbols */
  49. /* Macros for extracting header data --- note we assume chars may be signed */
  50. #define LM_to_uint(a,b) ((((b)&0xFF) << 8) | ((a)&0xFF))
  51. #define BitSet(byte, bit) ((byte) & (bit))
  52. #define INTERLACE 0x40 /* mask for bit signifying interlaced image */
  53. #define COLORMAPFLAG 0x80 /* mask for bit signifying colormap presence */
  54. #define ReadOK(file,buffer,len) (JFREAD(file,buffer,len) == ((size_t) (len)))
  55. /* LZW decompression tables look like this:
  56.  *   symbol_head[K] = prefix symbol of any LZW symbol K (0..LZW_TABLE_SIZE-1)
  57.  *   symbol_tail[K] = suffix byte   of any LZW symbol K (0..LZW_TABLE_SIZE-1)
  58.  * Note that entries 0..end_code of the above tables are not used,
  59.  * since those symbols represent raw bytes or special codes.
  60.  *
  61.  * The stack represents the not-yet-used expansion of the last LZW symbol.
  62.  * In the worst case, a symbol could expand to as many bytes as there are
  63.  * LZW symbols, so we allocate LZW_TABLE_SIZE bytes for the stack.
  64.  * (This is conservative since that number includes the raw-byte symbols.)
  65.  *
  66.  * The tables are allocated from FAR heap space since they would use up
  67.  * rather a lot of the near data space in a PC.
  68.  */
  69. /* Private version of data source object */
  70. typedef struct {
  71.   struct cjpeg_source_struct pub; /* public fields */
  72.   j_compress_ptr cinfo; /* back link saves passing separate parm */
  73.   JSAMPARRAY colormap; /* GIF colormap (converted to my format) */
  74.   /* State for GetCode and LZWReadByte */
  75.   char code_buf[256+4]; /* current input data block */
  76.   int last_byte; /* # of bytes in code_buf */
  77.   int last_bit; /* # of bits in code_buf */
  78.   int cur_bit; /* next bit index to read */
  79.   boolean out_of_blocks; /* TRUE if hit terminator data block */
  80.   int input_code_size; /* codesize given in GIF file */
  81.   int clear_code,end_code; /* values for Clear and End codes */
  82.   int code_size; /* current actual code size */
  83.   int limit_code; /* 2^code_size */
  84.   int max_code; /* first unused code value */
  85.   boolean first_time; /* flags first call to LZWReadByte */
  86.   /* Private state for LZWReadByte */
  87.   int oldcode; /* previous LZW symbol */
  88.   int firstcode; /* first byte of oldcode's expansion */
  89.   /* LZW symbol table and expansion stack */
  90.   UINT16 FAR *symbol_head; /* => table of prefix symbols */
  91.   UINT8  FAR *symbol_tail; /* => table of suffix bytes */
  92.   UINT8  FAR *symbol_stack; /* => stack for symbol expansions */
  93.   UINT8  FAR *sp; /* stack pointer */
  94.   /* State for interlaced image processing */
  95.   boolean is_interlaced; /* TRUE if have interlaced image */
  96.   jvirt_sarray_ptr interlaced_image; /* full image in interlaced order */
  97.   JDIMENSION cur_row_number; /* need to know actual row number */
  98.   JDIMENSION pass2_offset; /* # of pixel rows in pass 1 */
  99.   JDIMENSION pass3_offset; /* # of pixel rows in passes 1&2 */
  100.   JDIMENSION pass4_offset; /* # of pixel rows in passes 1,2,3 */
  101. } gif_source_struct;
  102. typedef gif_source_struct * gif_source_ptr;
  103. /* Forward declarations */
  104. METHODDEF(JDIMENSION) get_pixel_rows
  105. JPP((j_compress_ptr cinfo, cjpeg_source_ptr sinfo));
  106. METHODDEF(JDIMENSION) load_interlaced_image
  107. JPP((j_compress_ptr cinfo, cjpeg_source_ptr sinfo));
  108. METHODDEF(JDIMENSION) get_interlaced_row
  109. JPP((j_compress_ptr cinfo, cjpeg_source_ptr sinfo));
  110. LOCAL(int)
  111. ReadByte (gif_source_ptr sinfo)
  112. /* Read next byte from GIF file */
  113. {
  114.   register FILE * infile = sinfo->pub.input_file;
  115.   int c;
  116.   if ((c = getc(infile)) == EOF)
  117.     ERREXIT(sinfo->cinfo, JERR_INPUT_EOF);
  118.   return c;
  119. }
  120. LOCAL(int)
  121. GetDataBlock (gif_source_ptr sinfo, char *buf)
  122. /* Read a GIF data block, which has a leading count byte */
  123. /* A zero-length block marks the end of a data block sequence */
  124. {
  125.   int count;
  126.   count = ReadByte(sinfo);
  127.   if (count > 0) {
  128.     if (! ReadOK(sinfo->pub.input_file, buf, count))
  129.       ERREXIT(sinfo->cinfo, JERR_INPUT_EOF);
  130.   }
  131.   return count;
  132. }
  133. LOCAL(void)
  134. SkipDataBlocks (gif_source_ptr sinfo)
  135. /* Skip a series of data blocks, until a block terminator is found */
  136. {
  137.   char buf[256];
  138.   while (GetDataBlock(sinfo, buf) > 0)
  139.     /* skip */;
  140. }
  141. LOCAL(void)
  142. ReInitLZW (gif_source_ptr sinfo)
  143. /* (Re)initialize LZW state; shared code for startup and Clear processing */
  144. {
  145.   sinfo->code_size = sinfo->input_code_size + 1;
  146.   sinfo->limit_code = sinfo->clear_code << 1; /* 2^code_size */
  147.   sinfo->max_code = sinfo->clear_code + 2; /* first unused code value */
  148.   sinfo->sp = sinfo->symbol_stack; /* init stack to empty */
  149. }
  150. LOCAL(void)
  151. InitLZWCode (gif_source_ptr sinfo)
  152. /* Initialize for a series of LZWReadByte (and hence GetCode) calls */
  153. {
  154.   /* GetCode initialization */
  155.   sinfo->last_byte = 2; /* make safe to "recopy last two bytes" */
  156.   sinfo->last_bit = 0; /* nothing in the buffer */
  157.   sinfo->cur_bit = 0; /* force buffer load on first call */
  158.   sinfo->out_of_blocks = FALSE;
  159.   /* LZWReadByte initialization: */
  160.   /* compute special code values (note that these do not change later) */
  161.   sinfo->clear_code = 1 << sinfo->input_code_size;
  162.   sinfo->end_code = sinfo->clear_code + 1;
  163.   sinfo->first_time = TRUE;
  164.   ReInitLZW(sinfo);
  165. }
  166. LOCAL(int)
  167. GetCode (gif_source_ptr sinfo)
  168. /* Fetch the next code_size bits from the GIF data */
  169. /* We assume code_size is less than 16 */
  170. {
  171.   register INT32 accum;
  172.   int offs, ret, count;
  173.   while ( (sinfo->cur_bit + sinfo->code_size) > sinfo->last_bit) {
  174.     /* Time to reload the buffer */
  175.     if (sinfo->out_of_blocks) {
  176.       WARNMS(sinfo->cinfo, JWRN_GIF_NOMOREDATA);
  177.       return sinfo->end_code; /* fake something useful */
  178.     }
  179.     /* preserve last two bytes of what we have -- assume code_size <= 16 */
  180.     sinfo->code_buf[0] = sinfo->code_buf[sinfo->last_byte-2];
  181.     sinfo->code_buf[1] = sinfo->code_buf[sinfo->last_byte-1];
  182.     /* Load more bytes; set flag if we reach the terminator block */
  183.     if ((count = GetDataBlock(sinfo, &sinfo->code_buf[2])) == 0) {
  184.       sinfo->out_of_blocks = TRUE;
  185.       WARNMS(sinfo->cinfo, JWRN_GIF_NOMOREDATA);
  186.       return sinfo->end_code; /* fake something useful */
  187.     }
  188.     /* Reset counters */
  189.     sinfo->cur_bit = (sinfo->cur_bit - sinfo->last_bit) + 16;
  190.     sinfo->last_byte = 2 + count;
  191.     sinfo->last_bit = sinfo->last_byte * 8;
  192.   }
  193.   /* Form up next 24 bits in accum */
  194.   offs = sinfo->cur_bit >> 3; /* byte containing cur_bit */
  195. #ifdef CHAR_IS_UNSIGNED
  196.   accum = sinfo->code_buf[offs+2];
  197.   accum <<= 8;
  198.   accum |= sinfo->code_buf[offs+1];
  199.   accum <<= 8;
  200.   accum |= sinfo->code_buf[offs];
  201. #else
  202.   accum = sinfo->code_buf[offs+2] & 0xFF;
  203.   accum <<= 8;
  204.   accum |= sinfo->code_buf[offs+1] & 0xFF;
  205.   accum <<= 8;
  206.   accum |= sinfo->code_buf[offs] & 0xFF;
  207. #endif
  208.   /* Right-align cur_bit in accum, then mask off desired number of bits */
  209.   accum >>= (sinfo->cur_bit & 7);
  210.   ret = ((int) accum) & ((1 << sinfo->code_size) - 1);
  211.   
  212.   sinfo->cur_bit += sinfo->code_size;
  213.   return ret;
  214. }
  215. LOCAL(int)
  216. LZWReadByte (gif_source_ptr sinfo)
  217. /* Read an LZW-compressed byte */
  218. {
  219.   register int code; /* current working code */
  220.   int incode; /* saves actual input code */
  221.   /* First time, just eat the expected Clear code(s) and return next code, */
  222.   /* which is expected to be a raw byte. */
  223.   if (sinfo->first_time) {
  224.     sinfo->first_time = FALSE;
  225.     code = sinfo->clear_code; /* enables sharing code with Clear case */
  226.   } else {
  227.     /* If any codes are stacked from a previously read symbol, return them */
  228.     if (sinfo->sp > sinfo->symbol_stack)
  229.       return (int) *(-- sinfo->sp);
  230.     /* Time to read a new symbol */
  231.     code = GetCode(sinfo);
  232.   }
  233.   if (code == sinfo->clear_code) {
  234.     /* Reinit state, swallow any extra Clear codes, and */
  235.     /* return next code, which is expected to be a raw byte. */
  236.     ReInitLZW(sinfo);
  237.     do {
  238.       code = GetCode(sinfo);
  239.     } while (code == sinfo->clear_code);
  240.     if (code > sinfo->clear_code) { /* make sure it is a raw byte */
  241.       WARNMS(sinfo->cinfo, JWRN_GIF_BADDATA);
  242.       code = 0; /* use something valid */
  243.     }
  244.     /* make firstcode, oldcode valid! */
  245.     sinfo->firstcode = sinfo->oldcode = code;
  246.     return code;
  247.   }
  248.   if (code == sinfo->end_code) {
  249.     /* Skip the rest of the image, unless GetCode already read terminator */
  250.     if (! sinfo->out_of_blocks) {
  251.       SkipDataBlocks(sinfo);
  252.       sinfo->out_of_blocks = TRUE;
  253.     }
  254.     /* Complain that there's not enough data */
  255.     WARNMS(sinfo->cinfo, JWRN_GIF_ENDCODE);
  256.     /* Pad data with 0's */
  257.     return 0; /* fake something usable */
  258.   }
  259.   /* Got normal raw byte or LZW symbol */
  260.   incode = code; /* save for a moment */
  261.   
  262.   if (code >= sinfo->max_code) { /* special case for not-yet-defined symbol */
  263.     /* code == max_code is OK; anything bigger is bad data */
  264.     if (code > sinfo->max_code) {
  265.       WARNMS(sinfo->cinfo, JWRN_GIF_BADDATA);
  266.       incode = 0; /* prevent creation of loops in symbol table */
  267.     }
  268.     /* this symbol will be defined as oldcode/firstcode */
  269.     *(sinfo->sp++) = (UINT8) sinfo->firstcode;
  270.     code = sinfo->oldcode;
  271.   }
  272.   /* If it's a symbol, expand it into the stack */
  273.   while (code >= sinfo->clear_code) {
  274.     *(sinfo->sp++) = sinfo->symbol_tail[code]; /* tail is a byte value */
  275.     code = sinfo->symbol_head[code]; /* head is another LZW symbol */
  276.   }
  277.   /* At this point code just represents a raw byte */
  278.   sinfo->firstcode = code; /* save for possible future use */
  279.   /* If there's room in table, */
  280.   if ((code = sinfo->max_code) < LZW_TABLE_SIZE) {
  281.     /* Define a new symbol = prev sym + head of this sym's expansion */
  282.     sinfo->symbol_head[code] = sinfo->oldcode;
  283.     sinfo->symbol_tail[code] = (UINT8) sinfo->firstcode;
  284.     sinfo->max_code++;
  285.     /* Is it time to increase code_size? */
  286.     if ((sinfo->max_code >= sinfo->limit_code) &&
  287. (sinfo->code_size < MAX_LZW_BITS)) {
  288.       sinfo->code_size++;
  289.       sinfo->limit_code <<= 1; /* keep equal to 2^code_size */
  290.     }
  291.   }
  292.   
  293.   sinfo->oldcode = incode; /* save last input symbol for future use */
  294.   return sinfo->firstcode; /* return first byte of symbol's expansion */
  295. }
  296. LOCAL(void)
  297. ReadColorMap (gif_source_ptr sinfo, int cmaplen, JSAMPARRAY cmap)
  298. /* Read a GIF colormap */
  299. {
  300.   int i;
  301.   for (i = 0; i < cmaplen; i++) {
  302. #if BITS_IN_JSAMPLE == 8
  303. #define UPSCALE(x)  (x)
  304. #else
  305. #define UPSCALE(x)  ((x) << (BITS_IN_JSAMPLE-8))
  306. #endif
  307.     cmap[CM_RED][i]   = (JSAMPLE) UPSCALE(ReadByte(sinfo));
  308.     cmap[CM_GREEN][i] = (JSAMPLE) UPSCALE(ReadByte(sinfo));
  309.     cmap[CM_BLUE][i]  = (JSAMPLE) UPSCALE(ReadByte(sinfo));
  310.   }
  311. }
  312. LOCAL(void)
  313. DoExtension (gif_source_ptr sinfo)
  314. /* Process an extension block */
  315. /* Currently we ignore 'em all */
  316. {
  317.   int extlabel;
  318.   /* Read extension label byte */
  319.   extlabel = ReadByte(sinfo);
  320.   TRACEMS1(sinfo->cinfo, 1, JTRC_GIF_EXTENSION, extlabel);
  321.   /* Skip the data block(s) associated with the extension */
  322.   SkipDataBlocks(sinfo);
  323. }
  324. /*
  325.  * Read the file header; return image size and component count.
  326.  */
  327. METHODDEF(void)
  328. start_input_gif (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
  329. {
  330.   gif_source_ptr source = (gif_source_ptr) sinfo;
  331.   char hdrbuf[10]; /* workspace for reading control blocks */
  332.   unsigned int width, height; /* image dimensions */
  333.   int colormaplen, aspectRatio;
  334.   int c;
  335.   /* Allocate space to store the colormap */
  336.   source->colormap = (*cinfo->mem->alloc_sarray)
  337.     ((j_common_ptr) cinfo, JPOOL_IMAGE,
  338.      (JDIMENSION) MAXCOLORMAPSIZE, (JDIMENSION) NUMCOLORS);
  339.   /* Read and verify GIF Header */
  340.   if (! ReadOK(source->pub.input_file, hdrbuf, 6))
  341.     ERREXIT(cinfo, JERR_GIF_NOT);
  342.   if (hdrbuf[0] != 'G' || hdrbuf[1] != 'I' || hdrbuf[2] != 'F')
  343.     ERREXIT(cinfo, JERR_GIF_NOT);
  344.   /* Check for expected version numbers.
  345.    * If unknown version, give warning and try to process anyway;
  346.    * this is per recommendation in GIF89a standard.
  347.    */
  348.   if ((hdrbuf[3] != '8' || hdrbuf[4] != '7' || hdrbuf[5] != 'a') &&
  349.       (hdrbuf[3] != '8' || hdrbuf[4] != '9' || hdrbuf[5] != 'a'))
  350.     TRACEMS3(cinfo, 1, JTRC_GIF_BADVERSION, hdrbuf[3], hdrbuf[4], hdrbuf[5]);
  351.   /* Read and decipher Logical Screen Descriptor */
  352.   if (! ReadOK(source->pub.input_file, hdrbuf, 7))
  353.     ERREXIT(cinfo, JERR_INPUT_EOF);
  354.   width = LM_to_uint(hdrbuf[0],hdrbuf[1]);
  355.   height = LM_to_uint(hdrbuf[2],hdrbuf[3]);
  356.   colormaplen = 2 << (hdrbuf[4] & 0x07);
  357.   /* we ignore the color resolution, sort flag, and background color index */
  358.   aspectRatio = hdrbuf[6] & 0xFF;
  359.   if (aspectRatio != 0 && aspectRatio != 49)
  360.     TRACEMS(cinfo, 1, JTRC_GIF_NONSQUARE);
  361.   /* Read global colormap if header indicates it is present */
  362.   if (BitSet(hdrbuf[4], COLORMAPFLAG))
  363.     ReadColorMap(source, colormaplen, source->colormap);
  364.   /* Scan until we reach start of desired image.
  365.    * We don't currently support skipping images, but could add it easily.
  366.    */
  367.   for (;;) {
  368.     c = ReadByte(source);
  369.     if (c == ';') /* GIF terminator?? */
  370.       ERREXIT(cinfo, JERR_GIF_IMAGENOTFOUND);
  371.     if (c == '!') { /* Extension */
  372.       DoExtension(source);
  373.       continue;
  374.     }
  375.     
  376.     if (c != ',') { /* Not an image separator? */
  377.       WARNMS1(cinfo, JWRN_GIF_CHAR, c);
  378.       continue;
  379.     }
  380.     /* Read and decipher Local Image Descriptor */
  381.     if (! ReadOK(source->pub.input_file, hdrbuf, 9))
  382.       ERREXIT(cinfo, JERR_INPUT_EOF);
  383.     /* we ignore top/left position info, also sort flag */
  384.     width = LM_to_uint(hdrbuf[4],hdrbuf[5]);
  385.     height = LM_to_uint(hdrbuf[6],hdrbuf[7]);
  386.     source->is_interlaced = BitSet(hdrbuf[8], INTERLACE);
  387.     /* Read local colormap if header indicates it is present */
  388.     /* Note: if we wanted to support skipping images, */
  389.     /* we'd need to skip rather than read colormap for ignored images */
  390.     if (BitSet(hdrbuf[8], COLORMAPFLAG)) {
  391.       colormaplen = 2 << (hdrbuf[8] & 0x07);
  392.       ReadColorMap(source, colormaplen, source->colormap);
  393.     }
  394.     source->input_code_size = ReadByte(source); /* get min-code-size byte */
  395.     if (source->input_code_size < 2 || source->input_code_size >= MAX_LZW_BITS)
  396.       ERREXIT1(cinfo, JERR_GIF_CODESIZE, source->input_code_size);
  397.     /* Reached desired image, so break out of loop */
  398.     /* If we wanted to skip this image, */
  399.     /* we'd call SkipDataBlocks and then continue the loop */
  400.     break;
  401.   }
  402.   /* Prepare to read selected image: first initialize LZW decompressor */
  403.   source->symbol_head = (UINT16 FAR *)
  404.     (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  405. LZW_TABLE_SIZE * SIZEOF(UINT16));
  406.   source->symbol_tail = (UINT8 FAR *)
  407.     (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  408. LZW_TABLE_SIZE * SIZEOF(UINT8));
  409.   source->symbol_stack = (UINT8 FAR *)
  410.     (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  411. LZW_TABLE_SIZE * SIZEOF(UINT8));
  412.   InitLZWCode(source);
  413.   /*
  414.    * If image is interlaced, we read it into a full-size sample array,
  415.    * decompressing as we go; then get_interlaced_row selects rows from the
  416.    * sample array in the proper order.
  417.    */
  418.   if (source->is_interlaced) {
  419.     /* We request the virtual array now, but can't access it until virtual
  420.      * arrays have been allocated.  Hence, the actual work of reading the
  421.      * image is postponed until the first call to get_pixel_rows.
  422.      */
  423.     source->interlaced_image = (*cinfo->mem->request_virt_sarray)
  424.       ((j_common_ptr) cinfo, JPOOL_IMAGE, FALSE,
  425.        (JDIMENSION) width, (JDIMENSION) height, (JDIMENSION) 1);
  426.     if (cinfo->progress != NULL) {
  427.       cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress;
  428.       progress->total_extra_passes++; /* count file input as separate pass */
  429.     }
  430.     source->pub.get_pixel_rows = load_interlaced_image;
  431.   } else {
  432.     source->pub.get_pixel_rows = get_pixel_rows;
  433.   }
  434.   /* Create compressor input buffer. */
  435.   source->pub.buffer = (*cinfo->mem->alloc_sarray)
  436.     ((j_common_ptr) cinfo, JPOOL_IMAGE,
  437.      (JDIMENSION) width * NUMCOLORS, (JDIMENSION) 1);
  438.   source->pub.buffer_height = 1;
  439.   /* Return info about the image. */
  440.   cinfo->in_color_space = JCS_RGB;
  441.   cinfo->input_components = NUMCOLORS;
  442.   cinfo->data_precision = BITS_IN_JSAMPLE; /* we always rescale data to this */
  443.   cinfo->image_width = width;
  444.   cinfo->image_height = height;
  445.   TRACEMS3(cinfo, 1, JTRC_GIF, width, height, colormaplen);
  446. }
  447. /*
  448.  * Read one row of pixels.
  449.  * This version is used for noninterlaced GIF images:
  450.  * we read directly from the GIF file.
  451.  */
  452. METHODDEF(JDIMENSION)
  453. get_pixel_rows (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
  454. {
  455.   gif_source_ptr source = (gif_source_ptr) sinfo;
  456.   register int c;
  457.   register JSAMPROW ptr;
  458.   register JDIMENSION col;
  459.   register JSAMPARRAY colormap = source->colormap;
  460.   
  461.   ptr = source->pub.buffer[0];
  462.   for (col = cinfo->image_width; col > 0; col--) {
  463.     c = LZWReadByte(source);
  464.     *ptr++ = colormap[CM_RED][c];
  465.     *ptr++ = colormap[CM_GREEN][c];
  466.     *ptr++ = colormap[CM_BLUE][c];
  467.   }
  468.   return 1;
  469. }
  470. /*
  471.  * Read one row of pixels.
  472.  * This version is used for the first call on get_pixel_rows when
  473.  * reading an interlaced GIF file: we read the whole image into memory.
  474.  */
  475. METHODDEF(JDIMENSION)
  476. load_interlaced_image (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
  477. {
  478.   gif_source_ptr source = (gif_source_ptr) sinfo;
  479.   JSAMPARRAY image_ptr;
  480.   register JSAMPROW sptr;
  481.   register JDIMENSION col;
  482.   JDIMENSION row;
  483.   cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress;
  484.   /* Read the interlaced image into the virtual array we've created. */
  485.   for (row = 0; row < cinfo->image_height; row++) {
  486.     if (progress != NULL) {
  487.       progress->pub.pass_counter = (long) row;
  488.       progress->pub.pass_limit = (long) cinfo->image_height;
  489.       (*progress->pub.progress_monitor) ((j_common_ptr) cinfo);
  490.     }
  491.     image_ptr = (*cinfo->mem->access_virt_sarray)
  492.       ((j_common_ptr) cinfo, source->interlaced_image,
  493.        row, (JDIMENSION) 1, TRUE);
  494.     sptr = image_ptr[0];
  495.     for (col = cinfo->image_width; col > 0; col--) {
  496.       *sptr++ = (JSAMPLE) LZWReadByte(source);
  497.     }
  498.   }
  499.   if (progress != NULL)
  500.     progress->completed_extra_passes++;
  501.   /* Replace method pointer so subsequent calls don't come here. */
  502.   source->pub.get_pixel_rows = get_interlaced_row;
  503.   /* Initialize for get_interlaced_row, and perform first call on it. */
  504.   source->cur_row_number = 0;
  505.   source->pass2_offset = (cinfo->image_height + 7) / 8;
  506.   source->pass3_offset = source->pass2_offset + (cinfo->image_height + 3) / 8;
  507.   source->pass4_offset = source->pass3_offset + (cinfo->image_height + 1) / 4;
  508.   return get_interlaced_row(cinfo, sinfo);
  509. }
  510. /*
  511.  * Read one row of pixels.
  512.  * This version is used for interlaced GIF images:
  513.  * we read from the virtual array.
  514.  */
  515. METHODDEF(JDIMENSION)
  516. get_interlaced_row (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
  517. {
  518.   gif_source_ptr source = (gif_source_ptr) sinfo;
  519.   JSAMPARRAY image_ptr;
  520.   register int c;
  521.   register JSAMPROW sptr, ptr;
  522.   register JDIMENSION col;
  523.   register JSAMPARRAY colormap = source->colormap;
  524.   JDIMENSION irow;
  525.   /* Figure out which row of interlaced image is needed, and access it. */
  526.   switch ((int) (source->cur_row_number & 7)) {
  527.   case 0: /* first-pass row */
  528.     irow = source->cur_row_number >> 3;
  529.     break;
  530.   case 4: /* second-pass row */
  531.     irow = (source->cur_row_number >> 3) + source->pass2_offset;
  532.     break;
  533.   case 2: /* third-pass row */
  534.   case 6:
  535.     irow = (source->cur_row_number >> 2) + source->pass3_offset;
  536.     break;
  537.   default: /* fourth-pass row */
  538.     irow = (source->cur_row_number >> 1) + source->pass4_offset;
  539.     break;
  540.   }
  541.   image_ptr = (*cinfo->mem->access_virt_sarray)
  542.     ((j_common_ptr) cinfo, source->interlaced_image,
  543.      irow, (JDIMENSION) 1, FALSE);
  544.   /* Scan the row, expand colormap, and output */
  545.   sptr = image_ptr[0];
  546.   ptr = source->pub.buffer[0];
  547.   for (col = cinfo->image_width; col > 0; col--) {
  548.     c = GETJSAMPLE(*sptr++);
  549.     *ptr++ = colormap[CM_RED][c];
  550.     *ptr++ = colormap[CM_GREEN][c];
  551.     *ptr++ = colormap[CM_BLUE][c];
  552.   }
  553.   source->cur_row_number++; /* for next time */
  554.   return 1;
  555. }
  556. /*
  557.  * Finish up at the end of the file.
  558.  */
  559. METHODDEF(void)
  560. finish_input_gif (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
  561. {
  562.   /* no work */
  563. }
  564. /*
  565.  * The module selection routine for GIF format input.
  566.  */
  567. GLOBAL(cjpeg_source_ptr)
  568. jinit_read_gif (j_compress_ptr cinfo)
  569. {
  570.   gif_source_ptr source;
  571.   /* Create module interface object */
  572.   source = (gif_source_ptr)
  573.       (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  574.   SIZEOF(gif_source_struct));
  575.   source->cinfo = cinfo; /* make back link for subroutines */
  576.   /* Fill in method ptrs, except get_pixel_rows which start_input sets */
  577.   source->pub.start_input = start_input_gif;
  578.   source->pub.finish_input = finish_input_gif;
  579.   return (cjpeg_source_ptr) source;
  580. }
  581. #endif /* GIF_SUPPORTED */