/src/libjpeg-turbo.3.0.x/rdgif.c
Line | Count | Source |
1 | | /* |
2 | | * rdgif.c |
3 | | * |
4 | | * This file was part of the Independent JPEG Group's software: |
5 | | * Copyright (C) 1991-1997, Thomas G. Lane. |
6 | | * Modified 2019 by Guido Vollbeding. |
7 | | * libjpeg-turbo Modifications: |
8 | | * Copyright (C) 2021-2023, D. R. Commander. |
9 | | * For conditions of distribution and use, see the accompanying README.ijg |
10 | | * file. |
11 | | * |
12 | | * This file contains routines to read input images in GIF format. |
13 | | * |
14 | | * These routines may need modification for non-Unix environments or |
15 | | * specialized applications. As they stand, they assume input from |
16 | | * an ordinary stdio stream. They further assume that reading begins |
17 | | * at the start of the file; start_input may need work if the |
18 | | * user interface has already read some data (e.g., to determine that |
19 | | * the file is indeed GIF format). |
20 | | */ |
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 | | |
36 | | #include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */ |
37 | | #include "jsamplecomp.h" |
38 | | |
39 | | #if defined(GIF_SUPPORTED) && \ |
40 | | (BITS_IN_JSAMPLE != 16 || defined(C_LOSSLESS_SUPPORTED)) |
41 | | |
42 | | |
43 | | /* Macros to deal with unsigned chars as efficiently as compiler allows */ |
44 | | |
45 | | typedef unsigned char U_CHAR; |
46 | 24.5M | #define UCH(x) ((int)(x)) |
47 | | |
48 | | |
49 | | #define ReadOK(file, buffer, len) \ |
50 | 107k | (fread(buffer, 1, len, file) == ((size_t)(len))) |
51 | | |
52 | | |
53 | 1.82k | #define MAXCOLORMAPSIZE 256 /* max # of colors in a GIF colormap */ |
54 | 2.82k | #define NUMCOLORS 3 /* # of colors */ |
55 | 320M | #define CM_RED 0 /* color component numbers */ |
56 | 287M | #define CM_GREEN 1 |
57 | 287M | #define CM_BLUE 2 |
58 | | |
59 | 8.18M | #define MAX_LZW_BITS 12 /* maximum LZW code size */ |
60 | 8.17M | #define LZW_TABLE_SIZE (1 << MAX_LZW_BITS) /* # of possible LZW symbols */ |
61 | | |
62 | | /* Macros for extracting header data --- note we assume chars may be signed */ |
63 | | |
64 | | #define LM_to_uint(array, offset) \ |
65 | 6.56k | ((unsigned int)UCH(array[offset]) + \ |
66 | 6.56k | (((unsigned int)UCH(array[offset + 1])) << 8)) |
67 | | |
68 | 4.74k | #define BitSet(byte, bit) ((byte) & (bit)) |
69 | | #define INTERLACE 0x40 /* mask for bit signifying interlaced image */ |
70 | | #define COLORMAPFLAG 0x80 /* mask for bit signifying colormap presence */ |
71 | | |
72 | | |
73 | | /* |
74 | | * LZW decompression tables look like this: |
75 | | * symbol_head[K] = prefix symbol of any LZW symbol K (0..LZW_TABLE_SIZE-1) |
76 | | * symbol_tail[K] = suffix byte of any LZW symbol K (0..LZW_TABLE_SIZE-1) |
77 | | * Note that entries 0..end_code of the above tables are not used, |
78 | | * since those symbols represent raw bytes or special codes. |
79 | | * |
80 | | * The stack represents the not-yet-used expansion of the last LZW symbol. |
81 | | * In the worst case, a symbol could expand to as many bytes as there are |
82 | | * LZW symbols, so we allocate LZW_TABLE_SIZE bytes for the stack. |
83 | | * (This is conservative since that number includes the raw-byte symbols.) |
84 | | */ |
85 | | |
86 | | |
87 | | /* Private version of data source object */ |
88 | | |
89 | | typedef struct { |
90 | | struct cjpeg_source_struct pub; /* public fields */ |
91 | | |
92 | | j_compress_ptr cinfo; /* back link saves passing separate parm */ |
93 | | |
94 | | _JSAMPARRAY colormap; /* GIF colormap (converted to my format) */ |
95 | | |
96 | | /* State for GetCode and LZWReadByte */ |
97 | | U_CHAR code_buf[256 + 4]; /* current input data block */ |
98 | | int last_byte; /* # of bytes in code_buf */ |
99 | | int last_bit; /* # of bits in code_buf */ |
100 | | int cur_bit; /* next bit index to read */ |
101 | | boolean first_time; /* flags first call to GetCode */ |
102 | | boolean out_of_blocks; /* TRUE if hit terminator data block */ |
103 | | |
104 | | int input_code_size; /* codesize given in GIF file */ |
105 | | int clear_code, end_code; /* values for Clear and End codes */ |
106 | | |
107 | | int code_size; /* current actual code size */ |
108 | | int limit_code; /* 2^code_size */ |
109 | | int max_code; /* first unused code value */ |
110 | | |
111 | | /* Private state for LZWReadByte */ |
112 | | int oldcode; /* previous LZW symbol */ |
113 | | int firstcode; /* first byte of oldcode's expansion */ |
114 | | |
115 | | /* LZW symbol table and expansion stack */ |
116 | | UINT16 *symbol_head; /* => table of prefix symbols */ |
117 | | UINT8 *symbol_tail; /* => table of suffix bytes */ |
118 | | UINT8 *symbol_stack; /* => stack for symbol expansions */ |
119 | | UINT8 *sp; /* stack pointer */ |
120 | | |
121 | | /* State for interlaced image processing */ |
122 | | boolean is_interlaced; /* TRUE if have interlaced image */ |
123 | | jvirt_sarray_ptr interlaced_image; /* full image in interlaced order */ |
124 | | JDIMENSION cur_row_number; /* need to know actual row number */ |
125 | | JDIMENSION pass2_offset; /* # of pixel rows in pass 1 */ |
126 | | JDIMENSION pass3_offset; /* # of pixel rows in passes 1&2 */ |
127 | | JDIMENSION pass4_offset; /* # of pixel rows in passes 1,2,3 */ |
128 | | } gif_source_struct; |
129 | | |
130 | | typedef gif_source_struct *gif_source_ptr; |
131 | | |
132 | | |
133 | | /* Forward declarations */ |
134 | | METHODDEF(JDIMENSION) get_pixel_rows(j_compress_ptr cinfo, |
135 | | cjpeg_source_ptr sinfo); |
136 | | METHODDEF(JDIMENSION) load_interlaced_image(j_compress_ptr cinfo, |
137 | | cjpeg_source_ptr sinfo); |
138 | | METHODDEF(JDIMENSION) get_interlaced_row(j_compress_ptr cinfo, |
139 | | cjpeg_source_ptr sinfo); |
140 | | |
141 | | |
142 | | LOCAL(int) |
143 | | ReadByte(gif_source_ptr sinfo) |
144 | | /* Read next byte from GIF file */ |
145 | 129k | { |
146 | 129k | register FILE *infile = sinfo->pub.input_file; |
147 | 129k | register int c; |
148 | | |
149 | 129k | if ((c = getc(infile)) == EOF) |
150 | 310 | ERREXIT(sinfo->cinfo, JERR_INPUT_EOF); |
151 | 129k | return c; |
152 | 129k | } |
153 | | |
154 | | |
155 | | LOCAL(int) |
156 | | GetDataBlock(gif_source_ptr sinfo, U_CHAR *buf) |
157 | | /* Read a GIF data block, which has a leading count byte */ |
158 | | /* A zero-length block marks the end of a data block sequence */ |
159 | 103k | { |
160 | 103k | int count; |
161 | | |
162 | 103k | count = ReadByte(sinfo); |
163 | 103k | if (count > 0) { |
164 | 102k | if (!ReadOK(sinfo->pub.input_file, buf, count)) |
165 | 213 | ERREXIT(sinfo->cinfo, JERR_INPUT_EOF); |
166 | 102k | } |
167 | 103k | return count; |
168 | 103k | } |
169 | | |
170 | | |
171 | | LOCAL(void) |
172 | | SkipDataBlocks(gif_source_ptr sinfo) |
173 | | /* Skip a series of data blocks, until a block terminator is found */ |
174 | 600 | { |
175 | 600 | U_CHAR buf[256]; |
176 | | |
177 | 2.37k | while (GetDataBlock(sinfo, buf) > 0) |
178 | 1.77k | /* skip */; |
179 | 600 | } |
180 | | |
181 | | |
182 | | LOCAL(void) |
183 | | ReInitLZW(gif_source_ptr sinfo) |
184 | | /* (Re)initialize LZW state; shared code for startup and Clear processing */ |
185 | 4.74k | { |
186 | 4.74k | sinfo->code_size = sinfo->input_code_size + 1; |
187 | 4.74k | sinfo->limit_code = sinfo->clear_code << 1; /* 2^code_size */ |
188 | 4.74k | sinfo->max_code = sinfo->clear_code + 2; /* first unused code value */ |
189 | 4.74k | sinfo->sp = sinfo->symbol_stack; /* init stack to empty */ |
190 | 4.74k | } |
191 | | |
192 | | |
193 | | LOCAL(void) |
194 | | InitLZWCode(gif_source_ptr sinfo) |
195 | | /* Initialize for a series of LZWReadByte (and hence GetCode) calls */ |
196 | 1.23k | { |
197 | | /* GetCode initialization */ |
198 | 1.23k | sinfo->last_byte = 2; /* make safe to "recopy last two bytes" */ |
199 | 1.23k | sinfo->code_buf[0] = 0; |
200 | 1.23k | sinfo->code_buf[1] = 0; |
201 | 1.23k | sinfo->last_bit = 0; /* nothing in the buffer */ |
202 | 1.23k | sinfo->cur_bit = 0; /* force buffer load on first call */ |
203 | 1.23k | sinfo->first_time = TRUE; |
204 | 1.23k | sinfo->out_of_blocks = FALSE; |
205 | | |
206 | | /* LZWReadByte initialization: */ |
207 | | /* compute special code values (note that these do not change later) */ |
208 | 1.23k | sinfo->clear_code = 1 << sinfo->input_code_size; |
209 | 1.23k | sinfo->end_code = sinfo->clear_code + 1; |
210 | 1.23k | ReInitLZW(sinfo); |
211 | 1.23k | } |
212 | | |
213 | | |
214 | | LOCAL(int) |
215 | | GetCode(gif_source_ptr sinfo) |
216 | | /* Fetch the next code_size bits from the GIF data */ |
217 | | /* We assume code_size is less than 16 */ |
218 | 305M | { |
219 | 305M | register int accum; |
220 | 305M | int offs, count; |
221 | | |
222 | 305M | while (sinfo->cur_bit + sinfo->code_size > sinfo->last_bit) { |
223 | | /* Time to reload the buffer */ |
224 | | /* First time, share code with Clear case */ |
225 | 296M | if (sinfo->first_time) { |
226 | 1.11k | sinfo->first_time = FALSE; |
227 | 1.11k | return sinfo->clear_code; |
228 | 1.11k | } |
229 | 296M | if (sinfo->out_of_blocks) { |
230 | 296M | WARNMS(sinfo->cinfo, JWRN_GIF_NOMOREDATA); |
231 | 296M | return sinfo->end_code; /* fake something useful */ |
232 | 296M | } |
233 | | /* preserve last two bytes of what we have -- assume code_size <= 16 */ |
234 | 101k | sinfo->code_buf[0] = sinfo->code_buf[sinfo->last_byte-2]; |
235 | 101k | sinfo->code_buf[1] = sinfo->code_buf[sinfo->last_byte-1]; |
236 | | /* Load more bytes; set flag if we reach the terminator block */ |
237 | 101k | if ((count = GetDataBlock(sinfo, &sinfo->code_buf[2])) == 0) { |
238 | 583 | sinfo->out_of_blocks = TRUE; |
239 | 583 | WARNMS(sinfo->cinfo, JWRN_GIF_NOMOREDATA); |
240 | 583 | return sinfo->end_code; /* fake something useful */ |
241 | 583 | } |
242 | | /* Reset counters */ |
243 | 100k | sinfo->cur_bit = (sinfo->cur_bit - sinfo->last_bit) + 16; |
244 | 100k | sinfo->last_byte = 2 + count; |
245 | 100k | sinfo->last_bit = sinfo->last_byte * 8; |
246 | 100k | } |
247 | | |
248 | | /* Form up next 24 bits in accum */ |
249 | 8.17M | offs = sinfo->cur_bit >> 3; /* byte containing cur_bit */ |
250 | 8.17M | accum = UCH(sinfo->code_buf[offs + 2]); |
251 | 8.17M | accum <<= 8; |
252 | 8.17M | accum |= UCH(sinfo->code_buf[offs + 1]); |
253 | 8.17M | accum <<= 8; |
254 | 8.17M | accum |= UCH(sinfo->code_buf[offs]); |
255 | | |
256 | | /* Right-align cur_bit in accum, then mask off desired number of bits */ |
257 | 8.17M | accum >>= (sinfo->cur_bit & 7); |
258 | 8.17M | sinfo->cur_bit += sinfo->code_size; |
259 | 8.17M | return accum & ((1 << sinfo->code_size) - 1); |
260 | 305M | } |
261 | | |
262 | | |
263 | | LOCAL(int) |
264 | | LZWReadByte(gif_source_ptr sinfo) |
265 | | /* Read an LZW-compressed byte */ |
266 | 320M | { |
267 | 320M | register int code; /* current working code */ |
268 | 320M | int incode; /* saves actual input code */ |
269 | | |
270 | | /* If any codes are stacked from a previously read symbol, return them */ |
271 | 320M | if (sinfo->sp > sinfo->symbol_stack) |
272 | 15.9M | return (int)(*(--sinfo->sp)); |
273 | | |
274 | | /* Time to read a new symbol */ |
275 | 305M | code = GetCode(sinfo); |
276 | | |
277 | 305M | if (code == sinfo->clear_code) { |
278 | | /* Reinit state, swallow any extra Clear codes, and */ |
279 | | /* return next code, which is expected to be a raw byte. */ |
280 | 3.51k | ReInitLZW(sinfo); |
281 | 3.94k | do { |
282 | 3.94k | code = GetCode(sinfo); |
283 | 3.94k | } while (code == sinfo->clear_code); |
284 | 3.51k | if (code > sinfo->clear_code) { /* make sure it is a raw byte */ |
285 | 1.05k | WARNMS(sinfo->cinfo, JWRN_GIF_BADDATA); |
286 | 1.05k | code = 0; /* use something valid */ |
287 | 1.05k | } |
288 | | /* make firstcode, oldcode valid! */ |
289 | 3.51k | sinfo->firstcode = sinfo->oldcode = code; |
290 | 3.51k | return code; |
291 | 3.51k | } |
292 | | |
293 | 305M | if (code == sinfo->end_code) { |
294 | | /* Skip the rest of the image, unless GetCode already read terminator */ |
295 | 296M | if (!sinfo->out_of_blocks) { |
296 | 266 | SkipDataBlocks(sinfo); |
297 | 266 | sinfo->out_of_blocks = TRUE; |
298 | 266 | } |
299 | | /* Complain that there's not enough data */ |
300 | 296M | WARNMS(sinfo->cinfo, JWRN_GIF_ENDCODE); |
301 | | /* Pad data with 0's */ |
302 | 296M | return 0; /* fake something usable */ |
303 | 296M | } |
304 | | |
305 | | /* Got normal raw byte or LZW symbol */ |
306 | 8.17M | incode = code; /* save for a moment */ |
307 | | |
308 | 8.17M | if (code >= sinfo->max_code) { /* special case for not-yet-defined symbol */ |
309 | | /* code == max_code is OK; anything bigger is bad data */ |
310 | 579k | if (code > sinfo->max_code) { |
311 | 576k | WARNMS(sinfo->cinfo, JWRN_GIF_BADDATA); |
312 | 576k | incode = 0; /* prevent creation of loops in symbol table */ |
313 | 576k | } |
314 | | /* this symbol will be defined as oldcode/firstcode */ |
315 | 579k | *(sinfo->sp++) = (UINT8)sinfo->firstcode; |
316 | 579k | code = sinfo->oldcode; |
317 | 579k | } |
318 | | |
319 | | /* If it's a symbol, expand it into the stack */ |
320 | 23.5M | while (code >= sinfo->clear_code) { |
321 | 15.3M | *(sinfo->sp++) = sinfo->symbol_tail[code]; /* tail is a byte value */ |
322 | 15.3M | code = sinfo->symbol_head[code]; /* head is another LZW symbol */ |
323 | 15.3M | } |
324 | | /* At this point code just represents a raw byte */ |
325 | 8.17M | sinfo->firstcode = code; /* save for possible future use */ |
326 | | |
327 | | /* If there's room in table... */ |
328 | 8.17M | if ((code = sinfo->max_code) < LZW_TABLE_SIZE) { |
329 | | /* Define a new symbol = prev sym + head of this sym's expansion */ |
330 | 2.38M | sinfo->symbol_head[code] = (UINT16)sinfo->oldcode; |
331 | 2.38M | sinfo->symbol_tail[code] = (UINT8)sinfo->firstcode; |
332 | 2.38M | sinfo->max_code++; |
333 | | /* Is it time to increase code_size? */ |
334 | 2.38M | if (sinfo->max_code >= sinfo->limit_code && |
335 | 5.29k | sinfo->code_size < MAX_LZW_BITS) { |
336 | 4.90k | sinfo->code_size++; |
337 | 4.90k | sinfo->limit_code <<= 1; /* keep equal to 2^code_size */ |
338 | 4.90k | } |
339 | 2.38M | } |
340 | | |
341 | 8.17M | sinfo->oldcode = incode; /* save last input symbol for future use */ |
342 | 8.17M | return sinfo->firstcode; /* return first byte of symbol's expansion */ |
343 | 305M | } |
344 | | |
345 | | |
346 | | LOCAL(void) |
347 | | ReadColorMap(gif_source_ptr sinfo, int cmaplen, _JSAMPARRAY cmap) |
348 | | /* Read a GIF colormap */ |
349 | 1.12k | { |
350 | 1.12k | int i, gray = 1; |
351 | | |
352 | 5.82k | for (i = 0; i < cmaplen; i++) { |
353 | 4.70k | #if BITS_IN_JSAMPLE == 8 |
354 | 14.1k | #define UPSCALE(x) (x) |
355 | | #else |
356 | | #define UPSCALE(x) ((x) << (BITS_IN_JSAMPLE - 8)) |
357 | | #endif |
358 | 4.70k | cmap[CM_RED][i] = (_JSAMPLE)UPSCALE(ReadByte(sinfo)); |
359 | 4.70k | cmap[CM_GREEN][i] = (_JSAMPLE)UPSCALE(ReadByte(sinfo)); |
360 | 4.70k | cmap[CM_BLUE][i] = (_JSAMPLE)UPSCALE(ReadByte(sinfo)); |
361 | 4.70k | if (cmap[CM_RED][i] != cmap[CM_GREEN][i] || |
362 | 2.75k | cmap[CM_GREEN][i] != cmap[CM_BLUE][i]) |
363 | 2.74k | gray = 0; |
364 | 4.70k | } |
365 | | |
366 | 1.12k | if (sinfo->cinfo->in_color_space == JCS_RGB && gray) { |
367 | 252 | sinfo->cinfo->in_color_space = JCS_GRAYSCALE; |
368 | 252 | sinfo->cinfo->input_components = 1; |
369 | 252 | } |
370 | 1.12k | } |
371 | | |
372 | | |
373 | | LOCAL(void) |
374 | | DoExtension(gif_source_ptr sinfo) |
375 | | /* Process an extension block */ |
376 | | /* Currently we ignore 'em all */ |
377 | 336 | { |
378 | 336 | int extlabel; |
379 | | |
380 | | /* Read extension label byte */ |
381 | 336 | extlabel = ReadByte(sinfo); |
382 | 336 | TRACEMS1(sinfo->cinfo, 1, JTRC_GIF_EXTENSION, extlabel); |
383 | | /* Skip the data block(s) associated with the extension */ |
384 | 336 | SkipDataBlocks(sinfo); |
385 | 336 | } |
386 | | |
387 | | |
388 | | /* |
389 | | * Read the file header; return image size and component count. |
390 | | */ |
391 | | |
392 | | METHODDEF(void) |
393 | | start_input_gif(j_compress_ptr cinfo, cjpeg_source_ptr sinfo) |
394 | 1.82k | { |
395 | 1.82k | gif_source_ptr source = (gif_source_ptr)sinfo; |
396 | 1.82k | U_CHAR hdrbuf[10]; /* workspace for reading control blocks */ |
397 | 1.82k | unsigned int width, height; /* image dimensions */ |
398 | 1.82k | int colormaplen, aspectRatio; |
399 | 1.82k | int c; |
400 | | |
401 | | /* Read and verify GIF Header */ |
402 | 1.82k | if (!ReadOK(source->pub.input_file, hdrbuf, 6)) |
403 | 8 | ERREXIT(cinfo, JERR_GIF_NOT); |
404 | 1.82k | if (hdrbuf[0] != 'G' || hdrbuf[1] != 'I' || hdrbuf[2] != 'F') |
405 | 40 | ERREXIT(cinfo, JERR_GIF_NOT); |
406 | | /* Check for expected version numbers. |
407 | | * If unknown version, give warning and try to process anyway; |
408 | | * this is per recommendation in GIF89a standard. |
409 | | */ |
410 | 1.82k | if ((hdrbuf[3] != '8' || hdrbuf[4] != '7' || hdrbuf[5] != 'a') && |
411 | 1.77k | (hdrbuf[3] != '8' || hdrbuf[4] != '9' || hdrbuf[5] != 'a')) |
412 | 1.82k | TRACEMS3(cinfo, 1, JTRC_GIF_BADVERSION, hdrbuf[3], hdrbuf[4], hdrbuf[5]); |
413 | | |
414 | | /* Read and decipher Logical Screen Descriptor */ |
415 | 1.82k | if (!ReadOK(source->pub.input_file, hdrbuf, 7)) |
416 | 94 | ERREXIT(cinfo, JERR_INPUT_EOF); |
417 | 1.82k | width = LM_to_uint(hdrbuf, 0); |
418 | 1.82k | height = LM_to_uint(hdrbuf, 2); |
419 | 1.82k | if (width == 0 || height == 0) |
420 | 4 | ERREXIT(cinfo, JERR_GIF_EMPTY); |
421 | 1.82k | if (sinfo->max_pixels && |
422 | 1.68k | (unsigned long long)width * height > sinfo->max_pixels) |
423 | 74 | ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, sinfo->max_pixels); |
424 | | /* we ignore the color resolution, sort flag, and background color index */ |
425 | 1.82k | aspectRatio = UCH(hdrbuf[6]); |
426 | 1.82k | if (aspectRatio != 0 && aspectRatio != 49) |
427 | 862 | TRACEMS(cinfo, 1, JTRC_GIF_NONSQUARE); |
428 | | |
429 | | /* Allocate space to store the colormap */ |
430 | 1.82k | source->colormap = (_JSAMPARRAY)(*cinfo->mem->alloc_sarray) |
431 | 1.82k | ((j_common_ptr)cinfo, JPOOL_IMAGE, (JDIMENSION)MAXCOLORMAPSIZE, |
432 | 1.82k | (JDIMENSION)NUMCOLORS); |
433 | 1.82k | colormaplen = 0; /* indicate initialization */ |
434 | | |
435 | | /* Read global colormap if header indicates it is present */ |
436 | 1.82k | if (BitSet(hdrbuf[4], COLORMAPFLAG)) { |
437 | 856 | colormaplen = 2 << (hdrbuf[4] & 0x07); |
438 | 856 | ReadColorMap(source, colormaplen, source->colormap); |
439 | 856 | } |
440 | | |
441 | | /* Scan until we reach start of desired image. |
442 | | * We don't currently support skipping images, but could add it easily. |
443 | | */ |
444 | 9.73k | for (;;) { |
445 | 9.73k | c = ReadByte(source); |
446 | | |
447 | 9.73k | if (c == ';') /* GIF terminator?? */ |
448 | 4 | ERREXIT(cinfo, JERR_GIF_IMAGENOTFOUND); |
449 | | |
450 | 9.73k | if (c == '!') { /* Extension */ |
451 | 336 | DoExtension(source); |
452 | 336 | continue; |
453 | 336 | } |
454 | | |
455 | 9.39k | if (c != ',') { /* Not an image separator? */ |
456 | 7.94k | WARNMS1(cinfo, JWRN_GIF_CHAR, c); |
457 | 7.94k | continue; |
458 | 7.94k | } |
459 | | |
460 | | /* Read and decipher Local Image Descriptor */ |
461 | 1.45k | if (!ReadOK(source->pub.input_file, hdrbuf, 9)) |
462 | 10 | ERREXIT(cinfo, JERR_INPUT_EOF); |
463 | | /* we ignore top/left position info, also sort flag */ |
464 | 1.45k | width = LM_to_uint(hdrbuf, 4); |
465 | 1.45k | height = LM_to_uint(hdrbuf, 6); |
466 | 1.45k | if (width == 0 || height == 0) |
467 | 4 | ERREXIT(cinfo, JERR_GIF_EMPTY); |
468 | 1.45k | if (sinfo->max_pixels && |
469 | 1.35k | (unsigned long long)width * height > sinfo->max_pixels) |
470 | 80 | ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, sinfo->max_pixels); |
471 | 1.45k | source->is_interlaced = (BitSet(hdrbuf[8], INTERLACE) != 0); |
472 | | |
473 | | /* Read local colormap if header indicates it is present */ |
474 | | /* Note: if we wanted to support skipping images, */ |
475 | | /* we'd need to skip rather than read colormap for ignored images */ |
476 | 1.45k | if (BitSet(hdrbuf[8], COLORMAPFLAG)) { |
477 | 268 | colormaplen = 2 << (hdrbuf[8] & 0x07); |
478 | 268 | ReadColorMap(source, colormaplen, source->colormap); |
479 | 268 | } |
480 | | |
481 | 1.45k | source->input_code_size = ReadByte(source); /* get min-code-size byte */ |
482 | 1.45k | if (source->input_code_size < 2 || source->input_code_size > 8) |
483 | 22 | ERREXIT1(cinfo, JERR_GIF_CODESIZE, source->input_code_size); |
484 | | |
485 | | /* Reached desired image, so break out of loop */ |
486 | | /* If we wanted to skip this image, */ |
487 | | /* we'd call SkipDataBlocks and then continue the loop */ |
488 | 1.45k | break; |
489 | 9.39k | } |
490 | | |
491 | | /* Prepare to read selected image: first initialize LZW decompressor */ |
492 | 1.82k | source->symbol_head = (UINT16 *) |
493 | 1.82k | (*cinfo->mem->alloc_large) ((j_common_ptr)cinfo, JPOOL_IMAGE, |
494 | 1.82k | LZW_TABLE_SIZE * sizeof(UINT16)); |
495 | 1.82k | source->symbol_tail = (UINT8 *) |
496 | 1.82k | (*cinfo->mem->alloc_large) ((j_common_ptr)cinfo, JPOOL_IMAGE, |
497 | 1.82k | LZW_TABLE_SIZE * sizeof(UINT8)); |
498 | 1.82k | source->symbol_stack = (UINT8 *) |
499 | 1.82k | (*cinfo->mem->alloc_large) ((j_common_ptr)cinfo, JPOOL_IMAGE, |
500 | 1.82k | LZW_TABLE_SIZE * sizeof(UINT8)); |
501 | 1.82k | InitLZWCode(source); |
502 | | |
503 | | /* |
504 | | * If image is interlaced, we read it into a full-size sample array, |
505 | | * decompressing as we go; then get_interlaced_row selects rows from the |
506 | | * sample array in the proper order. |
507 | | */ |
508 | 1.82k | if (source->is_interlaced) { |
509 | | /* We request the virtual array now, but can't access it until virtual |
510 | | * arrays have been allocated. Hence, the actual work of reading the |
511 | | * image is postponed until the first call to get_pixel_rows. |
512 | | */ |
513 | 792 | source->interlaced_image = (*cinfo->mem->request_virt_sarray) |
514 | 792 | ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE, |
515 | 792 | (JDIMENSION)width, (JDIMENSION)height, (JDIMENSION)1); |
516 | 792 | if (cinfo->progress != NULL) { |
517 | 0 | cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress; |
518 | 0 | progress->total_extra_passes++; /* count file input as separate pass */ |
519 | 0 | } |
520 | 792 | source->pub.get_pixel_rows = load_interlaced_image; |
521 | 1.03k | } else { |
522 | 1.03k | source->pub.get_pixel_rows = get_pixel_rows; |
523 | 1.03k | } |
524 | | |
525 | 1.82k | if (cinfo->in_color_space != JCS_GRAYSCALE) { |
526 | 992 | cinfo->in_color_space = JCS_RGB; |
527 | 992 | cinfo->input_components = NUMCOLORS; |
528 | 992 | } |
529 | | |
530 | | /* Create compressor input buffer. */ |
531 | 1.82k | source->pub._buffer = (_JSAMPARRAY)(*cinfo->mem->alloc_sarray) |
532 | 1.82k | ((j_common_ptr)cinfo, JPOOL_IMAGE, |
533 | 1.82k | (JDIMENSION)width * cinfo->input_components, (JDIMENSION)1); |
534 | 1.82k | source->pub.buffer_height = 1; |
535 | | |
536 | | /* Pad colormap for safety. */ |
537 | 122k | for (c = colormaplen; c < source->clear_code; c++) { |
538 | 120k | source->colormap[CM_RED][c] = |
539 | 120k | source->colormap[CM_GREEN][c] = |
540 | 120k | source->colormap[CM_BLUE][c] = _CENTERJSAMPLE; |
541 | 120k | } |
542 | | |
543 | | /* Return info about the image. */ |
544 | 1.82k | cinfo->data_precision = BITS_IN_JSAMPLE; /* we always rescale data to this */ |
545 | 1.82k | cinfo->image_width = width; |
546 | 1.82k | cinfo->image_height = height; |
547 | | |
548 | 1.82k | TRACEMS3(cinfo, 1, JTRC_GIF, width, height, colormaplen); |
549 | 1.82k | } |
550 | | |
551 | | |
552 | | /* |
553 | | * Read one row of pixels. |
554 | | * This version is used for noninterlaced GIF images: |
555 | | * we read directly from the GIF file. |
556 | | */ |
557 | | |
558 | | METHODDEF(JDIMENSION) |
559 | | get_pixel_rows(j_compress_ptr cinfo, cjpeg_source_ptr sinfo) |
560 | 1.45M | { |
561 | 1.45M | gif_source_ptr source = (gif_source_ptr)sinfo; |
562 | 1.45M | register int c; |
563 | 1.45M | register _JSAMPROW ptr; |
564 | 1.45M | register JDIMENSION col; |
565 | 1.45M | register _JSAMPARRAY colormap = source->colormap; |
566 | | |
567 | 1.45M | ptr = source->pub._buffer[0]; |
568 | 1.45M | if (cinfo->in_color_space == JCS_GRAYSCALE) { |
569 | 9.03M | for (col = cinfo->image_width; col > 0; col--) { |
570 | 8.86M | c = LZWReadByte(source); |
571 | 8.86M | *ptr++ = colormap[CM_RED][c]; |
572 | 8.86M | } |
573 | 1.28M | } else { |
574 | 70.0M | for (col = cinfo->image_width; col > 0; col--) { |
575 | 68.7M | c = LZWReadByte(source); |
576 | 68.7M | *ptr++ = colormap[CM_RED][c]; |
577 | 68.7M | *ptr++ = colormap[CM_GREEN][c]; |
578 | 68.7M | *ptr++ = colormap[CM_BLUE][c]; |
579 | 68.7M | } |
580 | 1.28M | } |
581 | 1.45M | return 1; |
582 | 1.45M | } |
583 | | |
584 | | |
585 | | /* |
586 | | * Read one row of pixels. |
587 | | * This version is used for the first call on get_pixel_rows when |
588 | | * reading an interlaced GIF file: we read the whole image into memory. |
589 | | */ |
590 | | |
591 | | METHODDEF(JDIMENSION) |
592 | | load_interlaced_image(j_compress_ptr cinfo, cjpeg_source_ptr sinfo) |
593 | 707 | { |
594 | 707 | gif_source_ptr source = (gif_source_ptr)sinfo; |
595 | 707 | register _JSAMPROW sptr; |
596 | 707 | register JDIMENSION col; |
597 | 707 | JDIMENSION row; |
598 | 707 | cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress; |
599 | | |
600 | | /* Read the interlaced image into the virtual array we've created. */ |
601 | 22.8M | for (row = 0; row < cinfo->image_height; row++) { |
602 | 22.8M | if (progress != NULL) { |
603 | 0 | progress->pub.pass_counter = (long)row; |
604 | 0 | progress->pub.pass_limit = (long)cinfo->image_height; |
605 | 0 | (*progress->pub.progress_monitor) ((j_common_ptr)cinfo); |
606 | 0 | } |
607 | 22.8M | sptr = *(_JSAMPARRAY)(*cinfo->mem->access_virt_sarray) |
608 | 22.8M | ((j_common_ptr)cinfo, source->interlaced_image, row, (JDIMENSION)1, |
609 | 22.8M | TRUE); |
610 | 266M | for (col = cinfo->image_width; col > 0; col--) { |
611 | 243M | *sptr++ = (_JSAMPLE)LZWReadByte(source); |
612 | 243M | } |
613 | 22.8M | } |
614 | 707 | if (progress != NULL) |
615 | 0 | progress->completed_extra_passes++; |
616 | | |
617 | | /* Replace method pointer so subsequent calls don't come here. */ |
618 | 707 | source->pub.get_pixel_rows = get_interlaced_row; |
619 | | /* Initialize for get_interlaced_row, and perform first call on it. */ |
620 | 707 | source->cur_row_number = 0; |
621 | 707 | source->pass2_offset = (cinfo->image_height + 7) / 8; |
622 | 707 | source->pass3_offset = source->pass2_offset + (cinfo->image_height + 3) / 8; |
623 | 707 | source->pass4_offset = source->pass3_offset + (cinfo->image_height + 1) / 4; |
624 | | |
625 | 707 | return get_interlaced_row(cinfo, sinfo); |
626 | 707 | } |
627 | | |
628 | | |
629 | | /* |
630 | | * Read one row of pixels. |
631 | | * This version is used for interlaced GIF images: |
632 | | * we read from the virtual array. |
633 | | */ |
634 | | |
635 | | METHODDEF(JDIMENSION) |
636 | | get_interlaced_row(j_compress_ptr cinfo, cjpeg_source_ptr sinfo) |
637 | 22.8M | { |
638 | 22.8M | gif_source_ptr source = (gif_source_ptr)sinfo; |
639 | 22.8M | register int c; |
640 | 22.8M | register _JSAMPROW sptr, ptr; |
641 | 22.8M | register JDIMENSION col; |
642 | 22.8M | register _JSAMPARRAY colormap = source->colormap; |
643 | 22.8M | JDIMENSION irow; |
644 | | |
645 | | /* Figure out which row of interlaced image is needed, and access it. */ |
646 | 22.8M | switch ((int)(source->cur_row_number & 7)) { |
647 | 2.85M | case 0: /* first-pass row */ |
648 | 2.85M | irow = source->cur_row_number >> 3; |
649 | 2.85M | break; |
650 | 2.85M | case 4: /* second-pass row */ |
651 | 2.85M | irow = (source->cur_row_number >> 3) + source->pass2_offset; |
652 | 2.85M | break; |
653 | 2.85M | case 2: /* third-pass row */ |
654 | 5.70M | case 6: |
655 | 5.70M | irow = (source->cur_row_number >> 2) + source->pass3_offset; |
656 | 5.70M | break; |
657 | 11.4M | default: /* fourth-pass row */ |
658 | 11.4M | irow = (source->cur_row_number >> 1) + source->pass4_offset; |
659 | 22.8M | } |
660 | 22.8M | sptr = *(_JSAMPARRAY)(*cinfo->mem->access_virt_sarray) |
661 | 22.8M | ((j_common_ptr)cinfo, source->interlaced_image, irow, (JDIMENSION)1, |
662 | 22.8M | FALSE); |
663 | | /* Scan the row, expand colormap, and output */ |
664 | 22.8M | ptr = source->pub._buffer[0]; |
665 | 22.8M | if (cinfo->in_color_space == JCS_GRAYSCALE) { |
666 | 25.6M | for (col = cinfo->image_width; col > 0; col--) { |
667 | 24.0M | c = *sptr++; |
668 | 24.0M | *ptr++ = colormap[CM_RED][c]; |
669 | 24.0M | } |
670 | 21.2M | } else { |
671 | 240M | for (col = cinfo->image_width; col > 0; col--) { |
672 | 218M | c = *sptr++; |
673 | 218M | *ptr++ = colormap[CM_RED][c]; |
674 | 218M | *ptr++ = colormap[CM_GREEN][c]; |
675 | 218M | *ptr++ = colormap[CM_BLUE][c]; |
676 | 218M | } |
677 | 21.2M | } |
678 | 22.8M | source->cur_row_number++; /* for next time */ |
679 | 22.8M | return 1; |
680 | 22.8M | } |
681 | | |
682 | | |
683 | | /* |
684 | | * Finish up at the end of the file. |
685 | | */ |
686 | | |
687 | | METHODDEF(void) |
688 | | finish_input_gif(j_compress_ptr cinfo, cjpeg_source_ptr sinfo) |
689 | 845 | { |
690 | | /* no work */ |
691 | 845 | } |
692 | | |
693 | | |
694 | | /* |
695 | | * The module selection routine for GIF format input. |
696 | | */ |
697 | | |
698 | | GLOBAL(cjpeg_source_ptr) |
699 | | _jinit_read_gif(j_compress_ptr cinfo) |
700 | 1.82k | { |
701 | 1.82k | gif_source_ptr source; |
702 | | |
703 | 1.82k | if (cinfo->data_precision != BITS_IN_JSAMPLE) |
704 | 0 | ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision); |
705 | | |
706 | | /* Create module interface object */ |
707 | 1.82k | source = (gif_source_ptr) |
708 | 1.82k | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE, |
709 | 1.82k | sizeof(gif_source_struct)); |
710 | 1.82k | source->cinfo = cinfo; /* make back link for subroutines */ |
711 | | /* Fill in method ptrs, except get_pixel_rows which start_input sets */ |
712 | 1.82k | source->pub.start_input = start_input_gif; |
713 | 1.82k | source->pub.finish_input = finish_input_gif; |
714 | 1.82k | source->pub.max_pixels = 0; |
715 | | |
716 | 1.82k | return (cjpeg_source_ptr)source; |
717 | 1.82k | } Line | Count | Source | 700 | 1.82k | { | 701 | 1.82k | gif_source_ptr source; | 702 | | | 703 | 1.82k | if (cinfo->data_precision != BITS_IN_JSAMPLE) | 704 | 0 | ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision); | 705 | | | 706 | | /* Create module interface object */ | 707 | 1.82k | source = (gif_source_ptr) | 708 | 1.82k | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE, | 709 | 1.82k | sizeof(gif_source_struct)); | 710 | 1.82k | source->cinfo = cinfo; /* make back link for subroutines */ | 711 | | /* Fill in method ptrs, except get_pixel_rows which start_input sets */ | 712 | 1.82k | source->pub.start_input = start_input_gif; | 713 | 1.82k | source->pub.finish_input = finish_input_gif; | 714 | 1.82k | source->pub.max_pixels = 0; | 715 | | | 716 | 1.82k | return (cjpeg_source_ptr)source; | 717 | 1.82k | } |
Unexecuted instantiation: j12init_read_gif Unexecuted instantiation: j16init_read_gif |
718 | | |
719 | | #endif /* defined(GIF_SUPPORTED) && |
720 | | (BITS_IN_JSAMPLE != 16 || defined(C_LOSSLESS_SUPPORTED)) */ |