JDAPIMIN.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.  * jdapimin.c
  22.  *
  23.  * Copyright (C) 1994-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 application interface code for the decompression half
  28.  * of the JPEG library.  These are the "minimum" API routines that may be
  29.  * needed in either the normal full-decompression case or the
  30.  * transcoding-only case.
  31.  *
  32.  * Most of the routines intended to be called directly by an application
  33.  * are in this file or in jdapistd.c.  But also see jcomapi.c for routines
  34.  * shared by compression and decompression, and jdtrans.c for the transcoding
  35.  * case.
  36.  */
  37. #define JPEG_INTERNALS
  38. #include "jinclude.h"
  39. #include "jpeglib.h"
  40. /*
  41.  * Initialization of a JPEG decompression object.
  42.  * The error manager must already be set up (in case memory manager fails).
  43.  */
  44. GLOBAL(void)
  45. jpeg_CreateDecompress (j_decompress_ptr cinfo, int version, size_t structsize)
  46. {
  47.   int i;
  48.   /* Guard against version mismatches between library and caller. */
  49.   cinfo->mem = NULL; /* so jpeg_destroy knows mem mgr not called */
  50.   if (version != JPEG_LIB_VERSION)
  51.     ERREXIT2(cinfo, JERR_BAD_LIB_VERSION, JPEG_LIB_VERSION, version);
  52.   if (structsize != SIZEOF(struct jpeg_decompress_struct))
  53.     ERREXIT2(cinfo, JERR_BAD_STRUCT_SIZE, 
  54.      (int) SIZEOF(struct jpeg_decompress_struct), (int) structsize);
  55.   /* For debugging purposes, zero the whole master structure.
  56.    * But error manager pointer is already there, so save and restore it.
  57.    */
  58.   {
  59.     struct jpeg_error_mgr * err = cinfo->err;
  60.     MEMZERO(cinfo, SIZEOF(struct jpeg_decompress_struct));
  61.     cinfo->err = err;
  62.   }
  63.   cinfo->is_decompressor = TRUE;
  64.   /* Initialize a memory manager instance for this object */
  65.   jinit_memory_mgr((j_common_ptr) cinfo);
  66.   /* Zero out pointers to permanent structures. */
  67.   cinfo->progress = NULL;
  68.   cinfo->src = NULL;
  69.   for (i = 0; i < NUM_QUANT_TBLS; i++)
  70.     cinfo->quant_tbl_ptrs[i] = NULL;
  71.   for (i = 0; i < NUM_HUFF_TBLS; i++) {
  72.     cinfo->dc_huff_tbl_ptrs[i] = NULL;
  73.     cinfo->ac_huff_tbl_ptrs[i] = NULL;
  74.   }
  75.   /* Initialize marker processor so application can override methods
  76.    * for COM, APPn markers before calling jpeg_read_header.
  77.    */
  78.   jinit_marker_reader(cinfo);
  79.   /* And initialize the overall input controller. */
  80.   jinit_input_controller(cinfo);
  81.   /* OK, I'm ready */
  82.   cinfo->global_state = DSTATE_START;
  83. }
  84. /*
  85.  * Destruction of a JPEG decompression object
  86.  */
  87. GLOBAL(void)
  88. jpeg_destroy_decompress (j_decompress_ptr cinfo)
  89. {
  90.   jpeg_destroy((j_common_ptr) cinfo); /* use common routine */
  91. }
  92. /*
  93.  * Abort processing of a JPEG decompression operation,
  94.  * but don't destroy the object itself.
  95.  */
  96. GLOBAL(void)
  97. jpeg_abort_decompress (j_decompress_ptr cinfo)
  98. {
  99.   jpeg_abort((j_common_ptr) cinfo); /* use common routine */
  100. }
  101. /*
  102.  * Install a special processing method for COM or APPn markers.
  103.  */
  104. GLOBAL(void)
  105. jpeg_set_marker_processor (j_decompress_ptr cinfo, int marker_code,
  106.    jpeg_marker_parser_method routine)
  107. {
  108.   if (marker_code == JPEG_COM)
  109.     cinfo->marker->process_COM = routine;
  110.   else if (marker_code >= JPEG_APP0 && marker_code <= JPEG_APP0+15)
  111.     cinfo->marker->process_APPn[marker_code-JPEG_APP0] = routine;
  112.   else
  113.     ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, marker_code);
  114. }
  115. /*
  116.  * Set default decompression parameters.
  117.  */
  118. LOCAL(void)
  119. default_decompress_parms (j_decompress_ptr cinfo)
  120. {
  121.   /* Guess the input colorspace, and set output colorspace accordingly. */
  122.   /* (Wish JPEG committee had provided a real way to specify this...) */
  123.   /* Note application may override our guesses. */
  124.   switch (cinfo->num_components) {
  125.   case 1:
  126.     cinfo->jpeg_color_space = JCS_GRAYSCALE;
  127.     cinfo->out_color_space = JCS_GRAYSCALE;
  128.     break;
  129.     
  130.   case 3:
  131.     if (cinfo->saw_JFIF_marker) {
  132.       cinfo->jpeg_color_space = JCS_YCbCr; /* JFIF implies YCbCr */
  133.     } else if (cinfo->saw_Adobe_marker) {
  134.       switch (cinfo->Adobe_transform) {
  135.       case 0:
  136. cinfo->jpeg_color_space = JCS_RGB;
  137. break;
  138.       case 1:
  139. cinfo->jpeg_color_space = JCS_YCbCr;
  140. break;
  141.       default:
  142. WARNMS1(cinfo, JWRN_ADOBE_XFORM, cinfo->Adobe_transform);
  143. cinfo->jpeg_color_space = JCS_YCbCr; /* assume it's YCbCr */
  144. break;
  145.       }
  146.     } else {
  147.       /* Saw no special markers, try to guess from the component IDs */
  148.       int cid0 = cinfo->comp_info[0].component_id;
  149.       int cid1 = cinfo->comp_info[1].component_id;
  150.       int cid2 = cinfo->comp_info[2].component_id;
  151.       if (cid0 == 1 && cid1 == 2 && cid2 == 3)
  152. cinfo->jpeg_color_space = JCS_YCbCr; /* assume JFIF w/out marker */
  153.       else if (cid0 == 82 && cid1 == 71 && cid2 == 66)
  154. cinfo->jpeg_color_space = JCS_RGB; /* ASCII 'R', 'G', 'B' */
  155.       else {
  156. TRACEMS3(cinfo, 1, JTRC_UNKNOWN_IDS, cid0, cid1, cid2);
  157. cinfo->jpeg_color_space = JCS_YCbCr; /* assume it's YCbCr */
  158.       }
  159.     }
  160.     /* Always guess RGB is proper output colorspace. */
  161.     cinfo->out_color_space = JCS_RGB;
  162.     break;
  163.     
  164.   case 4:
  165.     if (cinfo->saw_Adobe_marker) {
  166.       switch (cinfo->Adobe_transform) {
  167.       case 0:
  168. cinfo->jpeg_color_space = JCS_CMYK;
  169. break;
  170.       case 2:
  171. cinfo->jpeg_color_space = JCS_YCCK;
  172. break;
  173.       default:
  174. WARNMS1(cinfo, JWRN_ADOBE_XFORM, cinfo->Adobe_transform);
  175. cinfo->jpeg_color_space = JCS_YCCK; /* assume it's YCCK */
  176. break;
  177.       }
  178.     } else {
  179.       /* No special markers, assume straight CMYK. */
  180.       cinfo->jpeg_color_space = JCS_CMYK;
  181.     }
  182.     cinfo->out_color_space = JCS_CMYK;
  183.     break;
  184.     
  185.   default:
  186.     cinfo->jpeg_color_space = JCS_UNKNOWN;
  187.     cinfo->out_color_space = JCS_UNKNOWN;
  188.     break;
  189.   }
  190.   /* Set defaults for other decompression parameters. */
  191.   cinfo->scale_num = 1; /* 1:1 scaling */
  192.   cinfo->scale_denom = 1;
  193.   cinfo->output_gamma = 1.0;
  194.   cinfo->buffered_image = FALSE;
  195.   cinfo->raw_data_out = FALSE;
  196.   cinfo->dct_method = JDCT_DEFAULT;
  197.   cinfo->do_fancy_upsampling = TRUE;
  198.   cinfo->do_block_smoothing = TRUE;
  199.   cinfo->quantize_colors = FALSE;
  200.   /* We set these in case application only sets quantize_colors. */
  201.   cinfo->dither_mode = JDITHER_FS;
  202. #ifdef QUANT_2PASS_SUPPORTED
  203.   cinfo->two_pass_quantize = TRUE;
  204. #else
  205.   cinfo->two_pass_quantize = FALSE;
  206. #endif
  207.   cinfo->desired_number_of_colors = 256;
  208.   cinfo->colormap = NULL;
  209.   /* Initialize for no mode change in buffered-image mode. */
  210.   cinfo->enable_1pass_quant = FALSE;
  211.   cinfo->enable_external_quant = FALSE;
  212.   cinfo->enable_2pass_quant = FALSE;
  213. }
  214. /*
  215.  * Decompression startup: read start of JPEG datastream to see what's there.
  216.  * Need only initialize JPEG object and supply a data source before calling.
  217.  *
  218.  * This routine will read as far as the first SOS marker (ie, actual start of
  219.  * compressed data), and will save all tables and parameters in the JPEG
  220.  * object.  It will also initialize the decompression parameters to default
  221.  * values, and finally return JPEG_HEADER_OK.  On return, the application may
  222.  * adjust the decompression parameters and then call jpeg_start_decompress.
  223.  * (Or, if the application only wanted to determine the image parameters,
  224.  * the data need not be decompressed.  In that case, call jpeg_abort or
  225.  * jpeg_destroy to release any temporary space.)
  226.  * If an abbreviated (tables only) datastream is presented, the routine will
  227.  * return JPEG_HEADER_TABLES_ONLY upon reaching EOI.  The application may then
  228.  * re-use the JPEG object to read the abbreviated image datastream(s).
  229.  * It is unnecessary (but OK) to call jpeg_abort in this case.
  230.  * The JPEG_SUSPENDED return code only occurs if the data source module
  231.  * requests suspension of the decompressor.  In this case the application
  232.  * should load more source data and then re-call jpeg_read_header to resume
  233.  * processing.
  234.  * If a non-suspending data source is used and require_image is TRUE, then the
  235.  * return code need not be inspected since only JPEG_HEADER_OK is possible.
  236.  *
  237.  * This routine is now just a front end to jpeg_consume_input, with some
  238.  * extra error checking.
  239.  */
  240. GLOBAL(int)
  241. jpeg_read_header (j_decompress_ptr cinfo, boolean require_image)
  242. {
  243.   int retcode;
  244.   if (cinfo->global_state != DSTATE_START &&
  245.       cinfo->global_state != DSTATE_INHEADER)
  246.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  247.   retcode = jpeg_consume_input(cinfo);
  248.   switch (retcode) {
  249.   case JPEG_REACHED_SOS:
  250.     retcode = JPEG_HEADER_OK;
  251.     break;
  252.   case JPEG_REACHED_EOI:
  253.     if (require_image) /* Complain if application wanted an image */
  254.       ERREXIT(cinfo, JERR_NO_IMAGE);
  255.     /* Reset to start state; it would be safer to require the application to
  256.      * call jpeg_abort, but we can't change it now for compatibility reasons.
  257.      * A side effect is to free any temporary memory (there shouldn't be any).
  258.      */
  259.     jpeg_abort((j_common_ptr) cinfo); /* sets state = DSTATE_START */
  260.     retcode = JPEG_HEADER_TABLES_ONLY;
  261.     break;
  262.   case JPEG_SUSPENDED:
  263.     /* no work */
  264.     break;
  265.   }
  266.   return retcode;
  267. }
  268. /*
  269.  * Consume data in advance of what the decompressor requires.
  270.  * This can be called at any time once the decompressor object has
  271.  * been created and a data source has been set up.
  272.  *
  273.  * This routine is essentially a state machine that handles a couple
  274.  * of critical state-transition actions, namely initial setup and
  275.  * transition from header scanning to ready-for-start_decompress.
  276.  * All the actual input is done via the input controller's consume_input
  277.  * method.
  278.  */
  279. GLOBAL(int)
  280. jpeg_consume_input (j_decompress_ptr cinfo)
  281. {
  282.   int retcode = JPEG_SUSPENDED;
  283.   /* NB: every possible DSTATE value should be listed in this switch */
  284.   switch (cinfo->global_state) {
  285.   case DSTATE_START:
  286.     /* Start-of-datastream actions: reset appropriate modules */
  287.     (*cinfo->inputctl->reset_input_controller) (cinfo);
  288.     /* Initialize application's data source module */
  289.     (*cinfo->src->init_source) (cinfo);
  290.     cinfo->global_state = DSTATE_INHEADER;
  291.     /*FALLTHROUGH*/
  292.   case DSTATE_INHEADER:
  293.     retcode = (*cinfo->inputctl->consume_input) (cinfo);
  294.     if (retcode == JPEG_REACHED_SOS) { /* Found SOS, prepare to decompress */
  295.       /* Set up default parameters based on header data */
  296.       default_decompress_parms(cinfo);
  297.       /* Set global state: ready for start_decompress */
  298.       cinfo->global_state = DSTATE_READY;
  299.     }
  300.     break;
  301.   case DSTATE_READY:
  302.     /* Can't advance past first SOS until start_decompress is called */
  303.     retcode = JPEG_REACHED_SOS;
  304.     break;
  305.   case DSTATE_PRELOAD:
  306.   case DSTATE_PRESCAN:
  307.   case DSTATE_SCANNING:
  308.   case DSTATE_RAW_OK:
  309.   case DSTATE_BUFIMAGE:
  310.   case DSTATE_BUFPOST:
  311.   case DSTATE_STOPPING:
  312.     retcode = (*cinfo->inputctl->consume_input) (cinfo);
  313.     break;
  314.   default:
  315.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  316.   }
  317.   return retcode;
  318. }
  319. /*
  320.  * Have we finished reading the input file?
  321.  */
  322. GLOBAL(boolean)
  323. jpeg_input_complete (j_decompress_ptr cinfo)
  324. {
  325.   /* Check for valid jpeg object */
  326.   if (cinfo->global_state < DSTATE_START ||
  327.       cinfo->global_state > DSTATE_STOPPING)
  328.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  329.   return cinfo->inputctl->eoi_reached;
  330. }
  331. /*
  332.  * Is there more than one scan?
  333.  */
  334. GLOBAL(boolean)
  335. jpeg_has_multiple_scans (j_decompress_ptr cinfo)
  336. {
  337.   /* Only valid after jpeg_read_header completes */
  338.   if (cinfo->global_state < DSTATE_READY ||
  339.       cinfo->global_state > DSTATE_STOPPING)
  340.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  341.   return cinfo->inputctl->has_multiple_scans;
  342. }
  343. /*
  344.  * Finish JPEG decompression.
  345.  *
  346.  * This will normally just verify the file trailer and release temp storage.
  347.  *
  348.  * Returns FALSE if suspended.  The return value need be inspected only if
  349.  * a suspending data source is used.
  350.  */
  351. GLOBAL(boolean)
  352. jpeg_finish_decompress (j_decompress_ptr cinfo)
  353. {
  354.   if ((cinfo->global_state == DSTATE_SCANNING ||
  355.        cinfo->global_state == DSTATE_RAW_OK) && ! cinfo->buffered_image) {
  356.     /* Terminate final pass of non-buffered mode */
  357.     if (cinfo->output_scanline < cinfo->output_height)
  358.       ERREXIT(cinfo, JERR_TOO_LITTLE_DATA);
  359.     (*cinfo->master->finish_output_pass) (cinfo);
  360.     cinfo->global_state = DSTATE_STOPPING;
  361.   } else if (cinfo->global_state == DSTATE_BUFIMAGE) {
  362.     /* Finishing after a buffered-image operation */
  363.     cinfo->global_state = DSTATE_STOPPING;
  364.   } else if (cinfo->global_state != DSTATE_STOPPING) {
  365.     /* STOPPING = repeat call after a suspension, anything else is error */
  366.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  367.   }
  368.   /* Read until EOI */
  369.   while (! cinfo->inputctl->eoi_reached) {
  370.     if ((*cinfo->inputctl->consume_input) (cinfo) == JPEG_SUSPENDED)
  371.       return FALSE; /* Suspend, come back later */
  372.   }
  373.   /* Do final cleanup */
  374.   (*cinfo->src->term_source) (cinfo);
  375.   /* We can use jpeg_abort to release memory and reset global_state */
  376.   jpeg_abort((j_common_ptr) cinfo);
  377.   return TRUE;
  378. }