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