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

图形图象

开发平台:

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.  * jdinput.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 input control logic for the JPEG decompressor.
  28.  * These routines are concerned with controlling the decompressor's input
  29.  * processing (marker reading and coefficient decoding).  The actual input
  30.  * reading is done in jdmarker.c, jdhuff.c, and jdphuff.c.
  31.  */
  32. #define JPEG_INTERNALS
  33. #include "jinclude.h"
  34. #include "jpeglib.h"
  35. /* Private state */
  36. typedef struct {
  37.   struct jpeg_input_controller pub; /* public fields */
  38.   boolean inheaders; /* TRUE until first SOS is reached */
  39. } my_input_controller;
  40. typedef my_input_controller * my_inputctl_ptr;
  41. /* Forward declarations */
  42. METHODDEF(int) consume_markers JPP((j_decompress_ptr cinfo));
  43. /*
  44.  * Routines to calculate various quantities related to the size of the image.
  45.  */
  46. LOCAL(void)
  47. initial_setup (j_decompress_ptr cinfo)
  48. /* Called once, when first SOS marker is reached */
  49. {
  50.   int ci;
  51.   jpeg_component_info *compptr;
  52.   /* Make sure image isn't bigger than I can handle */
  53.   if ((long) cinfo->image_height > (long) JPEG_MAX_DIMENSION ||
  54.       (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION)
  55.     ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, (unsigned int) JPEG_MAX_DIMENSION);
  56.   /* For now, precision must match compiled-in value... */
  57.   if (cinfo->data_precision != BITS_IN_JSAMPLE)
  58.     ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
  59.   /* Check that number of components won't exceed internal array sizes */
  60.   if (cinfo->num_components > MAX_COMPONENTS)
  61.     ERREXIT2(cinfo, JERR_COMPONENT_COUNT, cinfo->num_components,
  62.      MAX_COMPONENTS);
  63.   /* Compute maximum sampling factors; check factor validity */
  64.   cinfo->max_h_samp_factor = 1;
  65.   cinfo->max_v_samp_factor = 1;
  66.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  67.        ci++, compptr++) {
  68.     if (compptr->h_samp_factor<=0 || compptr->h_samp_factor>MAX_SAMP_FACTOR ||
  69. compptr->v_samp_factor<=0 || compptr->v_samp_factor>MAX_SAMP_FACTOR)
  70.       ERREXIT(cinfo, JERR_BAD_SAMPLING);
  71.     cinfo->max_h_samp_factor = MAX(cinfo->max_h_samp_factor,
  72.    compptr->h_samp_factor);
  73.     cinfo->max_v_samp_factor = MAX(cinfo->max_v_samp_factor,
  74.    compptr->v_samp_factor);
  75.   }
  76.   /* We initialize DCT_scaled_size and min_DCT_scaled_size to DCTSIZE.
  77.    * In the full decompressor, this will be overridden by jdmaster.c;
  78.    * but in the transcoder, jdmaster.c is not used, so we must do it here.
  79.    */
  80.   cinfo->min_DCT_scaled_size = DCTSIZE;
  81.   /* Compute dimensions of components */
  82.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  83.        ci++, compptr++) {
  84.     compptr->DCT_scaled_size = DCTSIZE;
  85.     /* Size in DCT blocks */
  86.     compptr->width_in_blocks = (JDIMENSION)
  87.       jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
  88.     (long) (cinfo->max_h_samp_factor * DCTSIZE));
  89.     compptr->height_in_blocks = (JDIMENSION)
  90.       jdiv_round_up((long) cinfo->image_height * (long) compptr->v_samp_factor,
  91.     (long) (cinfo->max_v_samp_factor * DCTSIZE));
  92.     /* downsampled_width and downsampled_height will also be overridden by
  93.      * jdmaster.c if we are doing full decompression.  The transcoder library
  94.      * doesn't use these values, but the calling application might.
  95.      */
  96.     /* Size in samples */
  97.     compptr->downsampled_width = (JDIMENSION)
  98.       jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
  99.     (long) cinfo->max_h_samp_factor);
  100.     compptr->downsampled_height = (JDIMENSION)
  101.       jdiv_round_up((long) cinfo->image_height * (long) compptr->v_samp_factor,
  102.     (long) cinfo->max_v_samp_factor);
  103.     /* Mark component needed, until color conversion says otherwise */
  104.     compptr->component_needed = TRUE;
  105.     /* Mark no quantization table yet saved for component */
  106.     compptr->quant_table = NULL;
  107.   }
  108.   /* Compute number of fully interleaved MCU rows. */
  109.   cinfo->total_iMCU_rows = (JDIMENSION)
  110.     jdiv_round_up((long) cinfo->image_height,
  111.   (long) (cinfo->max_v_samp_factor*DCTSIZE));
  112.   /* Decide whether file contains multiple scans */
  113.   if (cinfo->comps_in_scan < cinfo->num_components || cinfo->progressive_mode)
  114.     cinfo->inputctl->has_multiple_scans = TRUE;
  115.   else
  116.     cinfo->inputctl->has_multiple_scans = FALSE;
  117. }
  118. LOCAL(void)
  119. per_scan_setup (j_decompress_ptr cinfo)
  120. /* Do computations that are needed before processing a JPEG scan */
  121. /* cinfo->comps_in_scan and cinfo->cur_comp_info[] were set from SOS marker */
  122. {
  123.   int ci, mcublks, tmp;
  124.   jpeg_component_info *compptr;
  125.   
  126.   if (cinfo->comps_in_scan == 1) {
  127.     
  128.     /* Noninterleaved (single-component) scan */
  129.     compptr = cinfo->cur_comp_info[0];
  130.     
  131.     /* Overall image size in MCUs */
  132.     cinfo->MCUs_per_row = compptr->width_in_blocks;
  133.     cinfo->MCU_rows_in_scan = compptr->height_in_blocks;
  134.     
  135.     /* For noninterleaved scan, always one block per MCU */
  136.     compptr->MCU_width = 1;
  137.     compptr->MCU_height = 1;
  138.     compptr->MCU_blocks = 1;
  139.     compptr->MCU_sample_width = compptr->DCT_scaled_size;
  140.     compptr->last_col_width = 1;
  141.     /* For noninterleaved scans, it is convenient to define last_row_height
  142.      * as the number of block rows present in the last iMCU row.
  143.      */
  144.     tmp = (int) (compptr->height_in_blocks % compptr->v_samp_factor);
  145.     if (tmp == 0) tmp = compptr->v_samp_factor;
  146.     compptr->last_row_height = tmp;
  147.     
  148.     /* Prepare array describing MCU composition */
  149.     cinfo->blocks_in_MCU = 1;
  150.     cinfo->MCU_membership[0] = 0;
  151.     
  152.   } else {
  153.     
  154.     /* Interleaved (multi-component) scan */
  155.     if (cinfo->comps_in_scan <= 0 || cinfo->comps_in_scan > MAX_COMPS_IN_SCAN)
  156.       ERREXIT2(cinfo, JERR_COMPONENT_COUNT, cinfo->comps_in_scan,
  157.        MAX_COMPS_IN_SCAN);
  158.     
  159.     /* Overall image size in MCUs */
  160.     cinfo->MCUs_per_row = (JDIMENSION)
  161.       jdiv_round_up((long) cinfo->image_width,
  162.     (long) (cinfo->max_h_samp_factor*DCTSIZE));
  163.     cinfo->MCU_rows_in_scan = (JDIMENSION)
  164.       jdiv_round_up((long) cinfo->image_height,
  165.     (long) (cinfo->max_v_samp_factor*DCTSIZE));
  166.     
  167.     cinfo->blocks_in_MCU = 0;
  168.     
  169.     for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  170.       compptr = cinfo->cur_comp_info[ci];
  171.       /* Sampling factors give # of blocks of component in each MCU */
  172.       compptr->MCU_width = compptr->h_samp_factor;
  173.       compptr->MCU_height = compptr->v_samp_factor;
  174.       compptr->MCU_blocks = compptr->MCU_width * compptr->MCU_height;
  175.       compptr->MCU_sample_width = compptr->MCU_width * compptr->DCT_scaled_size;
  176.       /* Figure number of non-dummy blocks in last MCU column & row */
  177.       tmp = (int) (compptr->width_in_blocks % compptr->MCU_width);
  178.       if (tmp == 0) tmp = compptr->MCU_width;
  179.       compptr->last_col_width = tmp;
  180.       tmp = (int) (compptr->height_in_blocks % compptr->MCU_height);
  181.       if (tmp == 0) tmp = compptr->MCU_height;
  182.       compptr->last_row_height = tmp;
  183.       /* Prepare array describing MCU composition */
  184.       mcublks = compptr->MCU_blocks;
  185.       if (cinfo->blocks_in_MCU + mcublks > D_MAX_BLOCKS_IN_MCU)
  186. ERREXIT(cinfo, JERR_BAD_MCU_SIZE);
  187.       while (mcublks-- > 0) {
  188. cinfo->MCU_membership[cinfo->blocks_in_MCU++] = ci;
  189.       }
  190.     }
  191.     
  192.   }
  193. }
  194. /*
  195.  * Save away a copy of the Q-table referenced by each component present
  196.  * in the current scan, unless already saved during a prior scan.
  197.  *
  198.  * In a multiple-scan JPEG file, the encoder could assign different components
  199.  * the same Q-table slot number, but change table definitions between scans
  200.  * so that each component uses a different Q-table.  (The IJG encoder is not
  201.  * currently capable of doing this, but other encoders might.)  Since we want
  202.  * to be able to dequantize all the components at the end of the file, this
  203.  * means that we have to save away the table actually used for each component.
  204.  * We do this by copying the table at the start of the first scan containing
  205.  * the component.
  206.  * The JPEG spec prohibits the encoder from changing the contents of a Q-table
  207.  * slot between scans of a component using that slot.  If the encoder does so
  208.  * anyway, this decoder will simply use the Q-table values that were current
  209.  * at the start of the first scan for the component.
  210.  *
  211.  * The decompressor output side looks only at the saved quant tables,
  212.  * not at the current Q-table slots.
  213.  */
  214. LOCAL(void)
  215. latch_quant_tables (j_decompress_ptr cinfo)
  216. {
  217.   int ci, qtblno;
  218.   jpeg_component_info *compptr;
  219.   JQUANT_TBL * qtbl;
  220.   for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  221.     compptr = cinfo->cur_comp_info[ci];
  222.     /* No work if we already saved Q-table for this component */
  223.     if (compptr->quant_table != NULL)
  224.       continue;
  225.     /* Make sure specified quantization table is present */
  226.     qtblno = compptr->quant_tbl_no;
  227.     if (qtblno < 0 || qtblno >= NUM_QUANT_TBLS ||
  228. cinfo->quant_tbl_ptrs[qtblno] == NULL)
  229.       ERREXIT1(cinfo, JERR_NO_QUANT_TABLE, qtblno);
  230.     /* OK, save away the quantization table */
  231.     qtbl = (JQUANT_TBL *)
  232.       (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  233.   SIZEOF(JQUANT_TBL));
  234.     MEMCOPY(qtbl, cinfo->quant_tbl_ptrs[qtblno], SIZEOF(JQUANT_TBL));
  235.     compptr->quant_table = qtbl;
  236.   }
  237. }
  238. /*
  239.  * Initialize the input modules to read a scan of compressed data.
  240.  * The first call to this is done by jdmaster.c after initializing
  241.  * the entire decompressor (during jpeg_start_decompress).
  242.  * Subsequent calls come from consume_markers, below.
  243.  */
  244. METHODDEF(void)
  245. start_input_pass (j_decompress_ptr cinfo)
  246. {
  247.   per_scan_setup(cinfo);
  248.   latch_quant_tables(cinfo);
  249.   (*cinfo->entropy->start_pass) (cinfo);
  250.   (*cinfo->coef->start_input_pass) (cinfo);
  251.   cinfo->inputctl->consume_input = cinfo->coef->consume_data;
  252. }
  253. /*
  254.  * Finish up after inputting a compressed-data scan.
  255.  * This is called by the coefficient controller after it's read all
  256.  * the expected data of the scan.
  257.  */
  258. METHODDEF(void)
  259. finish_input_pass (j_decompress_ptr cinfo)
  260. {
  261.   cinfo->inputctl->consume_input = consume_markers;
  262. }
  263. /*
  264.  * Read JPEG markers before, between, or after compressed-data scans.
  265.  * Change state as necessary when a new scan is reached.
  266.  * Return value is JPEG_SUSPENDED, JPEG_REACHED_SOS, or JPEG_REACHED_EOI.
  267.  *
  268.  * The consume_input method pointer points either here or to the
  269.  * coefficient controller's consume_data routine, depending on whether
  270.  * we are reading a compressed data segment or inter-segment markers.
  271.  */
  272. METHODDEF(int)
  273. consume_markers (j_decompress_ptr cinfo)
  274. {
  275.   my_inputctl_ptr inputctl = (my_inputctl_ptr) cinfo->inputctl;
  276.   int val;
  277.   if (inputctl->pub.eoi_reached) /* After hitting EOI, read no further */
  278.     return JPEG_REACHED_EOI;
  279.   val = (*cinfo->marker->read_markers) (cinfo);
  280.   switch (val) {
  281.   case JPEG_REACHED_SOS: /* Found SOS */
  282.     if (inputctl->inheaders) { /* 1st SOS */
  283.       initial_setup(cinfo);
  284.       inputctl->inheaders = FALSE;
  285.       /* Note: start_input_pass must be called by jdmaster.c
  286.        * before any more input can be consumed.  jdapi.c is
  287.        * responsible for enforcing this sequencing.
  288.        */
  289.     } else { /* 2nd or later SOS marker */
  290.       if (! inputctl->pub.has_multiple_scans)
  291. ERREXIT(cinfo, JERR_EOI_EXPECTED); /* Oops, I wasn't expecting this! */
  292.       start_input_pass(cinfo);
  293.     }
  294.     break;
  295.   case JPEG_REACHED_EOI: /* Found EOI */
  296.     inputctl->pub.eoi_reached = TRUE;
  297.     if (inputctl->inheaders) { /* Tables-only datastream, apparently */
  298.       if (cinfo->marker->saw_SOF)
  299. ERREXIT(cinfo, JERR_SOF_NO_SOS);
  300.     } else {
  301.       /* Prevent infinite loop in coef ctlr's decompress_data routine
  302.        * if user set output_scan_number larger than number of scans.
  303.        */
  304.       if (cinfo->output_scan_number > cinfo->input_scan_number)
  305. cinfo->output_scan_number = cinfo->input_scan_number;
  306.     }
  307.     break;
  308.   case JPEG_SUSPENDED:
  309.     break;
  310.   }
  311.   return val;
  312. }
  313. /*
  314.  * Reset state to begin a fresh datastream.
  315.  */
  316. METHODDEF(void)
  317. reset_input_controller (j_decompress_ptr cinfo)
  318. {
  319.   my_inputctl_ptr inputctl = (my_inputctl_ptr) cinfo->inputctl;
  320.   inputctl->pub.consume_input = consume_markers;
  321.   inputctl->pub.has_multiple_scans = FALSE; /* "unknown" would be better */
  322.   inputctl->pub.eoi_reached = FALSE;
  323.   inputctl->inheaders = TRUE;
  324.   /* Reset other modules */
  325.   (*cinfo->err->reset_error_mgr) ((j_common_ptr) cinfo);
  326.   (*cinfo->marker->reset_marker_reader) (cinfo);
  327.   /* Reset progression state -- would be cleaner if entropy decoder did this */
  328.   cinfo->coef_bits = NULL;
  329. }
  330. /*
  331.  * Initialize the input controller module.
  332.  * This is called only once, when the decompression object is created.
  333.  */
  334. GLOBAL(void)
  335. jinit_input_controller (j_decompress_ptr cinfo)
  336. {
  337.   my_inputctl_ptr inputctl;
  338.   /* Create subobject in permanent pool */
  339.   inputctl = (my_inputctl_ptr)
  340.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
  341. SIZEOF(my_input_controller));
  342.   cinfo->inputctl = (struct jpeg_input_controller *) inputctl;
  343.   /* Initialize method pointers */
  344.   inputctl->pub.consume_input = consume_markers;
  345.   inputctl->pub.reset_input_controller = reset_input_controller;
  346.   inputctl->pub.start_input_pass = start_input_pass;
  347.   inputctl->pub.finish_input_pass = finish_input_pass;
  348.   /* Initialize state: can't use reset_input_controller since we don't
  349.    * want to try to reset other modules yet.
  350.    */
  351.   inputctl->pub.has_multiple_scans = FALSE; /* "unknown" would be better */
  352.   inputctl->pub.eoi_reached = FALSE;
  353.   inputctl->inheaders = TRUE;
  354. }