JDMARKER.C
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:31k
源码类别:

图片显示

开发平台:

Visual C++

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