]> Creatis software - gdcm.git/blob - src/jpeg/libijg12/jdmarker12.c
6c6309f4070c14271b31078ec12528e501554339
[gdcm.git] / src / jpeg / libijg12 / jdmarker12.c
1 /*
2  * jdmarker.c
3  *
4  * Copyright (C) 1991-1998, 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 routines to decode JPEG datastream markers.
9  * Most of the complexity arises from our desire to support input
10  * suspension: if not all of the data for a marker is available,
11  * we must exit back to the application.  On resumption, we reprocess
12  * the marker.
13  */
14
15 #define JPEG_INTERNALS
16 #include "jinclude12.h"
17 #include "jpeglib12.h"
18
19
20 typedef enum {                  /* JPEG marker codes */
21   M_SOF0  = 0xc0,
22   M_SOF1  = 0xc1,
23   M_SOF2  = 0xc2,
24   M_SOF3  = 0xc3,
25   
26   M_SOF5  = 0xc5,
27   M_SOF6  = 0xc6,
28   M_SOF7  = 0xc7,
29   
30   M_JPG   = 0xc8,
31   M_SOF9  = 0xc9,
32   M_SOF10 = 0xca,
33   M_SOF11 = 0xcb,
34   
35   M_SOF13 = 0xcd,
36   M_SOF14 = 0xce,
37   M_SOF15 = 0xcf,
38   
39   M_DHT   = 0xc4,
40   
41   M_DAC   = 0xcc,
42   
43   M_RST0  = 0xd0,
44   M_RST1  = 0xd1,
45   M_RST2  = 0xd2,
46   M_RST3  = 0xd3,
47   M_RST4  = 0xd4,
48   M_RST5  = 0xd5,
49   M_RST6  = 0xd6,
50   M_RST7  = 0xd7,
51   
52   M_SOI   = 0xd8,
53   M_EOI   = 0xd9,
54   M_SOS   = 0xda,
55   M_DQT   = 0xdb,
56   M_DNL   = 0xdc,
57   M_DRI   = 0xdd,
58   M_DHP   = 0xde,
59   M_EXP   = 0xdf,
60   
61   M_APP0  = 0xe0,
62   M_APP1  = 0xe1,
63   M_APP2  = 0xe2,
64   M_APP3  = 0xe3,
65   M_APP4  = 0xe4,
66   M_APP5  = 0xe5,
67   M_APP6  = 0xe6,
68   M_APP7  = 0xe7,
69   M_APP8  = 0xe8,
70   M_APP9  = 0xe9,
71   M_APP10 = 0xea,
72   M_APP11 = 0xeb,
73   M_APP12 = 0xec,
74   M_APP13 = 0xed,
75   M_APP14 = 0xee,
76   M_APP15 = 0xef,
77   
78   M_JPG0  = 0xf0,
79   M_JPG13 = 0xfd,
80   M_COM   = 0xfe,
81   
82   M_TEM   = 0x01,
83   
84   M_ERROR = 0x100
85 } JPEG_MARKER;
86
87
88 /* Private state */
89
90 typedef struct {
91   struct jpeg_marker_reader pub; /* public fields */
92
93   /* Application-overridable marker processing methods */
94   jpeg_marker_parser_method process_COM;
95   jpeg_marker_parser_method process_APPn[16];
96
97   /* Limit on marker data length to save for each marker type */
98   unsigned int length_limit_COM;
99   unsigned int length_limit_APPn[16];
100
101   /* Status of COM/APPn marker saving */
102   jpeg_saved_marker_ptr cur_marker;     /* NULL if not processing a marker */
103   unsigned int bytes_read;              /* data bytes read so far in marker */
104   /* Note: cur_marker is not linked into marker_list until it's all read. */
105 } my_marker_reader;
106
107 typedef my_marker_reader * my_marker_ptr;
108
109
110 /*
111  * Macros for fetching data from the data source module.
112  *
113  * At all times, cinfo->src->next_input_byte and ->bytes_in_buffer reflect
114  * the current restart point; we update them only when we have reached a
115  * suitable place to restart if a suspension occurs.
116  */
117
118 /* Declare and initialize local copies of input pointer/count */
119 #define INPUT_VARS(cinfo)  \
120         struct jpeg_source_mgr * datasrc = (cinfo)->src;  \
121         const JOCTET * next_input_byte = datasrc->next_input_byte;  \
122         size_t bytes_in_buffer = datasrc->bytes_in_buffer
123
124 /* Unload the local copies --- do this only at a restart boundary */
125 #define INPUT_SYNC(cinfo)  \
126         ( datasrc->next_input_byte = next_input_byte,  \
127           datasrc->bytes_in_buffer = bytes_in_buffer )
128
129 /* Reload the local copies --- used only in MAKE_BYTE_AVAIL */
130 #define INPUT_RELOAD(cinfo)  \
131         ( next_input_byte = datasrc->next_input_byte,  \
132           bytes_in_buffer = datasrc->bytes_in_buffer )
133
134 /* Internal macro for INPUT_BYTE and INPUT_2BYTES: make a byte available.
135  * Note we do *not* do INPUT_SYNC before calling fill_input_buffer,
136  * but we must reload the local copies after a successful fill.
137  */
138 #define MAKE_BYTE_AVAIL(cinfo,action)  \
139         if (bytes_in_buffer == 0) {  \
140           if (! (*datasrc->fill_input_buffer) (cinfo))  \
141             { action; }  \
142           INPUT_RELOAD(cinfo);  \
143         }
144
145 /* Read a byte into variable V.
146  * If must suspend, take the specified action (typically "return FALSE").
147  */
148 #define INPUT_BYTE(cinfo,V,action)  \
149         MAKESTMT( MAKE_BYTE_AVAIL(cinfo,action); \
150                   bytes_in_buffer--; \
151                   V = GETJOCTET(*next_input_byte++); )
152
153 /* As above, but read two bytes interpreted as an unsigned 16-bit integer.
154  * V should be declared unsigned int or perhaps INT32.
155  */
156 #define INPUT_2BYTES(cinfo,V,action)  \
157         MAKESTMT( MAKE_BYTE_AVAIL(cinfo,action); \
158                   bytes_in_buffer--; \
159                   V = ((unsigned int) GETJOCTET(*next_input_byte++)) << 8; \
160                   MAKE_BYTE_AVAIL(cinfo,action); \
161                   bytes_in_buffer--; \
162                   V += GETJOCTET(*next_input_byte++); )
163
164
165 /*
166  * Routines to process JPEG markers.
167  *
168  * Entry condition: JPEG marker itself has been read and its code saved
169  *   in cinfo->unread_marker; input restart point is just after the marker.
170  *
171  * Exit: if return TRUE, have read and processed any parameters, and have
172  *   updated the restart point to point after the parameters.
173  *   If return FALSE, was forced to suspend before reaching end of
174  *   marker parameters; restart point has not been moved.  Same routine
175  *   will be called again after application supplies more input data.
176  *
177  * This approach to suspension assumes that all of a marker's parameters
178  * can fit into a single input bufferload.  This should hold for "normal"
179  * markers.  Some COM/APPn markers might have large parameter segments
180  * that might not fit.  If we are simply dropping such a marker, we use
181  * skip_input_data to get past it, and thereby put the problem on the
182  * source manager's shoulders.  If we are saving the marker's contents
183  * into memory, we use a slightly different convention: when forced to
184  * suspend, the marker processor updates the restart point to the end of
185  * what it's consumed (ie, the end of the buffer) before returning FALSE.
186  * On resumption, cinfo->unread_marker still contains the marker code,
187  * but the data source will point to the next chunk of marker data.
188  * The marker processor must retain internal state to deal with this.
189  *
190  * Note that we don't bother to avoid duplicate trace messages if a
191  * suspension occurs within marker parameters.  Other side effects
192  * require more care.
193  */
194
195
196 LOCAL(boolean)
197 get_soi (j_decompress_ptr cinfo)
198 /* Process an SOI marker */
199 {
200   int i;
201   
202   TRACEMS(cinfo, 1, JTRC_SOI);
203
204   if (cinfo->marker->saw_SOI)
205     ERREXIT(cinfo, JERR_SOI_DUPLICATE);
206
207   /* Reset all parameters that are defined to be reset by SOI */
208
209   for (i = 0; i < NUM_ARITH_TBLS; i++) {
210     cinfo->arith_dc_L[i] = 0;
211     cinfo->arith_dc_U[i] = 1;
212     cinfo->arith_ac_K[i] = 5;
213   }
214   cinfo->restart_interval = 0;
215
216   /* Set initial assumptions for colorspace etc */
217
218   cinfo->jpeg_color_space = JCS_UNKNOWN;
219   cinfo->CCIR601_sampling = FALSE; /* Assume non-CCIR sampling??? */
220
221   cinfo->saw_JFIF_marker = FALSE;
222   cinfo->JFIF_major_version = 1; /* set default JFIF APP0 values */
223   cinfo->JFIF_minor_version = 1;
224   cinfo->density_unit = 0;
225   cinfo->X_density = 1;
226   cinfo->Y_density = 1;
227   cinfo->saw_Adobe_marker = FALSE;
228   cinfo->Adobe_transform = 0;
229
230   cinfo->marker->saw_SOI = TRUE;
231
232   return TRUE;
233 }
234
235
236 LOCAL(boolean)
237 get_sof (j_decompress_ptr cinfo, boolean is_prog, boolean is_arith)
238 /* Process a SOFn marker */
239 {
240   INT32 length;
241   int c, ci;
242   jpeg_component_info * compptr;
243   INPUT_VARS(cinfo);
244
245   cinfo->progressive_mode = is_prog;
246   cinfo->arith_code = is_arith;
247
248   INPUT_2BYTES(cinfo, length, return FALSE);
249
250   INPUT_BYTE(cinfo, cinfo->data_precision, return FALSE);
251   INPUT_2BYTES(cinfo, cinfo->image_height, return FALSE);
252   INPUT_2BYTES(cinfo, cinfo->image_width, return FALSE);
253   INPUT_BYTE(cinfo, cinfo->num_components, return FALSE);
254
255   length -= 8;
256
257   TRACEMS4(cinfo, 1, JTRC_SOF, cinfo->unread_marker,
258            (int) cinfo->image_width, (int) cinfo->image_height,
259            cinfo->num_components);
260
261   if (cinfo->marker->saw_SOF)
262     ERREXIT(cinfo, JERR_SOF_DUPLICATE);
263
264   /* We don't support files in which the image height is initially specified */
265   /* as 0 and is later redefined by DNL.  As long as we have to check that,  */
266   /* might as well have a general sanity check. */
267   if (cinfo->image_height <= 0 || cinfo->image_width <= 0
268       || cinfo->num_components <= 0)
269     ERREXIT(cinfo, JERR_EMPTY_IMAGE);
270
271   if (length != (cinfo->num_components * 3))
272     ERREXIT(cinfo, JERR_BAD_LENGTH);
273
274   if (cinfo->comp_info == NULL) /* do only once, even if suspend */
275     cinfo->comp_info = (jpeg_component_info *) (*cinfo->mem->alloc_small)
276                         ((j_common_ptr) cinfo, JPOOL_IMAGE,
277                          cinfo->num_components * SIZEOF(jpeg_component_info));
278   
279   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
280        ci++, compptr++) {
281     compptr->component_index = ci;
282     INPUT_BYTE(cinfo, compptr->component_id, return FALSE);
283     INPUT_BYTE(cinfo, c, return FALSE);
284     compptr->h_samp_factor = (c >> 4) & 15;
285     compptr->v_samp_factor = (c     ) & 15;
286     INPUT_BYTE(cinfo, compptr->quant_tbl_no, return FALSE);
287
288     TRACEMS4(cinfo, 1, JTRC_SOF_COMPONENT,
289              compptr->component_id, compptr->h_samp_factor,
290              compptr->v_samp_factor, compptr->quant_tbl_no);
291   }
292
293   cinfo->marker->saw_SOF = TRUE;
294
295   INPUT_SYNC(cinfo);
296   return TRUE;
297 }
298
299
300 LOCAL(boolean)
301 get_sos (j_decompress_ptr cinfo)
302 /* Process a SOS marker */
303 {
304   INT32 length;
305   int i, ci, n, c, cc;
306   jpeg_component_info * compptr;
307   INPUT_VARS(cinfo);
308
309   if (! cinfo->marker->saw_SOF)
310     ERREXIT(cinfo, JERR_SOS_NO_SOF);
311
312   INPUT_2BYTES(cinfo, length, return FALSE);
313
314   INPUT_BYTE(cinfo, n, return FALSE); /* Number of components */
315
316   TRACEMS1(cinfo, 1, JTRC_SOS, n);
317
318   if (length != (n * 2 + 6) || n < 1 || n > MAX_COMPS_IN_SCAN)
319     ERREXIT(cinfo, JERR_BAD_LENGTH);
320
321   cinfo->comps_in_scan = n;
322
323   /* Collect the component-spec parameters */
324
325   for (i = 0; i < n; i++) {
326     INPUT_BYTE(cinfo, cc, return FALSE);
327     INPUT_BYTE(cinfo, c, return FALSE);
328     
329     for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
330          ci++, compptr++) {
331       if (cc == compptr->component_id)
332         goto id_found;
333     }
334
335     ERREXIT1(cinfo, JERR_BAD_COMPONENT_ID, cc);
336
337   id_found:
338
339     cinfo->cur_comp_info[i] = compptr;
340     compptr->dc_tbl_no = (c >> 4) & 15;
341     compptr->ac_tbl_no = (c     ) & 15;
342     
343     TRACEMS3(cinfo, 1, JTRC_SOS_COMPONENT, cc,
344              compptr->dc_tbl_no, compptr->ac_tbl_no);
345   }
346
347   /* Collect the additional scan parameters Ss, Se, Ah/Al. */
348   INPUT_BYTE(cinfo, c, return FALSE);
349   cinfo->Ss = c;
350   INPUT_BYTE(cinfo, c, return FALSE);
351   cinfo->Se = c;
352   INPUT_BYTE(cinfo, c, return FALSE);
353   cinfo->Ah = (c >> 4) & 15;
354   cinfo->Al = (c     ) & 15;
355
356   TRACEMS4(cinfo, 1, JTRC_SOS_PARAMS, cinfo->Ss, cinfo->Se,
357            cinfo->Ah, cinfo->Al);
358
359   /* Prepare to scan data & restart markers */
360   cinfo->marker->next_restart_num = 0;
361
362   /* Count another SOS marker */
363   cinfo->input_scan_number++;
364
365   INPUT_SYNC(cinfo);
366   return TRUE;
367 }
368
369
370 #ifdef D_ARITH_CODING_SUPPORTED
371
372 LOCAL(boolean)
373 get_dac (j_decompress_ptr cinfo)
374 /* Process a DAC marker */
375 {
376   INT32 length;
377   int index, val;
378   INPUT_VARS(cinfo);
379
380   INPUT_2BYTES(cinfo, length, return FALSE);
381   length -= 2;
382   
383   while (length > 0) {
384     INPUT_BYTE(cinfo, index, return FALSE);
385     INPUT_BYTE(cinfo, val, return FALSE);
386
387     length -= 2;
388
389     TRACEMS2(cinfo, 1, JTRC_DAC, index, val);
390
391     if (index < 0 || index >= (2*NUM_ARITH_TBLS))
392       ERREXIT1(cinfo, JERR_DAC_INDEX, index);
393
394     if (index >= NUM_ARITH_TBLS) { /* define AC table */
395       cinfo->arith_ac_K[index-NUM_ARITH_TBLS] = (UINT8) val;
396     } else {                    /* define DC table */
397       cinfo->arith_dc_L[index] = (UINT8) (val & 0x0F);
398       cinfo->arith_dc_U[index] = (UINT8) (val >> 4);
399       if (cinfo->arith_dc_L[index] > cinfo->arith_dc_U[index])
400         ERREXIT1(cinfo, JERR_DAC_VALUE, val);
401     }
402   }
403
404   if (length != 0)
405     ERREXIT(cinfo, JERR_BAD_LENGTH);
406
407   INPUT_SYNC(cinfo);
408   return TRUE;
409 }
410
411 #else /* ! D_ARITH_CODING_SUPPORTED */
412
413 #define get_dac(cinfo)  skip_variable(cinfo)
414
415 #endif /* D_ARITH_CODING_SUPPORTED */
416
417
418 LOCAL(boolean)
419 get_dht (j_decompress_ptr cinfo)
420 /* Process a DHT marker */
421 {
422   INT32 length;
423   UINT8 bits[17];
424   UINT8 huffval[256];
425   int i, index, count;
426   JHUFF_TBL **htblptr;
427   INPUT_VARS(cinfo);
428
429   INPUT_2BYTES(cinfo, length, return FALSE);
430   length -= 2;
431   
432   while (length > 16) {
433     INPUT_BYTE(cinfo, index, return FALSE);
434
435     TRACEMS1(cinfo, 1, JTRC_DHT, index);
436       
437     bits[0] = 0;
438     count = 0;
439     for (i = 1; i <= 16; i++) {
440       INPUT_BYTE(cinfo, bits[i], return FALSE);
441       count += bits[i];
442     }
443
444     length -= 1 + 16;
445
446     TRACEMS8(cinfo, 2, JTRC_HUFFBITS,
447              bits[1], bits[2], bits[3], bits[4],
448              bits[5], bits[6], bits[7], bits[8]);
449     TRACEMS8(cinfo, 2, JTRC_HUFFBITS,
450              bits[9], bits[10], bits[11], bits[12],
451              bits[13], bits[14], bits[15], bits[16]);
452
453     /* Here we just do minimal validation of the counts to avoid walking
454      * off the end of our table space.  jdhuff.c will check more carefully.
455      */
456     if (count > 256 || ((INT32) count) > length) {
457       printf("JERR_BAD_HUFF_TABLE in jdmarker12.c count : %d\n",count);
458       ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
459     }
460     for (i = 0; i < count; i++)
461       INPUT_BYTE(cinfo, huffval[i], return FALSE);
462
463     length -= count;
464
465     if (index & 0x10) {         /* AC table definition */
466       index -= 0x10;
467       htblptr = &cinfo->ac_huff_tbl_ptrs[index];
468     } else {                    /* DC table definition */
469       htblptr = &cinfo->dc_huff_tbl_ptrs[index];
470     }
471
472     if (index < 0 || index >= NUM_HUFF_TBLS)
473       ERREXIT1(cinfo, JERR_DHT_INDEX, index);
474
475     if (*htblptr == NULL)
476       *htblptr = jpeg_alloc_huff_table((j_common_ptr) cinfo);
477   
478     MEMCOPY((*htblptr)->bits, bits, SIZEOF((*htblptr)->bits));
479     MEMCOPY((*htblptr)->huffval, huffval, SIZEOF((*htblptr)->huffval));
480   }
481
482   if (length != 0)
483     ERREXIT(cinfo, JERR_BAD_LENGTH);
484
485   INPUT_SYNC(cinfo);
486   return TRUE;
487 }
488
489
490 LOCAL(boolean)
491 get_dqt (j_decompress_ptr cinfo)
492 /* Process a DQT marker */
493 {
494   INT32 length;
495   int n, i, prec;
496   unsigned int tmp;
497   JQUANT_TBL *quant_ptr;
498   INPUT_VARS(cinfo);
499
500   INPUT_2BYTES(cinfo, length, return FALSE);
501   length -= 2;
502
503   while (length > 0) {
504     INPUT_BYTE(cinfo, n, return FALSE);
505     prec = n >> 4;
506     n &= 0x0F;
507
508     TRACEMS2(cinfo, 1, JTRC_DQT, n, prec);
509
510     if (n >= NUM_QUANT_TBLS)
511       ERREXIT1(cinfo, JERR_DQT_INDEX, n);
512       
513     if (cinfo->quant_tbl_ptrs[n] == NULL)
514       cinfo->quant_tbl_ptrs[n] = jpeg_alloc_quant_table((j_common_ptr) cinfo);
515     quant_ptr = cinfo->quant_tbl_ptrs[n];
516
517     for (i = 0; i < DCTSIZE2; i++) {
518       if (prec)
519         INPUT_2BYTES(cinfo, tmp, return FALSE);
520       else
521         INPUT_BYTE(cinfo, tmp, return FALSE);
522       /* We convert the zigzag-order table to natural array order. */
523       quant_ptr->quantval[jpeg_natural_order[i]] = (UINT16) tmp;
524     }
525
526     if (cinfo->err->trace_level >= 2) {
527       for (i = 0; i < DCTSIZE2; i += 8) {
528         TRACEMS8(cinfo, 2, JTRC_QUANTVALS,
529                  quant_ptr->quantval[i],   quant_ptr->quantval[i+1],
530                  quant_ptr->quantval[i+2], quant_ptr->quantval[i+3],
531                  quant_ptr->quantval[i+4], quant_ptr->quantval[i+5],
532                  quant_ptr->quantval[i+6], quant_ptr->quantval[i+7]);
533       }
534     }
535
536     length -= DCTSIZE2+1;
537     if (prec) length -= DCTSIZE2;
538   }
539
540   if (length != 0)
541     ERREXIT(cinfo, JERR_BAD_LENGTH);
542
543   INPUT_SYNC(cinfo);
544   return TRUE;
545 }
546
547
548 LOCAL(boolean)
549 get_dri (j_decompress_ptr cinfo)
550 /* Process a DRI marker */
551 {
552   INT32 length;
553   unsigned int tmp;
554   INPUT_VARS(cinfo);
555
556   INPUT_2BYTES(cinfo, length, return FALSE);
557   
558   if (length != 4)
559     ERREXIT(cinfo, JERR_BAD_LENGTH);
560
561   INPUT_2BYTES(cinfo, tmp, return FALSE);
562
563   TRACEMS1(cinfo, 1, JTRC_DRI, tmp);
564
565   cinfo->restart_interval = tmp;
566
567   INPUT_SYNC(cinfo);
568   return TRUE;
569 }
570
571
572 /*
573  * Routines for processing APPn and COM markers.
574  * These are either saved in memory or discarded, per application request.
575  * APP0 and APP14 are specially checked to see if they are
576  * JFIF and Adobe markers, respectively.
577  */
578
579 #define APP0_DATA_LEN   14      /* Length of interesting data in APP0 */
580 #define APP14_DATA_LEN  12      /* Length of interesting data in APP14 */
581 #define APPN_DATA_LEN   14      /* Must be the largest of the above!! */
582
583
584 LOCAL(void)
585 examine_app0 (j_decompress_ptr cinfo, JOCTET FAR * data,
586               unsigned int datalen, INT32 remaining)
587 /* Examine first few bytes from an APP0.
588  * Take appropriate action if it is a JFIF marker.
589  * datalen is # of bytes at data[], remaining is length of rest of marker data.
590  */
591 {
592   INT32 totallen = (INT32) datalen + remaining;
593
594   if (datalen >= APP0_DATA_LEN &&
595       GETJOCTET(data[0]) == 0x4A &&
596       GETJOCTET(data[1]) == 0x46 &&
597       GETJOCTET(data[2]) == 0x49 &&
598       GETJOCTET(data[3]) == 0x46 &&
599       GETJOCTET(data[4]) == 0) {
600     /* Found JFIF APP0 marker: save info */
601     cinfo->saw_JFIF_marker = TRUE;
602     cinfo->JFIF_major_version = GETJOCTET(data[5]);
603     cinfo->JFIF_minor_version = GETJOCTET(data[6]);
604     cinfo->density_unit = GETJOCTET(data[7]);
605     cinfo->X_density = (GETJOCTET(data[8]) << 8) + GETJOCTET(data[9]);
606     cinfo->Y_density = (GETJOCTET(data[10]) << 8) + GETJOCTET(data[11]);
607     /* Check version.
608      * Major version must be 1, anything else signals an incompatible change.
609      * (We used to treat this as an error, but now it's a nonfatal warning,
610      * because some bozo at Hijaak couldn't read the spec.)
611      * Minor version should be 0..2, but process anyway if newer.
612      */
613     if (cinfo->JFIF_major_version != 1)
614       WARNMS2(cinfo, JWRN_JFIF_MAJOR,
615               cinfo->JFIF_major_version, cinfo->JFIF_minor_version);
616     /* Generate trace messages */
617     TRACEMS5(cinfo, 1, JTRC_JFIF,
618              cinfo->JFIF_major_version, cinfo->JFIF_minor_version,
619              cinfo->X_density, cinfo->Y_density, cinfo->density_unit);
620     /* Validate thumbnail dimensions and issue appropriate messages */
621     if (GETJOCTET(data[12]) | GETJOCTET(data[13]))
622       TRACEMS2(cinfo, 1, JTRC_JFIF_THUMBNAIL,
623                GETJOCTET(data[12]), GETJOCTET(data[13]));
624     totallen -= APP0_DATA_LEN;
625     if (totallen !=
626         ((INT32)GETJOCTET(data[12]) * (INT32)GETJOCTET(data[13]) * (INT32) 3))
627       TRACEMS1(cinfo, 1, JTRC_JFIF_BADTHUMBNAILSIZE, (int) totallen);
628   } else if (datalen >= 6 &&
629       GETJOCTET(data[0]) == 0x4A &&
630       GETJOCTET(data[1]) == 0x46 &&
631       GETJOCTET(data[2]) == 0x58 &&
632       GETJOCTET(data[3]) == 0x58 &&
633       GETJOCTET(data[4]) == 0) {
634     /* Found JFIF "JFXX" extension APP0 marker */
635     /* The library doesn't actually do anything with these,
636      * but we try to produce a helpful trace message.
637      */
638     switch (GETJOCTET(data[5])) {
639     case 0x10:
640       TRACEMS1(cinfo, 1, JTRC_THUMB_JPEG, (int) totallen);
641       break;
642     case 0x11:
643       TRACEMS1(cinfo, 1, JTRC_THUMB_PALETTE, (int) totallen);
644       break;
645     case 0x13:
646       TRACEMS1(cinfo, 1, JTRC_THUMB_RGB, (int) totallen);
647       break;
648     default:
649       TRACEMS2(cinfo, 1, JTRC_JFIF_EXTENSION,
650                GETJOCTET(data[5]), (int) totallen);
651       break;
652     }
653   } else {
654     /* Start of APP0 does not match "JFIF" or "JFXX", or too short */
655     TRACEMS1(cinfo, 1, JTRC_APP0, (int) totallen);
656   }
657 }
658
659
660 LOCAL(void)
661 examine_app14 (j_decompress_ptr cinfo, JOCTET FAR * data,
662                unsigned int datalen, INT32 remaining)
663 /* Examine first few bytes from an APP14.
664  * Take appropriate action if it is an Adobe marker.
665  * datalen is # of bytes at data[], remaining is length of rest of marker data.
666  */
667 {
668   unsigned int version, flags0, flags1, transform;
669
670   if (datalen >= APP14_DATA_LEN &&
671       GETJOCTET(data[0]) == 0x41 &&
672       GETJOCTET(data[1]) == 0x64 &&
673       GETJOCTET(data[2]) == 0x6F &&
674       GETJOCTET(data[3]) == 0x62 &&
675       GETJOCTET(data[4]) == 0x65) {
676     /* Found Adobe APP14 marker */
677     version = (GETJOCTET(data[5]) << 8) + GETJOCTET(data[6]);
678     flags0 = (GETJOCTET(data[7]) << 8) + GETJOCTET(data[8]);
679     flags1 = (GETJOCTET(data[9]) << 8) + GETJOCTET(data[10]);
680     transform = GETJOCTET(data[11]);
681     TRACEMS4(cinfo, 1, JTRC_ADOBE, version, flags0, flags1, transform);
682     cinfo->saw_Adobe_marker = TRUE;
683     cinfo->Adobe_transform = (UINT8) transform;
684   } else {
685     /* Start of APP14 does not match "Adobe", or too short */
686     TRACEMS1(cinfo, 1, JTRC_APP14, (int) (datalen + remaining));
687   }
688 }
689
690
691 METHODDEF(boolean)
692 get_interesting_appn (j_decompress_ptr cinfo)
693 /* Process an APP0 or APP14 marker without saving it */
694 {
695   INT32 length;
696   JOCTET b[APPN_DATA_LEN];
697   unsigned int i, numtoread;
698   INPUT_VARS(cinfo);
699
700   INPUT_2BYTES(cinfo, length, return FALSE);
701   length -= 2;
702
703   /* get the interesting part of the marker data */
704   if (length >= APPN_DATA_LEN)
705     numtoread = APPN_DATA_LEN;
706   else if (length > 0)
707     numtoread = (unsigned int) length;
708   else
709     numtoread = 0;
710   for (i = 0; i < numtoread; i++)
711     INPUT_BYTE(cinfo, b[i], return FALSE);
712   length -= numtoread;
713
714   /* process it */
715   switch (cinfo->unread_marker) {
716   case M_APP0:
717     examine_app0(cinfo, (JOCTET FAR *) b, numtoread, length);
718     break;
719   case M_APP14:
720     examine_app14(cinfo, (JOCTET FAR *) b, numtoread, length);
721     break;
722   default:
723     /* can't get here unless jpeg_save_markers chooses wrong processor */
724     ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, cinfo->unread_marker);
725     break;
726   }
727
728   /* skip any remaining data -- could be lots */
729   INPUT_SYNC(cinfo);
730   if (length > 0)
731     (*cinfo->src->skip_input_data) (cinfo, (long) length);
732
733   return TRUE;
734 }
735
736
737 #ifdef SAVE_MARKERS_SUPPORTED
738
739 METHODDEF(boolean)
740 save_marker (j_decompress_ptr cinfo)
741 /* Save an APPn or COM marker into the marker list */
742 {
743   my_marker_ptr marker = (my_marker_ptr) cinfo->marker;
744   jpeg_saved_marker_ptr cur_marker = marker->cur_marker;
745   unsigned int bytes_read, data_length;
746   JOCTET FAR * data;
747   INT32 length = 0;
748   INPUT_VARS(cinfo);
749
750   if (cur_marker == NULL) {
751     /* begin reading a marker */
752     INPUT_2BYTES(cinfo, length, return FALSE);
753     length -= 2;
754     if (length >= 0) {          /* watch out for bogus length word */
755       /* figure out how much we want to save */
756       unsigned int limit;
757       if (cinfo->unread_marker == (int) M_COM)
758         limit = marker->length_limit_COM;
759       else
760         limit = marker->length_limit_APPn[cinfo->unread_marker - (int) M_APP0];
761       if ((unsigned int) length < limit)
762         limit = (unsigned int) length;
763       /* allocate and initialize the marker item */
764       cur_marker = (jpeg_saved_marker_ptr)
765         (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE,
766                                     SIZEOF(struct jpeg_marker_struct) + limit);
767       cur_marker->next = NULL;
768       cur_marker->marker = (UINT8) cinfo->unread_marker;
769       cur_marker->original_length = (unsigned int) length;
770       cur_marker->data_length = limit;
771       /* data area is just beyond the jpeg_marker_struct */
772       data = cur_marker->data = (JOCTET FAR *) (cur_marker + 1);
773       marker->cur_marker = cur_marker;
774       marker->bytes_read = 0;
775       bytes_read = 0;
776       data_length = limit;
777     } else {
778       /* deal with bogus length word */
779       bytes_read = data_length = 0;
780       data = NULL;
781     }
782   } else {
783     /* resume reading a marker */
784     bytes_read = marker->bytes_read;
785     data_length = cur_marker->data_length;
786     data = cur_marker->data + bytes_read;
787   }
788
789   while (bytes_read < data_length) {
790     INPUT_SYNC(cinfo);          /* move the restart point to here */
791     marker->bytes_read = bytes_read;
792     /* If there's not at least one byte in buffer, suspend */
793     MAKE_BYTE_AVAIL(cinfo, return FALSE);
794     /* Copy bytes with reasonable rapidity */
795     while (bytes_read < data_length && bytes_in_buffer > 0) {
796       *data++ = *next_input_byte++;
797       bytes_in_buffer--;
798       bytes_read++;
799     }
800   }
801
802   /* Done reading what we want to read */
803   if (cur_marker != NULL) {     /* will be NULL if bogus length word */
804     /* Add new marker to end of list */
805     if (cinfo->marker_list == NULL) {
806       cinfo->marker_list = cur_marker;
807     } else {
808       jpeg_saved_marker_ptr prev = cinfo->marker_list;
809       while (prev->next != NULL)
810         prev = prev->next;
811       prev->next = cur_marker;
812     }
813     /* Reset pointer & calc remaining data length */
814     data = cur_marker->data;
815     length = cur_marker->original_length - data_length;
816   }
817   /* Reset to initial state for next marker */
818   marker->cur_marker = NULL;
819
820   /* Process the marker if interesting; else just make a generic trace msg */
821   switch (cinfo->unread_marker) {
822   case M_APP0:
823     examine_app0(cinfo, data, data_length, length);
824     break;
825   case M_APP14:
826     examine_app14(cinfo, data, data_length, length);
827     break;
828   default:
829     TRACEMS2(cinfo, 1, JTRC_MISC_MARKER, cinfo->unread_marker,
830              (int) (data_length + length));
831     break;
832   }
833
834   /* skip any remaining data -- could be lots */
835   INPUT_SYNC(cinfo);            /* do before skip_input_data */
836   if (length > 0)
837     (*cinfo->src->skip_input_data) (cinfo, (long) length);
838
839   return TRUE;
840 }
841
842 #endif /* SAVE_MARKERS_SUPPORTED */
843
844
845 METHODDEF(boolean)
846 skip_variable (j_decompress_ptr cinfo)
847 /* Skip over an unknown or uninteresting variable-length marker */
848 {
849   INT32 length;
850   INPUT_VARS(cinfo);
851
852   INPUT_2BYTES(cinfo, length, return FALSE);
853   length -= 2;
854   
855   TRACEMS2(cinfo, 1, JTRC_MISC_MARKER, cinfo->unread_marker, (int) length);
856
857   INPUT_SYNC(cinfo);            /* do before skip_input_data */
858   if (length > 0)
859     (*cinfo->src->skip_input_data) (cinfo, (long) length);
860
861   return TRUE;
862 }
863
864
865 /*
866  * Find the next JPEG marker, save it in cinfo->unread_marker.
867  * Returns FALSE if had to suspend before reaching a marker;
868  * in that case cinfo->unread_marker is unchanged.
869  *
870  * Note that the result might not be a valid marker code,
871  * but it will never be 0 or FF.
872  */
873
874 LOCAL(boolean)
875 next_marker (j_decompress_ptr cinfo)
876 {
877   int c;
878   INPUT_VARS(cinfo);
879
880   for (;;) {
881     INPUT_BYTE(cinfo, c, return FALSE);
882     /* Skip any non-FF bytes.
883      * This may look a bit inefficient, but it will not occur in a valid file.
884      * We sync after each discarded byte so that a suspending data source
885      * can discard the byte from its buffer.
886      */
887     while (c != 0xFF) {
888       cinfo->marker->discarded_bytes++;
889       INPUT_SYNC(cinfo);
890       INPUT_BYTE(cinfo, c, return FALSE);
891     }
892     /* This loop swallows any duplicate FF bytes.  Extra FFs are legal as
893      * pad bytes, so don't count them in discarded_bytes.  We assume there
894      * will not be so many consecutive FF bytes as to overflow a suspending
895      * data source's input buffer.
896      */
897     do {
898       INPUT_BYTE(cinfo, c, return FALSE);
899     } while (c == 0xFF);
900     if (c != 0)
901       break;                    /* found a valid marker, exit loop */
902     /* Reach here if we found a stuffed-zero data sequence (FF/00).
903      * Discard it and loop back to try again.
904      */
905     cinfo->marker->discarded_bytes += 2;
906     INPUT_SYNC(cinfo);
907   }
908
909   if (cinfo->marker->discarded_bytes != 0) {
910     WARNMS2(cinfo, JWRN_EXTRANEOUS_DATA, cinfo->marker->discarded_bytes, c);
911     cinfo->marker->discarded_bytes = 0;
912   }
913
914   cinfo->unread_marker = c;
915
916   INPUT_SYNC(cinfo);
917   return TRUE;
918 }
919
920
921 LOCAL(boolean)
922 first_marker (j_decompress_ptr cinfo)
923 /* Like next_marker, but used to obtain the initial SOI marker. */
924 /* For this marker, we do not allow preceding garbage or fill; otherwise,
925  * we might well scan an entire input file before realizing it ain't JPEG.
926  * If an application wants to process non-JFIF files, it must seek to the
927  * SOI before calling the JPEG library.
928  */
929 {
930   int c, c2;
931   INPUT_VARS(cinfo);
932
933   INPUT_BYTE(cinfo, c, return FALSE);
934   INPUT_BYTE(cinfo, c2, return FALSE);
935   if (c != 0xFF || c2 != (int) M_SOI)
936     ERREXIT2(cinfo, JERR_NO_SOI, c, c2);
937
938   cinfo->unread_marker = c2;
939
940   INPUT_SYNC(cinfo);
941   return TRUE;
942 }
943
944
945 /*
946  * Read markers until SOS or EOI.
947  *
948  * Returns same codes as are defined for jpeg_consume_input:
949  * JPEG_SUSPENDED, JPEG_REACHED_SOS, or JPEG_REACHED_EOI.
950  */
951
952 METHODDEF(int)
953 read_markers (j_decompress_ptr cinfo)
954 {
955   /* Outer loop repeats once for each marker. */
956   for (;;) {
957     /* Collect the marker proper, unless we already did. */
958     /* NB: first_marker() enforces the requirement that SOI appear first. */
959     if (cinfo->unread_marker == 0) {
960       if (! cinfo->marker->saw_SOI) {
961         if (! first_marker(cinfo))
962           return JPEG_SUSPENDED;
963       } else {
964         if (! next_marker(cinfo))
965           return JPEG_SUSPENDED;
966       }
967     }
968     /* At this point cinfo->unread_marker contains the marker code and the
969      * input point is just past the marker proper, but before any parameters.
970      * A suspension will cause us to return with this state still true.
971      */
972     switch (cinfo->unread_marker) {
973     case M_SOI:
974       if (! get_soi(cinfo))
975         return JPEG_SUSPENDED;
976       break;
977
978     case M_SOF0:                /* Baseline */
979     case M_SOF1:                /* Extended sequential, Huffman */
980       if (! get_sof(cinfo, FALSE, FALSE))
981         return JPEG_SUSPENDED;
982       break;
983
984     case M_SOF2:                /* Progressive, Huffman */
985       if (! get_sof(cinfo, TRUE, FALSE))
986         return JPEG_SUSPENDED;
987       break;
988
989     case M_SOF9:                /* Extended sequential, arithmetic */
990       if (! get_sof(cinfo, FALSE, TRUE))
991         return JPEG_SUSPENDED;
992       break;
993
994     case M_SOF10:               /* Progressive, arithmetic */
995       if (! get_sof(cinfo, TRUE, TRUE))
996         return JPEG_SUSPENDED;
997       break;
998
999     /* Currently unsupported SOFn types */
1000     case M_SOF3:                /* Lossless, Huffman */
1001     case M_SOF5:                /* Differential sequential, Huffman */
1002     case M_SOF6:                /* Differential progressive, Huffman */
1003     case M_SOF7:                /* Differential lossless, Huffman */
1004     case M_JPG:                 /* Reserved for JPEG extensions */
1005     case M_SOF11:               /* Lossless, arithmetic */
1006     case M_SOF13:               /* Differential sequential, arithmetic */
1007     case M_SOF14:               /* Differential progressive, arithmetic */
1008     case M_SOF15:               /* Differential lossless, arithmetic */
1009       ERREXIT1(cinfo, JERR_SOF_UNSUPPORTED, cinfo->unread_marker);
1010       break;
1011
1012     case M_SOS:
1013       if (! get_sos(cinfo))
1014         return JPEG_SUSPENDED;
1015       cinfo->unread_marker = 0; /* processed the marker */
1016       return JPEG_REACHED_SOS;
1017     
1018     case M_EOI:
1019       TRACEMS(cinfo, 1, JTRC_EOI);
1020       cinfo->unread_marker = 0; /* processed the marker */
1021       return JPEG_REACHED_EOI;
1022       
1023     case M_DAC:
1024       if (! get_dac(cinfo))
1025         return JPEG_SUSPENDED;
1026       break;
1027       
1028     case M_DHT:
1029       if (! get_dht(cinfo))
1030         return JPEG_SUSPENDED;
1031       break;
1032       
1033     case M_DQT:
1034       if (! get_dqt(cinfo))
1035         return JPEG_SUSPENDED;
1036       break;
1037       
1038     case M_DRI:
1039       if (! get_dri(cinfo))
1040         return JPEG_SUSPENDED;
1041       break;
1042       
1043     case M_APP0:
1044     case M_APP1:
1045     case M_APP2:
1046     case M_APP3:
1047     case M_APP4:
1048     case M_APP5:
1049     case M_APP6:
1050     case M_APP7:
1051     case M_APP8:
1052     case M_APP9:
1053     case M_APP10:
1054     case M_APP11:
1055     case M_APP12:
1056     case M_APP13:
1057     case M_APP14:
1058     case M_APP15:
1059       if (! (*((my_marker_ptr) cinfo->marker)->process_APPn[
1060                 cinfo->unread_marker - (int) M_APP0]) (cinfo))
1061         return JPEG_SUSPENDED;
1062       break;
1063       
1064     case M_COM:
1065       if (! (*((my_marker_ptr) cinfo->marker)->process_COM) (cinfo))
1066         return JPEG_SUSPENDED;
1067       break;
1068
1069     case M_RST0:                /* these are all parameterless */
1070     case M_RST1:
1071     case M_RST2:
1072     case M_RST3:
1073     case M_RST4:
1074     case M_RST5:
1075     case M_RST6:
1076     case M_RST7:
1077     case M_TEM:
1078       TRACEMS1(cinfo, 1, JTRC_PARMLESS_MARKER, cinfo->unread_marker);
1079       break;
1080
1081     case M_DNL:                 /* Ignore DNL ... perhaps the wrong thing */
1082       if (! skip_variable(cinfo))
1083         return JPEG_SUSPENDED;
1084       break;
1085
1086     default:                    /* must be DHP, EXP, JPGn, or RESn */
1087       /* For now, we treat the reserved markers as fatal errors since they are
1088        * likely to be used to signal incompatible JPEG Part 3 extensions.
1089        * Once the JPEG 3 version-number marker is well defined, this code
1090        * ought to change!
1091        */
1092       ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, cinfo->unread_marker);
1093       break;
1094     }
1095     /* Successfully processed marker, so reset state variable */
1096     cinfo->unread_marker = 0;
1097   } /* end loop */
1098 }
1099
1100
1101 /*
1102  * Read a restart marker, which is expected to appear next in the datastream;
1103  * if the marker is not there, take appropriate recovery action.
1104  * Returns FALSE if suspension is required.
1105  *
1106  * This is called by the entropy decoder after it has read an appropriate
1107  * number of MCUs.  cinfo->unread_marker may be nonzero if the entropy decoder
1108  * has already read a marker from the data source.  Under normal conditions
1109  * cinfo->unread_marker will be reset to 0 before returning; if not reset,
1110  * it holds a marker which the decoder will be unable to read past.
1111  */
1112
1113 METHODDEF(boolean)
1114 read_restart_marker (j_decompress_ptr cinfo)
1115 {
1116   /* Obtain a marker unless we already did. */
1117   /* Note that next_marker will complain if it skips any data. */
1118   if (cinfo->unread_marker == 0) {
1119     if (! next_marker(cinfo))
1120       return FALSE;
1121   }
1122
1123   if (cinfo->unread_marker ==
1124       ((int) M_RST0 + cinfo->marker->next_restart_num)) {
1125     /* Normal case --- swallow the marker and let entropy decoder continue */
1126     TRACEMS1(cinfo, 3, JTRC_RST, cinfo->marker->next_restart_num);
1127     cinfo->unread_marker = 0;
1128   } else {
1129     /* Uh-oh, the restart markers have been messed up. */
1130     /* Let the data source manager determine how to resync. */
1131     if (! (*cinfo->src->resync_to_restart) (cinfo,
1132                                             cinfo->marker->next_restart_num))
1133       return FALSE;
1134   }
1135
1136   /* Update next-restart state */
1137   cinfo->marker->next_restart_num = (cinfo->marker->next_restart_num + 1) & 7;
1138
1139   return TRUE;
1140 }
1141
1142
1143 /*
1144  * This is the default resync_to_restart method for data source managers
1145  * to use if they don't have any better approach.  Some data source managers
1146  * may be able to back up, or may have additional knowledge about the data
1147  * which permits a more intelligent recovery strategy; such managers would
1148  * presumably supply their own resync method.
1149  *
1150  * read_restart_marker calls resync_to_restart if it finds a marker other than
1151  * the restart marker it was expecting.  (This code is *not* used unless
1152  * a nonzero restart interval has been declared.)  cinfo->unread_marker is
1153  * the marker code actually found (might be anything, except 0 or FF).
1154  * The desired restart marker number (0..7) is passed as a parameter.
1155  * This routine is supposed to apply whatever error recovery strategy seems
1156  * appropriate in order to position the input stream to the next data segment.
1157  * Note that cinfo->unread_marker is treated as a marker appearing before
1158  * the current data-source input point; usually it should be reset to zero
1159  * before returning.
1160  * Returns FALSE if suspension is required.
1161  *
1162  * This implementation is substantially constrained by wanting to treat the
1163  * input as a data stream; this means we can't back up.  Therefore, we have
1164  * only the following actions to work with:
1165  *   1. Simply discard the marker and let the entropy decoder resume at next
1166  *      byte of file.
1167  *   2. Read forward until we find another marker, discarding intervening
1168  *      data.  (In theory we could look ahead within the current bufferload,
1169  *      without having to discard data if we don't find the desired marker.
1170  *      This idea is not implemented here, in part because it makes behavior
1171  *      dependent on buffer size and chance buffer-boundary positions.)
1172  *   3. Leave the marker unread (by failing to zero cinfo->unread_marker).
1173  *      This will cause the entropy decoder to process an empty data segment,
1174  *      inserting dummy zeroes, and then we will reprocess the marker.
1175  *
1176  * #2 is appropriate if we think the desired marker lies ahead, while #3 is
1177  * appropriate if the found marker is a future restart marker (indicating
1178  * that we have missed the desired restart marker, probably because it got
1179  * corrupted).
1180  * We apply #2 or #3 if the found marker is a restart marker no more than
1181  * two counts behind or ahead of the expected one.  We also apply #2 if the
1182  * found marker is not a legal JPEG marker code (it's certainly bogus data).
1183  * If the found marker is a restart marker more than 2 counts away, we do #1
1184  * (too much risk that the marker is erroneous; with luck we will be able to
1185  * resync at some future point).
1186  * For any valid non-restart JPEG marker, we apply #3.  This keeps us from
1187  * overrunning the end of a scan.  An implementation limited to single-scan
1188  * files might find it better to apply #2 for markers other than EOI, since
1189  * any other marker would have to be bogus data in that case.
1190  */
1191
1192 GLOBAL(boolean)
1193 jpeg_resync_to_restart (j_decompress_ptr cinfo, int desired)
1194 {
1195   int marker = cinfo->unread_marker;
1196   int action = 1;
1197   
1198   /* Always put up a warning. */
1199   WARNMS2(cinfo, JWRN_MUST_RESYNC, marker, desired);
1200   
1201   /* Outer loop handles repeated decision after scanning forward. */
1202   for (;;) {
1203     if (marker < (int) M_SOF0)
1204       action = 2;               /* invalid marker */
1205     else if (marker < (int) M_RST0 || marker > (int) M_RST7)
1206       action = 3;               /* valid non-restart marker */
1207     else {
1208       if (marker == ((int) M_RST0 + ((desired+1) & 7)) ||
1209           marker == ((int) M_RST0 + ((desired+2) & 7)))
1210         action = 3;             /* one of the next two expected restarts */
1211       else if (marker == ((int) M_RST0 + ((desired-1) & 7)) ||
1212                marker == ((int) M_RST0 + ((desired-2) & 7)))
1213         action = 2;             /* a prior restart, so advance */
1214       else
1215         action = 1;             /* desired restart or too far away */
1216     }
1217     TRACEMS2(cinfo, 4, JTRC_RECOVERY_ACTION, marker, action);
1218     switch (action) {
1219     case 1:
1220       /* Discard marker and let entropy decoder resume processing. */
1221       cinfo->unread_marker = 0;
1222       return TRUE;
1223     case 2:
1224       /* Scan to the next marker, and repeat the decision loop. */
1225       if (! next_marker(cinfo))
1226         return FALSE;
1227       marker = cinfo->unread_marker;
1228       break;
1229     case 3:
1230       /* Return without advancing past this marker. */
1231       /* Entropy decoder will be forced to process an empty segment. */
1232       return TRUE;
1233     }
1234   } /* end loop */
1235 }
1236
1237
1238 /*
1239  * Reset marker processing state to begin a fresh datastream.
1240  */
1241
1242 METHODDEF(void)
1243 reset_marker_reader (j_decompress_ptr cinfo)
1244 {
1245   my_marker_ptr marker = (my_marker_ptr) cinfo->marker;
1246
1247   cinfo->comp_info = NULL;              /* until allocated by get_sof */
1248   cinfo->input_scan_number = 0;         /* no SOS seen yet */
1249   cinfo->unread_marker = 0;             /* no pending marker */
1250   marker->pub.saw_SOI = FALSE;          /* set internal state too */
1251   marker->pub.saw_SOF = FALSE;
1252   marker->pub.discarded_bytes = 0;
1253   marker->cur_marker = NULL;
1254 }
1255
1256
1257 /*
1258  * Initialize the marker reader module.
1259  * This is called only once, when the decompression object is created.
1260  */
1261
1262 GLOBAL(void)
1263 jinit_marker_reader (j_decompress_ptr cinfo)
1264 {
1265   my_marker_ptr marker;
1266   int i;
1267
1268   /* Create subobject in permanent pool */
1269   marker = (my_marker_ptr)
1270     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
1271                                 SIZEOF(my_marker_reader));
1272   cinfo->marker = (struct jpeg_marker_reader *) marker;
1273   /* Initialize public method pointers */
1274   marker->pub.reset_marker_reader = reset_marker_reader;
1275   marker->pub.read_markers = read_markers;
1276   marker->pub.read_restart_marker = read_restart_marker;
1277   /* Initialize COM/APPn processing.
1278    * By default, we examine and then discard APP0 and APP14,
1279    * but simply discard COM and all other APPn.
1280    */
1281   marker->process_COM = skip_variable;
1282   marker->length_limit_COM = 0;
1283   for (i = 0; i < 16; i++) {
1284     marker->process_APPn[i] = skip_variable;
1285     marker->length_limit_APPn[i] = 0;
1286   }
1287   marker->process_APPn[0] = get_interesting_appn;
1288   marker->process_APPn[14] = get_interesting_appn;
1289   /* Reset marker processing state */
1290   reset_marker_reader(cinfo);
1291 }
1292
1293
1294 /*
1295  * Control saving of COM and APPn markers into marker_list.
1296  */
1297
1298 #ifdef SAVE_MARKERS_SUPPORTED
1299
1300 GLOBAL(void)
1301 jpeg_save_markers (j_decompress_ptr cinfo, int marker_code,
1302                    unsigned int length_limit)
1303 {
1304   my_marker_ptr marker = (my_marker_ptr) cinfo->marker;
1305   long maxlength;
1306   jpeg_marker_parser_method processor;
1307
1308   /* Length limit mustn't be larger than what we can allocate
1309    * (should only be a concern in a 16-bit environment).
1310    */
1311   maxlength = cinfo->mem->max_alloc_chunk - SIZEOF(struct jpeg_marker_struct);
1312   if (((long) length_limit) > maxlength)
1313     length_limit = (unsigned int) maxlength;
1314
1315   /* Choose processor routine to use.
1316    * APP0/APP14 have special requirements.
1317    */
1318   if (length_limit) {
1319     processor = save_marker;
1320     /* If saving APP0/APP14, save at least enough for our internal use. */
1321     if (marker_code == (int) M_APP0 && length_limit < APP0_DATA_LEN)
1322       length_limit = APP0_DATA_LEN;
1323     else if (marker_code == (int) M_APP14 && length_limit < APP14_DATA_LEN)
1324       length_limit = APP14_DATA_LEN;
1325   } else {
1326     processor = skip_variable;
1327     /* If discarding APP0/APP14, use our regular on-the-fly processor. */
1328     if (marker_code == (int) M_APP0 || marker_code == (int) M_APP14)
1329       processor = get_interesting_appn;
1330   }
1331
1332   if (marker_code == (int) M_COM) {
1333     marker->process_COM = processor;
1334     marker->length_limit_COM = length_limit;
1335   } else if (marker_code >= (int) M_APP0 && marker_code <= (int) M_APP15) {
1336     marker->process_APPn[marker_code - (int) M_APP0] = processor;
1337     marker->length_limit_APPn[marker_code - (int) M_APP0] = length_limit;
1338   } else
1339     ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, marker_code);
1340 }
1341
1342 #endif /* SAVE_MARKERS_SUPPORTED */
1343
1344
1345 /*
1346  * Install a special processing method for COM or APPn markers.
1347  */
1348
1349 GLOBAL(void)
1350 jpeg_set_marker_processor (j_decompress_ptr cinfo, int marker_code,
1351                            jpeg_marker_parser_method routine)
1352 {
1353   my_marker_ptr marker = (my_marker_ptr) cinfo->marker;
1354
1355   if (marker_code == (int) M_COM)
1356     marker->process_COM = routine;
1357   else if (marker_code >= (int) M_APP0 && marker_code <= (int) M_APP15)
1358     marker->process_APPn[marker_code - (int) M_APP0] = routine;
1359   else
1360     ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, marker_code);
1361 }