JDMARKER.c
上传用户:qiutianh
上传日期:2022-08-08
资源大小:939k
文件大小:32k
源码类别:

图形图象

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////////////
  2. //
  3. // Note : this file is included as part of the Smaller Animals Software
  4. // JpegFile package. Though this file has not been modified from it's 
  5. // original IJG 6a form, it is not the responsibility on the Independent
  6. // JPEG Group to answer questions regarding this code.
  7. //
  8. // Any questions you have about this code should be addressed to :
  9. //
  10. // CHRISDL@PAGESZ.NET - the distributor of this package.
  11. //
  12. // Remember, by including this code in the JpegFile package, Smaller 
  13. // Animals Software assumes all responsibilities for answering questions
  14. // about it. If we (SA Software) can't answer your questions ourselves, we 
  15. // will direct you to people who can.
  16. //
  17. // Thanks, CDL.
  18. //
  19. ////////////////////////////////////////////////////////////////////////
  20. /*
  21.  * jdmarker.c
  22.  *
  23.  * Copyright (C) 1991-1996, Thomas G. Lane.
  24.  * This file is part of the Independent JPEG Group's software.
  25.  * For conditions of distribution and use, see the accompanying README file.
  26.  *
  27.  * This file contains routines to decode JPEG datastream markers.
  28.  * Most of the complexity arises from our desire to support input
  29.  * suspension: if not all of the data for a marker is available,
  30.  * we must exit back to the application.  On resumption, we reprocess
  31.  * the marker.
  32.  */
  33. #define JPEG_INTERNALS
  34. #include "jinclude.h"
  35. #include "jpeglib.h"
  36. typedef enum { /* JPEG marker codes */
  37.   M_SOF0  = 0xc0,
  38.   M_SOF1  = 0xc1,
  39.   M_SOF2  = 0xc2,
  40.   M_SOF3  = 0xc3,
  41.   
  42.   M_SOF5  = 0xc5,
  43.   M_SOF6  = 0xc6,
  44.   M_SOF7  = 0xc7,
  45.   
  46.   M_JPG   = 0xc8,
  47.   M_SOF9  = 0xc9,
  48.   M_SOF10 = 0xca,
  49.   M_SOF11 = 0xcb,
  50.   
  51.   M_SOF13 = 0xcd,
  52.   M_SOF14 = 0xce,
  53.   M_SOF15 = 0xcf,
  54.   
  55.   M_DHT   = 0xc4,
  56.   
  57.   M_DAC   = 0xcc,
  58.   
  59.   M_RST0  = 0xd0,
  60.   M_RST1  = 0xd1,
  61.   M_RST2  = 0xd2,
  62.   M_RST3  = 0xd3,
  63.   M_RST4  = 0xd4,
  64.   M_RST5  = 0xd5,
  65.   M_RST6  = 0xd6,
  66.   M_RST7  = 0xd7,
  67.   
  68.   M_SOI   = 0xd8,
  69.   M_EOI   = 0xd9,
  70.   M_SOS   = 0xda,
  71.   M_DQT   = 0xdb,
  72.   M_DNL   = 0xdc,
  73.   M_DRI   = 0xdd,
  74.   M_DHP   = 0xde,
  75.   M_EXP   = 0xdf,
  76.   
  77.   M_APP0  = 0xe0,
  78.   M_APP1  = 0xe1,
  79.   M_APP2  = 0xe2,
  80.   M_APP3  = 0xe3,
  81.   M_APP4  = 0xe4,
  82.   M_APP5  = 0xe5,
  83.   M_APP6  = 0xe6,
  84.   M_APP7  = 0xe7,
  85.   M_APP8  = 0xe8,
  86.   M_APP9  = 0xe9,
  87.   M_APP10 = 0xea,
  88.   M_APP11 = 0xeb,
  89.   M_APP12 = 0xec,
  90.   M_APP13 = 0xed,
  91.   M_APP14 = 0xee,
  92.   M_APP15 = 0xef,
  93.   
  94.   M_JPG0  = 0xf0,
  95.   M_JPG13 = 0xfd,
  96.   M_COM   = 0xfe,
  97.   
  98.   M_TEM   = 0x01,
  99.   
  100.   M_ERROR = 0x100
  101. } JPEG_MARKER;
  102. /*
  103.  * Macros for fetching data from the data source module.
  104.  *
  105.  * At all times, cinfo->src->next_input_byte and ->bytes_in_buffer reflect
  106.  * the current restart point; we update them only when we have reached a
  107.  * suitable place to restart if a suspension occurs.
  108.  */
  109. /* Declare and initialize local copies of input pointer/count */
  110. #define INPUT_VARS(cinfo)  
  111. struct jpeg_source_mgr * datasrc = (cinfo)->src;  
  112. const JOCTET * next_input_byte = datasrc->next_input_byte;  
  113. size_t bytes_in_buffer = datasrc->bytes_in_buffer
  114. /* Unload the local copies --- do this only at a restart boundary */
  115. #define INPUT_SYNC(cinfo)  
  116. ( datasrc->next_input_byte = next_input_byte,  
  117.   datasrc->bytes_in_buffer = bytes_in_buffer )
  118. /* Reload the local copies --- seldom used except in MAKE_BYTE_AVAIL */
  119. #define INPUT_RELOAD(cinfo)  
  120. ( next_input_byte = datasrc->next_input_byte,  
  121.   bytes_in_buffer = datasrc->bytes_in_buffer )
  122. /* Internal macro for INPUT_BYTE and INPUT_2BYTES: make a byte available.
  123.  * Note we do *not* do INPUT_SYNC before calling fill_input_buffer,
  124.  * but we must reload the local copies after a successful fill.
  125.  */
  126. #define MAKE_BYTE_AVAIL(cinfo,action)  
  127. if (bytes_in_buffer == 0) {  
  128.   if (! (*datasrc->fill_input_buffer) (cinfo))  
  129.     { action; }  
  130.   INPUT_RELOAD(cinfo);  
  131. }  
  132. bytes_in_buffer--
  133. /* Read a byte into variable V.
  134.  * If must suspend, take the specified action (typically "return FALSE").
  135.  */
  136. #define INPUT_BYTE(cinfo,V,action)  
  137. MAKESTMT( MAKE_BYTE_AVAIL(cinfo,action); 
  138.   V = GETJOCTET(*next_input_byte++); )
  139. /* As above, but read two bytes interpreted as an unsigned 16-bit integer.
  140.  * V should be declared unsigned int or perhaps long.
  141.  */
  142. #define INPUT_2BYTES(cinfo,V,action)  
  143. MAKESTMT( MAKE_BYTE_AVAIL(cinfo,action); 
  144.   V = ((unsigned int) GETJOCTET(*next_input_byte++)) << 8; 
  145.   MAKE_BYTE_AVAIL(cinfo,action); 
  146.   V += GETJOCTET(*next_input_byte++); )
  147. /*
  148.  * Routines to process JPEG markers.
  149.  *
  150.  * Entry condition: JPEG marker itself has been read and its code saved
  151.  *   in cinfo->unread_marker; input restart point is just after the marker.
  152.  *
  153.  * Exit: if return TRUE, have read and processed any parameters, and have
  154.  *   updated the restart point to point after the parameters.
  155.  *   If return FALSE, was forced to suspend before reaching end of
  156.  *   marker parameters; restart point has not been moved.  Same routine
  157.  *   will be called again after application supplies more input data.
  158.  *
  159.  * This approach to suspension assumes that all of a marker's parameters can
  160.  * fit into a single input bufferload.  This should hold for "normal"
  161.  * markers.  Some COM/APPn markers might have large parameter segments,
  162.  * but we use skip_input_data to get past those, and thereby put the problem
  163.  * on the source manager's shoulders.
  164.  *
  165.  * Note that we don't bother to avoid duplicate trace messages if a
  166.  * suspension occurs within marker parameters.  Other side effects
  167.  * require more care.
  168.  */
  169. LOCAL(boolean)
  170. get_soi (j_decompress_ptr cinfo)
  171. /* Process an SOI marker */
  172. {
  173.   int i;
  174.   
  175.   TRACEMS(cinfo, 1, JTRC_SOI);
  176.   if (cinfo->marker->saw_SOI)
  177.     ERREXIT(cinfo, JERR_SOI_DUPLICATE);
  178.   /* Reset all parameters that are defined to be reset by SOI */
  179.   for (i = 0; i < NUM_ARITH_TBLS; i++) {
  180.     cinfo->arith_dc_L[i] = 0;
  181.     cinfo->arith_dc_U[i] = 1;
  182.     cinfo->arith_ac_K[i] = 5;
  183.   }
  184.   cinfo->restart_interval = 0;
  185.   /* Set initial assumptions for colorspace etc */
  186.   cinfo->jpeg_color_space = JCS_UNKNOWN;
  187.   cinfo->CCIR601_sampling = FALSE; /* Assume non-CCIR sampling??? */
  188.   cinfo->saw_JFIF_marker = FALSE;
  189.   cinfo->density_unit = 0; /* set default JFIF APP0 values */
  190.   cinfo->X_density = 1;
  191.   cinfo->Y_density = 1;
  192.   cinfo->saw_Adobe_marker = FALSE;
  193.   cinfo->Adobe_transform = 0;
  194.   cinfo->marker->saw_SOI = TRUE;
  195.   return TRUE;
  196. }
  197. LOCAL(boolean)
  198. get_sof (j_decompress_ptr cinfo, boolean is_prog, boolean is_arith)
  199. /* Process a SOFn marker */
  200. {
  201.   long length;
  202.   int c, ci;
  203.   jpeg_component_info * compptr;
  204.   INPUT_VARS(cinfo);
  205.   cinfo->progressive_mode = is_prog;
  206.   cinfo->arith_code = is_arith;
  207.   INPUT_2BYTES(cinfo, length, return FALSE);
  208.   INPUT_BYTE(cinfo, cinfo->data_precision, return FALSE);
  209.   INPUT_2BYTES(cinfo, cinfo->image_height, return FALSE);
  210.   INPUT_2BYTES(cinfo, cinfo->image_width, return FALSE);
  211.   INPUT_BYTE(cinfo, cinfo->num_components, return FALSE);
  212.   length -= 8;
  213.   TRACEMS4(cinfo, 1, JTRC_SOF, cinfo->unread_marker,
  214.    (int) cinfo->image_width, (int) cinfo->image_height,
  215.    cinfo->num_components);
  216.   if (cinfo->marker->saw_SOF)
  217.     ERREXIT(cinfo, JERR_SOF_DUPLICATE);
  218.   /* We don't support files in which the image height is initially specified */
  219.   /* as 0 and is later redefined by DNL.  As long as we have to check that,  */
  220.   /* might as well have a general sanity check. */
  221.   if (cinfo->image_height <= 0 || cinfo->image_width <= 0
  222.       || cinfo->num_components <= 0)
  223.     ERREXIT(cinfo, JERR_EMPTY_IMAGE);
  224.   if (length != (cinfo->num_components * 3))
  225.     ERREXIT(cinfo, JERR_BAD_LENGTH);
  226.   if (cinfo->comp_info == NULL) /* do only once, even if suspend */
  227.     cinfo->comp_info = (jpeg_component_info *) (*cinfo->mem->alloc_small)
  228. ((j_common_ptr) cinfo, JPOOL_IMAGE,
  229.  cinfo->num_components * SIZEOF(jpeg_component_info));
  230.   
  231.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  232.        ci++, compptr++) {
  233.     compptr->component_index = ci;
  234.     INPUT_BYTE(cinfo, compptr->component_id, return FALSE);
  235.     INPUT_BYTE(cinfo, c, return FALSE);
  236.     compptr->h_samp_factor = (c >> 4) & 15;
  237.     compptr->v_samp_factor = (c     ) & 15;
  238.     INPUT_BYTE(cinfo, compptr->quant_tbl_no, return FALSE);
  239.     TRACEMS4(cinfo, 1, JTRC_SOF_COMPONENT,
  240.      compptr->component_id, compptr->h_samp_factor,
  241.      compptr->v_samp_factor, compptr->quant_tbl_no);
  242.   }
  243.   cinfo->marker->saw_SOF = TRUE;
  244.   INPUT_SYNC(cinfo);
  245.   return TRUE;
  246. }
  247. LOCAL(boolean)
  248. get_sos (j_decompress_ptr cinfo)
  249. /* Process a SOS marker */
  250. {
  251.   long length;
  252.   int i, ci, n, c, cc;
  253.   jpeg_component_info * compptr;
  254.   INPUT_VARS(cinfo);
  255.   if (! cinfo->marker->saw_SOF)
  256.     ERREXIT(cinfo, JERR_SOS_NO_SOF);
  257.   INPUT_2BYTES(cinfo, length, return FALSE);
  258.   INPUT_BYTE(cinfo, n, return FALSE); /* Number of components */
  259.   if (length != (n * 2 + 6) || n < 1 || n > MAX_COMPS_IN_SCAN)
  260.     ERREXIT(cinfo, JERR_BAD_LENGTH);
  261.   TRACEMS1(cinfo, 1, JTRC_SOS, n);
  262.   cinfo->comps_in_scan = n;
  263.   /* Collect the component-spec parameters */
  264.   for (i = 0; i < n; i++) {
  265.     INPUT_BYTE(cinfo, cc, return FALSE);
  266.     INPUT_BYTE(cinfo, c, return FALSE);
  267.     
  268.     for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  269.  ci++, compptr++) {
  270.       if (cc == compptr->component_id)
  271. goto id_found;
  272.     }
  273.     ERREXIT1(cinfo, JERR_BAD_COMPONENT_ID, cc);
  274.   id_found:
  275.     cinfo->cur_comp_info[i] = compptr;
  276.     compptr->dc_tbl_no = (c >> 4) & 15;
  277.     compptr->ac_tbl_no = (c     ) & 15;
  278.     
  279.     TRACEMS3(cinfo, 1, JTRC_SOS_COMPONENT, cc,
  280.      compptr->dc_tbl_no, compptr->ac_tbl_no);
  281.   }
  282.   /* Collect the additional scan parameters Ss, Se, Ah/Al. */
  283.   INPUT_BYTE(cinfo, c, return FALSE);
  284.   cinfo->Ss = c;
  285.   INPUT_BYTE(cinfo, c, return FALSE);
  286.   cinfo->Se = c;
  287.   INPUT_BYTE(cinfo, c, return FALSE);
  288.   cinfo->Ah = (c >> 4) & 15;
  289.   cinfo->Al = (c     ) & 15;
  290.   TRACEMS4(cinfo, 1, JTRC_SOS_PARAMS, cinfo->Ss, cinfo->Se,
  291.    cinfo->Ah, cinfo->Al);
  292.   /* Prepare to scan data & restart markers */
  293.   cinfo->marker->next_restart_num = 0;
  294.   /* Count another SOS marker */
  295.   cinfo->input_scan_number++;
  296.   INPUT_SYNC(cinfo);
  297.   return TRUE;
  298. }
  299. METHODDEF(boolean)
  300. get_app0 (j_decompress_ptr cinfo)
  301. /* Process an APP0 marker */
  302. {
  303. #define JFIF_LEN 14
  304.   long length;
  305.   UINT8 b[JFIF_LEN];
  306.   int buffp;
  307.   INPUT_VARS(cinfo);
  308.   INPUT_2BYTES(cinfo, length, return FALSE);
  309.   length -= 2;
  310.   /* See if a JFIF APP0 marker is present */
  311.   if (length >= JFIF_LEN) {
  312.     for (buffp = 0; buffp < JFIF_LEN; buffp++)
  313.       INPUT_BYTE(cinfo, b[buffp], return FALSE);
  314.     length -= JFIF_LEN;
  315.     if (b[0]==0x4A && b[1]==0x46 && b[2]==0x49 && b[3]==0x46 && b[4]==0) {
  316.       /* Found JFIF APP0 marker: check version */
  317.       /* Major version must be 1, anything else signals an incompatible change.
  318.        * We used to treat this as an error, but now it's a nonfatal warning,
  319.        * because some bozo at Hijaak couldn't read the spec.
  320.        * Minor version should be 0..2, but process anyway if newer.
  321.        */
  322.       if (b[5] != 1)
  323. WARNMS2(cinfo, JWRN_JFIF_MAJOR, b[5], b[6]);
  324.       else if (b[6] > 2)
  325. TRACEMS2(cinfo, 1, JTRC_JFIF_MINOR, b[5], b[6]);
  326.       /* Save info */
  327.       cinfo->saw_JFIF_marker = TRUE;
  328.       cinfo->density_unit = b[7];
  329.       cinfo->X_density = (b[8] << 8) + b[9];
  330.       cinfo->Y_density = (b[10] << 8) + b[11];
  331.       TRACEMS3(cinfo, 1, JTRC_JFIF,
  332.        cinfo->X_density, cinfo->Y_density, cinfo->density_unit);
  333.       if (b[12] | b[13])
  334. TRACEMS2(cinfo, 1, JTRC_JFIF_THUMBNAIL, b[12], b[13]);
  335.       if (length != ((long) b[12] * (long) b[13] * (long) 3))
  336. TRACEMS1(cinfo, 1, JTRC_JFIF_BADTHUMBNAILSIZE, (int) length);
  337.     } else {
  338.       /* Start of APP0 does not match "JFIF" */
  339.       TRACEMS1(cinfo, 1, JTRC_APP0, (int) length + JFIF_LEN);
  340.     }
  341.   } else {
  342.     /* Too short to be JFIF marker */
  343.     TRACEMS1(cinfo, 1, JTRC_APP0, (int) length);
  344.   }
  345.   INPUT_SYNC(cinfo);
  346.   if (length > 0) /* skip any remaining data -- could be lots */
  347.     (*cinfo->src->skip_input_data) (cinfo, (long) length);
  348.   return TRUE;
  349. }
  350. METHODDEF(boolean)
  351. get_app14 (j_decompress_ptr cinfo)
  352. /* Process an APP14 marker */
  353. {
  354. #define ADOBE_LEN 12
  355.   long length;
  356.   UINT8 b[ADOBE_LEN];
  357.   int buffp;
  358.   unsigned int version, flags0, flags1, transform;
  359.   INPUT_VARS(cinfo);
  360.   INPUT_2BYTES(cinfo, length, return FALSE);
  361.   length -= 2;
  362.   /* See if an Adobe APP14 marker is present */
  363.   if (length >= ADOBE_LEN) {
  364.     for (buffp = 0; buffp < ADOBE_LEN; buffp++)
  365.       INPUT_BYTE(cinfo, b[buffp], return FALSE);
  366.     length -= ADOBE_LEN;
  367.     if (b[0]==0x41 && b[1]==0x64 && b[2]==0x6F && b[3]==0x62 && b[4]==0x65) {
  368.       /* Found Adobe APP14 marker */
  369.       version = (b[5] << 8) + b[6];
  370.       flags0 = (b[7] << 8) + b[8];
  371.       flags1 = (b[9] << 8) + b[10];
  372.       transform = b[11];
  373.       TRACEMS4(cinfo, 1, JTRC_ADOBE, version, flags0, flags1, transform);
  374.       cinfo->saw_Adobe_marker = TRUE;
  375.       cinfo->Adobe_transform = (UINT8) transform;
  376.     } else {
  377.       /* Start of APP14 does not match "Adobe" */
  378.       TRACEMS1(cinfo, 1, JTRC_APP14, (int) length + ADOBE_LEN);
  379.     }
  380.   } else {
  381.     /* Too short to be Adobe marker */
  382.     TRACEMS1(cinfo, 1, JTRC_APP14, (int) length);
  383.   }
  384.   INPUT_SYNC(cinfo);
  385.   if (length > 0) /* skip any remaining data -- could be lots */
  386.     (*cinfo->src->skip_input_data) (cinfo, (long) length);
  387.   return TRUE;
  388. }
  389. LOCAL(boolean)
  390. get_dac (j_decompress_ptr cinfo)
  391. /* Process a DAC marker */
  392. {
  393.   long length;
  394.   int index, val;
  395.   INPUT_VARS(cinfo);
  396.   INPUT_2BYTES(cinfo, length, return FALSE);
  397.   length -= 2;
  398.   
  399.   while (length > 0) {
  400.     INPUT_BYTE(cinfo, index, return FALSE);
  401.     INPUT_BYTE(cinfo, val, return FALSE);
  402.     length -= 2;
  403.     TRACEMS2(cinfo, 1, JTRC_DAC, index, val);
  404.     if (index < 0 || index >= (2*NUM_ARITH_TBLS))
  405.       ERREXIT1(cinfo, JERR_DAC_INDEX, index);
  406.     if (index >= NUM_ARITH_TBLS) { /* define AC table */
  407.       cinfo->arith_ac_K[index-NUM_ARITH_TBLS] = (UINT8) val;
  408.     } else { /* define DC table */
  409.       cinfo->arith_dc_L[index] = (UINT8) (val & 0x0F);
  410.       cinfo->arith_dc_U[index] = (UINT8) (val >> 4);
  411.       if (cinfo->arith_dc_L[index] > cinfo->arith_dc_U[index])
  412. ERREXIT1(cinfo, JERR_DAC_VALUE, val);
  413.     }
  414.   }
  415.   INPUT_SYNC(cinfo);
  416.   return TRUE;
  417. }
  418. LOCAL(boolean)
  419. get_dht (j_decompress_ptr cinfo)
  420. /* Process a DHT marker */
  421. {
  422.   long length;
  423.   UINT8 bits[17];
  424.   UINT8 huffval[256];
  425.   int i, index, count;
  426.   JHUFF_TBL **htblptr;
  427.   INPUT_VARS(cinfo);
  428.   INPUT_2BYTES(cinfo, length, return FALSE);
  429.   length -= 2;
  430.   
  431.   while (length > 0) {
  432.     INPUT_BYTE(cinfo, index, return FALSE);
  433.     TRACEMS1(cinfo, 1, JTRC_DHT, index);
  434.       
  435.     bits[0] = 0;
  436.     count = 0;
  437.     for (i = 1; i <= 16; i++) {
  438.       INPUT_BYTE(cinfo, bits[i], return FALSE);
  439.       count += bits[i];
  440.     }
  441.     length -= 1 + 16;
  442.     TRACEMS8(cinfo, 2, JTRC_HUFFBITS,
  443.      bits[1], bits[2], bits[3], bits[4],
  444.      bits[5], bits[6], bits[7], bits[8]);
  445.     TRACEMS8(cinfo, 2, JTRC_HUFFBITS,
  446.      bits[9], bits[10], bits[11], bits[12],
  447.      bits[13], bits[14], bits[15], bits[16]);
  448.     if (count > 256 || ((long) count) > length)
  449.       ERREXIT(cinfo, JERR_DHT_COUNTS);
  450.     for (i = 0; i < count; i++)
  451.       INPUT_BYTE(cinfo, huffval[i], return FALSE);
  452.     length -= count;
  453.     if (index & 0x10) { /* AC table definition */
  454.       index -= 0x10;
  455.       htblptr = &cinfo->ac_huff_tbl_ptrs[index];
  456.     } else { /* DC table definition */
  457.       htblptr = &cinfo->dc_huff_tbl_ptrs[index];
  458.     }
  459.     if (index < 0 || index >= NUM_HUFF_TBLS)
  460.       ERREXIT1(cinfo, JERR_DHT_INDEX, index);
  461.     if (*htblptr == NULL)
  462.       *htblptr = jpeg_alloc_huff_table((j_common_ptr) cinfo);
  463.   
  464.     MEMCOPY((*htblptr)->bits, bits, SIZEOF((*htblptr)->bits));
  465.     MEMCOPY((*htblptr)->huffval, huffval, SIZEOF((*htblptr)->huffval));
  466.   }
  467.   INPUT_SYNC(cinfo);
  468.   return TRUE;
  469. }
  470. LOCAL(boolean)
  471. get_dqt (j_decompress_ptr cinfo)
  472. /* Process a DQT marker */
  473. {
  474.   long length;
  475.   int n, i, prec;
  476.   unsigned int tmp;
  477.   JQUANT_TBL *quant_ptr;
  478.   INPUT_VARS(cinfo);
  479.   INPUT_2BYTES(cinfo, length, return FALSE);
  480.   length -= 2;
  481.   while (length > 0) {
  482.     INPUT_BYTE(cinfo, n, return FALSE);
  483.     prec = n >> 4;
  484.     n &= 0x0F;
  485.     TRACEMS2(cinfo, 1, JTRC_DQT, n, prec);
  486.     if (n >= NUM_QUANT_TBLS)
  487.       ERREXIT1(cinfo, JERR_DQT_INDEX, n);
  488.       
  489.     if (cinfo->quant_tbl_ptrs[n] == NULL)
  490.       cinfo->quant_tbl_ptrs[n] = jpeg_alloc_quant_table((j_common_ptr) cinfo);
  491.     quant_ptr = cinfo->quant_tbl_ptrs[n];
  492.     for (i = 0; i < DCTSIZE2; i++) {
  493.       if (prec)
  494. INPUT_2BYTES(cinfo, tmp, return FALSE);
  495.       else
  496. INPUT_BYTE(cinfo, tmp, return FALSE);
  497.       /* We convert the zigzag-order table to natural array order. */
  498.       quant_ptr->quantval[jpeg_natural_order[i]] = (Ushort) tmp;
  499.     }
  500.     if (cinfo->err->trace_level >= 2) {
  501.       for (i = 0; i < DCTSIZE2; i += 8) {
  502. TRACEMS8(cinfo, 2, JTRC_QUANTVALS,
  503.  quant_ptr->quantval[i],   quant_ptr->quantval[i+1],
  504.  quant_ptr->quantval[i+2], quant_ptr->quantval[i+3],
  505.  quant_ptr->quantval[i+4], quant_ptr->quantval[i+5],
  506.  quant_ptr->quantval[i+6], quant_ptr->quantval[i+7]);
  507.       }
  508.     }
  509.     length -= DCTSIZE2+1;
  510.     if (prec) length -= DCTSIZE2;
  511.   }
  512.   INPUT_SYNC(cinfo);
  513.   return TRUE;
  514. }
  515. LOCAL(boolean)
  516. get_dri (j_decompress_ptr cinfo)
  517. /* Process a DRI marker */
  518. {
  519.   long length;
  520.   unsigned int tmp;
  521.   INPUT_VARS(cinfo);
  522.   INPUT_2BYTES(cinfo, length, return FALSE);
  523.   
  524.   if (length != 4)
  525.     ERREXIT(cinfo, JERR_BAD_LENGTH);
  526.   INPUT_2BYTES(cinfo, tmp, return FALSE);
  527.   TRACEMS1(cinfo, 1, JTRC_DRI, tmp);
  528.   cinfo->restart_interval = tmp;
  529.   INPUT_SYNC(cinfo);
  530.   return TRUE;
  531. }
  532. METHODDEF(boolean)
  533. skip_variable (j_decompress_ptr cinfo)
  534. /* Skip over an unknown or uninteresting variable-length marker */
  535. {
  536.   long length;
  537.   INPUT_VARS(cinfo);
  538.   INPUT_2BYTES(cinfo, length, return FALSE);
  539.   
  540.   TRACEMS2(cinfo, 1, JTRC_MISC_MARKER, cinfo->unread_marker, (int) length);
  541.   INPUT_SYNC(cinfo); /* do before skip_input_data */
  542.   (*cinfo->src->skip_input_data) (cinfo, (long) length - 2L);
  543.   return TRUE;
  544. }
  545. /*
  546.  * Find the next JPEG marker, save it in cinfo->unread_marker.
  547.  * Returns FALSE if had to suspend before reaching a marker;
  548.  * in that case cinfo->unread_marker is unchanged.
  549.  *
  550.  * Note that the result might not be a valid marker code,
  551.  * but it will never be 0 or FF.
  552.  */
  553. LOCAL(boolean)
  554. next_marker (j_decompress_ptr cinfo)
  555. {
  556.   int c;
  557.   INPUT_VARS(cinfo);
  558.   for (;;) {
  559.     INPUT_BYTE(cinfo, c, return FALSE);
  560.     /* Skip any non-FF bytes.
  561.      * This may look a bit inefficient, but it will not occur in a valid file.
  562.      * We sync after each discarded byte so that a suspending data source
  563.      * can discard the byte from its buffer.
  564.      */
  565.     while (c != 0xFF) {
  566.       cinfo->marker->discarded_bytes++;
  567.       INPUT_SYNC(cinfo);
  568.       INPUT_BYTE(cinfo, c, return FALSE);
  569.     }
  570.     /* This loop swallows any duplicate FF bytes.  Extra FFs are legal as
  571.      * pad bytes, so don't count them in discarded_bytes.  We assume there
  572.      * will not be so many consecutive FF bytes as to overflow a suspending
  573.      * data source's input buffer.
  574.      */
  575.     do {
  576.       INPUT_BYTE(cinfo, c, return FALSE);
  577.     } while (c == 0xFF);
  578.     if (c != 0)
  579.       break; /* found a valid marker, exit loop */
  580.     /* Reach here if we found a stuffed-zero data sequence (FF/00).
  581.      * Discard it and loop back to try again.
  582.      */
  583.     cinfo->marker->discarded_bytes += 2;
  584.     INPUT_SYNC(cinfo);
  585.   }
  586.   if (cinfo->marker->discarded_bytes != 0) {
  587.     WARNMS2(cinfo, JWRN_EXTRANEOUS_DATA, cinfo->marker->discarded_bytes, c);
  588.     cinfo->marker->discarded_bytes = 0;
  589.   }
  590.   cinfo->unread_marker = c;
  591.   INPUT_SYNC(cinfo);
  592.   return TRUE;
  593. }
  594. LOCAL(boolean)
  595. first_marker (j_decompress_ptr cinfo)
  596. /* Like next_marker, but used to obtain the initial SOI marker. */
  597. /* For this marker, we do not allow preceding garbage or fill; otherwise,
  598.  * we might well scan an entire input file before realizing it ain't JPEG.
  599.  * If an application wants to process non-JFIF files, it must seek to the
  600.  * SOI before calling the JPEG library.
  601.  */
  602. {
  603.   int c, c2;
  604.   INPUT_VARS(cinfo);
  605.   INPUT_BYTE(cinfo, c, return FALSE);
  606.   INPUT_BYTE(cinfo, c2, return FALSE);
  607.   if (c != 0xFF || c2 != (int) M_SOI)
  608.     ERREXIT2(cinfo, JERR_NO_SOI, c, c2);
  609.   cinfo->unread_marker = c2;
  610.   INPUT_SYNC(cinfo);
  611.   return TRUE;
  612. }
  613. /*
  614.  * Read markers until SOS or EOI.
  615.  *
  616.  * Returns same codes as are defined for jpeg_consume_input:
  617.  * JPEG_SUSPENDED, JPEG_REACHED_SOS, or JPEG_REACHED_EOI.
  618.  */
  619. METHODDEF(int)
  620. read_markers (j_decompress_ptr cinfo)
  621. {
  622.   /* Outer loop repeats once for each marker. */
  623.   for (;;) {
  624.     /* Collect the marker proper, unless we already did. */
  625.     /* NB: first_marker() enforces the requirement that SOI appear first. */
  626.     if (cinfo->unread_marker == 0) {
  627.       if (! cinfo->marker->saw_SOI) {
  628. if (! first_marker(cinfo))
  629.   return JPEG_SUSPENDED;
  630.       } else {
  631. if (! next_marker(cinfo))
  632.   return JPEG_SUSPENDED;
  633.       }
  634.     }
  635.     /* At this point cinfo->unread_marker contains the marker code and the
  636.      * input point is just past the marker proper, but before any parameters.
  637.      * A suspension will cause us to return with this state still true.
  638.      */
  639.     switch (cinfo->unread_marker) {
  640.     case M_SOI:
  641.       if (! get_soi(cinfo))
  642. return JPEG_SUSPENDED;
  643.       break;
  644.     case M_SOF0: /* Baseline */
  645.     case M_SOF1: /* Extended sequential, Huffman */
  646.       if (! get_sof(cinfo, FALSE, FALSE))
  647. return JPEG_SUSPENDED;
  648.       break;
  649.     case M_SOF2: /* Progressive, Huffman */
  650.       if (! get_sof(cinfo, TRUE, FALSE))
  651. return JPEG_SUSPENDED;
  652.       break;
  653.     case M_SOF9: /* Extended sequential, arithmetic */
  654.       if (! get_sof(cinfo, FALSE, TRUE))
  655. return JPEG_SUSPENDED;
  656.       break;
  657.     case M_SOF10: /* Progressive, arithmetic */
  658.       if (! get_sof(cinfo, TRUE, TRUE))
  659. return JPEG_SUSPENDED;
  660.       break;
  661.     /* Currently unsupported SOFn types */
  662.     case M_SOF3: /* Lossless, Huffman */
  663.     case M_SOF5: /* Differential sequential, Huffman */
  664.     case M_SOF6: /* Differential progressive, Huffman */
  665.     case M_SOF7: /* Differential lossless, Huffman */
  666.     case M_JPG: /* Reserved for JPEG extensions */
  667.     case M_SOF11: /* Lossless, arithmetic */
  668.     case M_SOF13: /* Differential sequential, arithmetic */
  669.     case M_SOF14: /* Differential progressive, arithmetic */
  670.     case M_SOF15: /* Differential lossless, arithmetic */
  671.       ERREXIT1(cinfo, JERR_SOF_UNSUPPORTED, cinfo->unread_marker);
  672.       break;
  673.     case M_SOS:
  674.       if (! get_sos(cinfo))
  675. return JPEG_SUSPENDED;
  676.       cinfo->unread_marker = 0; /* processed the marker */
  677.       return JPEG_REACHED_SOS;
  678.     
  679.     case M_EOI:
  680.       TRACEMS(cinfo, 1, JTRC_EOI);
  681.       cinfo->unread_marker = 0; /* processed the marker */
  682.       return JPEG_REACHED_EOI;
  683.       
  684.     case M_DAC:
  685.       if (! get_dac(cinfo))
  686. return JPEG_SUSPENDED;
  687.       break;
  688.       
  689.     case M_DHT:
  690.       if (! get_dht(cinfo))
  691. return JPEG_SUSPENDED;
  692.       break;
  693.       
  694.     case M_DQT:
  695.       if (! get_dqt(cinfo))
  696. return JPEG_SUSPENDED;
  697.       break;
  698.       
  699.     case M_DRI:
  700.       if (! get_dri(cinfo))
  701. return JPEG_SUSPENDED;
  702.       break;
  703.       
  704.     case M_APP0:
  705.     case M_APP1:
  706.     case M_APP2:
  707.     case M_APP3:
  708.     case M_APP4:
  709.     case M_APP5:
  710.     case M_APP6:
  711.     case M_APP7:
  712.     case M_APP8:
  713.     case M_APP9:
  714.     case M_APP10:
  715.     case M_APP11:
  716.     case M_APP12:
  717.     case M_APP13:
  718.     case M_APP14:
  719.     case M_APP15:
  720.       if (! (*cinfo->marker->process_APPn[cinfo->unread_marker - (int) M_APP0]) (cinfo))
  721. return JPEG_SUSPENDED;
  722.       break;
  723.       
  724.     case M_COM:
  725.       if (! (*cinfo->marker->process_COM) (cinfo))
  726. return JPEG_SUSPENDED;
  727.       break;
  728.     case M_RST0: /* these are all parameterless */
  729.     case M_RST1:
  730.     case M_RST2:
  731.     case M_RST3:
  732.     case M_RST4:
  733.     case M_RST5:
  734.     case M_RST6:
  735.     case M_RST7:
  736.     case M_TEM:
  737.       TRACEMS1(cinfo, 1, JTRC_PARMLESS_MARKER, cinfo->unread_marker);
  738.       break;
  739.     case M_DNL: /* Ignore DNL ... perhaps the wrong thing */
  740.       if (! skip_variable(cinfo))
  741. return JPEG_SUSPENDED;
  742.       break;
  743.     default: /* must be DHP, EXP, JPGn, or RESn */
  744.       /* For now, we treat the reserved markers as fatal errors since they are
  745.        * likely to be used to signal incompatible JPEG Part 3 extensions.
  746.        * Once the JPEG 3 version-number marker is well defined, this code
  747.        * ought to change!
  748.        */
  749.       ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, cinfo->unread_marker);
  750.       break;
  751.     }
  752.     /* Successfully processed marker, so reset state variable */
  753.     cinfo->unread_marker = 0;
  754.   } /* end loop */
  755. }
  756. /*
  757.  * Read a restart marker, which is expected to appear next in the datastream;
  758.  * if the marker is not there, take appropriate recovery action.
  759.  * Returns FALSE if suspension is required.
  760.  *
  761.  * This is called by the entropy decoder after it has read an appropriate
  762.  * number of MCUs.  cinfo->unread_marker may be nonzero if the entropy decoder
  763.  * has already read a marker from the data source.  Under normal conditions
  764.  * cinfo->unread_marker will be reset to 0 before returning; if not reset,
  765.  * it holds a marker which the decoder will be unable to read past.
  766.  */
  767. METHODDEF(boolean)
  768. read_restart_marker (j_decompress_ptr cinfo)
  769. {
  770.   /* Obtain a marker unless we already did. */
  771.   /* Note that next_marker will complain if it skips any data. */
  772.   if (cinfo->unread_marker == 0) {
  773.     if (! next_marker(cinfo))
  774.       return FALSE;
  775.   }
  776.   if (cinfo->unread_marker ==
  777.       ((int) M_RST0 + cinfo->marker->next_restart_num)) {
  778.     /* Normal case --- swallow the marker and let entropy decoder continue */
  779.     TRACEMS1(cinfo, 3, JTRC_RST, cinfo->marker->next_restart_num);
  780.     cinfo->unread_marker = 0;
  781.   } else {
  782.     /* Uh-oh, the restart markers have been messed up. */
  783.     /* Let the data source manager determine how to resync. */
  784.     if (! (*cinfo->src->resync_to_restart) (cinfo,
  785.     cinfo->marker->next_restart_num))
  786.       return FALSE;
  787.   }
  788.   /* Update next-restart state */
  789.   cinfo->marker->next_restart_num = (cinfo->marker->next_restart_num + 1) & 7;
  790.   return TRUE;
  791. }
  792. /*
  793.  * This is the default resync_to_restart method for data source managers
  794.  * to use if they don't have any better approach.  Some data source managers
  795.  * may be able to back up, or may have additional knowledge about the data
  796.  * which permits a more intelligent recovery strategy; such managers would
  797.  * presumably supply their own resync method.
  798.  *
  799.  * read_restart_marker calls resync_to_restart if it finds a marker other than
  800.  * the restart marker it was expecting.  (This code is *not* used unless
  801.  * a nonzero restart interval has been declared.)  cinfo->unread_marker is
  802.  * the marker code actually found (might be anything, except 0 or FF).
  803.  * The desired restart marker number (0..7) is passed as a parameter.
  804.  * This routine is supposed to apply whatever error recovery strategy seems
  805.  * appropriate in order to position the input stream to the next data segment.
  806.  * Note that cinfo->unread_marker is treated as a marker appearing before
  807.  * the current data-source input point; usually it should be reset to zero
  808.  * before returning.
  809.  * Returns FALSE if suspension is required.
  810.  *
  811.  * This implementation is substantially constrained by wanting to treat the
  812.  * input as a data stream; this means we can't back up.  Therefore, we have
  813.  * only the following actions to work with:
  814.  *   1. Simply discard the marker and let the entropy decoder resume at next
  815.  *      byte of file.
  816.  *   2. Read forward until we find another marker, discarding intervening
  817.  *      data.  (In theory we could look ahead within the current bufferload,
  818.  *      without having to discard data if we don't find the desired marker.
  819.  *      This idea is not implemented here, in part because it makes behavior
  820.  *      dependent on buffer size and chance buffer-boundary positions.)
  821.  *   3. Leave the marker unread (by failing to zero cinfo->unread_marker).
  822.  *      This will cause the entropy decoder to process an empty data segment,
  823.  *      inserting dummy zeroes, and then we will reprocess the marker.
  824.  *
  825.  * #2 is appropriate if we think the desired marker lies ahead, while #3 is
  826.  * appropriate if the found marker is a future restart marker (indicating
  827.  * that we have missed the desired restart marker, probably because it got
  828.  * corrupted).
  829.  * We apply #2 or #3 if the found marker is a restart marker no more than
  830.  * two counts behind or ahead of the expected one.  We also apply #2 if the
  831.  * found marker is not a legal JPEG marker code (it's certainly bogus data).
  832.  * If the found marker is a restart marker more than 2 counts away, we do #1
  833.  * (too much risk that the marker is erroneous; with luck we will be able to
  834.  * resync at some future point).
  835.  * For any valid non-restart JPEG marker, we apply #3.  This keeps us from
  836.  * overrunning the end of a scan.  An implementation limited to single-scan
  837.  * files might find it better to apply #2 for markers other than EOI, since
  838.  * any other marker would have to be bogus data in that case.
  839.  */
  840. GLOBAL(boolean)
  841. jpeg_resync_to_restart (j_decompress_ptr cinfo, int desired)
  842. {
  843.   int marker = cinfo->unread_marker;
  844.   int action = 1;
  845.   
  846.   /* Always put up a warning. */
  847.   WARNMS2(cinfo, JWRN_MUST_RESYNC, marker, desired);
  848.   
  849.   /* Outer loop handles repeated decision after scanning forward. */
  850.   for (;;) {
  851.     if (marker < (int) M_SOF0)
  852.       action = 2; /* invalid marker */
  853.     else if (marker < (int) M_RST0 || marker > (int) M_RST7)
  854.       action = 3; /* valid non-restart marker */
  855.     else {
  856.       if (marker == ((int) M_RST0 + ((desired+1) & 7)) ||
  857.   marker == ((int) M_RST0 + ((desired+2) & 7)))
  858. action = 3; /* one of the next two expected restarts */
  859.       else if (marker == ((int) M_RST0 + ((desired-1) & 7)) ||
  860.        marker == ((int) M_RST0 + ((desired-2) & 7)))
  861. action = 2; /* a prior restart, so advance */
  862.       else
  863. action = 1; /* desired restart or too far away */
  864.     }
  865.     TRACEMS2(cinfo, 4, JTRC_RECOVERY_ACTION, marker, action);
  866.     switch (action) {
  867.     case 1:
  868.       /* Discard marker and let entropy decoder resume processing. */
  869.       cinfo->unread_marker = 0;
  870.       return TRUE;
  871.     case 2:
  872.       /* Scan to the next marker, and repeat the decision loop. */
  873.       if (! next_marker(cinfo))
  874. return FALSE;
  875.       marker = cinfo->unread_marker;
  876.       break;
  877.     case 3:
  878.       /* Return without advancing past this marker. */
  879.       /* Entropy decoder will be forced to process an empty segment. */
  880.       return TRUE;
  881.     }
  882.   } /* end loop */
  883. }
  884. /*
  885.  * Reset marker processing state to begin a fresh datastream.
  886.  */
  887. METHODDEF(void)
  888. reset_marker_reader (j_decompress_ptr cinfo)
  889. {
  890.   cinfo->comp_info = NULL; /* until allocated by get_sof */
  891.   cinfo->input_scan_number = 0; /* no SOS seen yet */
  892.   cinfo->unread_marker = 0; /* no pending marker */
  893.   cinfo->marker->saw_SOI = FALSE; /* set internal state too */
  894.   cinfo->marker->saw_SOF = FALSE;
  895.   cinfo->marker->discarded_bytes = 0;
  896. }
  897. /*
  898.  * Initialize the marker reader module.
  899.  * This is called only once, when the decompression object is created.
  900.  */
  901. GLOBAL(void)
  902. jinit_marker_reader (j_decompress_ptr cinfo)
  903. {
  904.   int i;
  905.   /* Create subobject in permanent pool */
  906.   cinfo->marker = (struct jpeg_marker_reader *)
  907.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
  908. SIZEOF(struct jpeg_marker_reader));
  909.   /* Initialize method pointers */
  910.   cinfo->marker->reset_marker_reader = reset_marker_reader;
  911.   cinfo->marker->read_markers = read_markers;
  912.   cinfo->marker->read_restart_marker = read_restart_marker;
  913.   cinfo->marker->process_COM = skip_variable;
  914.   for (i = 0; i < 16; i++)
  915.     cinfo->marker->process_APPn[i] = skip_variable;
  916.   cinfo->marker->process_APPn[0] = get_app0;
  917.   cinfo->marker->process_APPn[14] = get_app14;
  918.   /* Reset marker processing state */
  919.   reset_marker_reader(cinfo);
  920. }