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

Windows Mobile

开发平台:

Visual C++

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