jdmarker.c
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:41k
源码类别:

Windows Mobile

开发平台:

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