JCAPIMIN.c
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:8k
源码类别:

网络截获/分析

开发平台:

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.  * jcapimin.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 compression half
  28.  * of the JPEG library.  These are the "minimum" API routines that may be
  29.  * needed in either the normal full-compression case or the transcoding-only
  30.  * case.
  31.  *
  32.  * Most of the routines intended to be called directly by an application
  33.  * are in this file or in jcapistd.c.  But also see jcparam.c for
  34.  * parameter-setup helper routines, jcomapi.c for routines shared by
  35.  * compression and decompression, and jctrans.c for the transcoding case.
  36.  */
  37. #define JPEG_INTERNALS
  38. #include "jinclude.h"
  39. #include "jpeglib.h"
  40. /*
  41.  * Initialization of a JPEG compression object.
  42.  * The error manager must already be set up (in case memory manager fails).
  43.  */
  44. GLOBAL(void)
  45. jpeg_CreateCompress (j_compress_ptr cinfo, int version, size_t structsize)
  46. {
  47.   
  48.    int i;
  49.   cinfo->i_stream = 0;
  50.   cinfo->l_size = 0;
  51.   cinfo->l_point = 0;
  52.   cinfo->buffer = NULL;
  53.   /* Guard against version mismatches between library and caller. */
  54.   cinfo->mem = NULL; /* so jpeg_destroy knows mem mgr not called */
  55.   if (version != JPEG_LIB_VERSION)
  56.     ERREXIT2(cinfo, JERR_BAD_LIB_VERSION, JPEG_LIB_VERSION, version);
  57.   if (structsize != SIZEOF(struct jpeg_compress_struct))
  58.     ERREXIT2(cinfo, JERR_BAD_STRUCT_SIZE, 
  59.      (int) SIZEOF(struct jpeg_compress_struct), (int) structsize);
  60.   /* For debugging purposes, zero the whole master structure.
  61.    * But error manager pointer is already there, so save and restore it.
  62.    */
  63.   {
  64.     struct jpeg_error_mgr * err = cinfo->err;
  65.     MEMZERO(cinfo, SIZEOF(struct jpeg_compress_struct));
  66.     cinfo->err = err;
  67.   }
  68.   cinfo->is_decompressor = FALSE;
  69.   /* Initialize a memory manager instance for this object */
  70.   jinit_memory_mgr((j_common_ptr) cinfo);
  71.   /* Zero out pointers to permanent structures. */
  72.   cinfo->progress = NULL;
  73.   cinfo->dest = NULL;
  74.   cinfo->comp_info = NULL;
  75.   for (i = 0; i < NUM_QUANT_TBLS; i++)
  76.     cinfo->quant_tbl_ptrs[i] = NULL;
  77.   for (i = 0; i < NUM_HUFF_TBLS; i++) {
  78.     cinfo->dc_huff_tbl_ptrs[i] = NULL;
  79.     cinfo->ac_huff_tbl_ptrs[i] = NULL;
  80.   }
  81.   cinfo->input_gamma = 1.0; /* in case application forgets */
  82.   /* OK, I'm ready */
  83.   cinfo->global_state = CSTATE_START;
  84. }
  85. /*
  86.  * Destruction of a JPEG compression object
  87.  */
  88. GLOBAL(void)
  89. jpeg_destroy_compress (j_compress_ptr cinfo)
  90. {
  91.   jpeg_destroy((j_common_ptr) cinfo); /* use common routine */
  92. }
  93. /*
  94.  * Abort processing of a JPEG compression operation,
  95.  * but don't destroy the object itself.
  96.  */
  97. GLOBAL(void)
  98. jpeg_abort_compress (j_compress_ptr cinfo)
  99. {
  100.   jpeg_abort((j_common_ptr) cinfo); /* use common routine */
  101. }
  102. /*
  103.  * Forcibly suppress or un-suppress all quantization and Huffman tables.
  104.  * Marks all currently defined tables as already written (if suppress)
  105.  * or not written (if !suppress).  This will control whether they get emitted
  106.  * by a subsequent jpeg_start_compress call.
  107.  *
  108.  * This routine is exported for use by applications that want to produce
  109.  * abbreviated JPEG datastreams.  It logically belongs in jcparam.c, but
  110.  * since it is called by jpeg_start_compress, we put it here --- otherwise
  111.  * jcparam.o would be linked whether the application used it or not.
  112.  */
  113. GLOBAL(void)
  114. jpeg_suppress_tables (j_compress_ptr cinfo, unsigned int suppress)
  115. {
  116.   int i;
  117.   JQUANT_TBL * qtbl;
  118.   JHUFF_TBL * htbl;
  119.   for (i = 0; i < NUM_QUANT_TBLS; i++) {
  120.     if ((qtbl = cinfo->quant_tbl_ptrs[i]) != NULL)
  121.       qtbl->sent_table = suppress;
  122.   }
  123.   for (i = 0; i < NUM_HUFF_TBLS; i++) {
  124.     if ((htbl = cinfo->dc_huff_tbl_ptrs[i]) != NULL)
  125.       htbl->sent_table = suppress;
  126.     if ((htbl = cinfo->ac_huff_tbl_ptrs[i]) != NULL)
  127.       htbl->sent_table = suppress;
  128.   }
  129. }
  130. /*
  131.  * Finish JPEG compression.
  132.  *
  133.  * If a multipass operating mode was selected, this may do a great deal of
  134.  * work including most of the actual output.
  135.  */
  136. GLOBAL(void)
  137. jpeg_finish_compress (j_compress_ptr cinfo)
  138. {
  139.   JDIMENSION iMCU_row;
  140.   if (cinfo->global_state == CSTATE_SCANNING ||
  141.       cinfo->global_state == CSTATE_RAW_OK) {
  142.     /* Terminate first pass */
  143.     if (cinfo->next_scanline < cinfo->image_height)
  144.       ERREXIT(cinfo, JERR_TOO_LITTLE_DATA);
  145.     (*cinfo->master->finish_pass) (cinfo);
  146.   } else if (cinfo->global_state != CSTATE_WRCOEFS)
  147.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  148.   /* Perform any remaining passes */
  149.   while (! cinfo->master->is_last_pass) {
  150.     (*cinfo->master->prepare_for_pass) (cinfo);
  151.     for (iMCU_row = 0; iMCU_row < cinfo->total_iMCU_rows; iMCU_row++) {
  152.       if (cinfo->progress != NULL) {
  153. cinfo->progress->pass_counter = (long) iMCU_row;
  154. cinfo->progress->pass_limit = (long) cinfo->total_iMCU_rows;
  155. (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
  156.       }
  157.       /* We bypass the main controller and invoke coef controller directly;
  158.        * all work is being done from the coefficient buffer.
  159.        */
  160.       if (! (*cinfo->coef->compress_data) (cinfo, (JSAMPIMAGE) NULL))
  161. ERREXIT(cinfo, JERR_CANT_SUSPEND);
  162.     }
  163.     (*cinfo->master->finish_pass) (cinfo);
  164.   }
  165.   /* Write EOI, do final cleanup */
  166.   (*cinfo->marker->write_file_trailer) (cinfo);
  167.   (*cinfo->dest->term_destination) (cinfo);
  168.   /* We can use jpeg_abort to release memory and reset global_state */
  169.   jpeg_abort((j_common_ptr) cinfo);
  170. }
  171. /*
  172.  * Write a special marker.
  173.  * This is only recommended for writing COM or APPn markers.
  174.  * Must be called after jpeg_start_compress() and before
  175.  * first call to jpeg_write_scanlines() or jpeg_write_raw_data().
  176.  */
  177. GLOBAL(void)
  178. jpeg_write_marker (j_compress_ptr cinfo, int marker,
  179.    const JOCTET *dataptr, unsigned int datalen)
  180. {
  181.   if (cinfo->next_scanline != 0 ||
  182.       (cinfo->global_state != CSTATE_SCANNING &&
  183.        cinfo->global_state != CSTATE_RAW_OK &&
  184.        cinfo->global_state != CSTATE_WRCOEFS))
  185.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  186.   (*cinfo->marker->write_any_marker) (cinfo, marker, dataptr, datalen);
  187. }
  188. /*
  189.  * Alternate compression function: just write an abbreviated table file.
  190.  * Before calling this, all parameters and a data destination must be set up.
  191.  *
  192.  * To produce a pair of files containing abbreviated tables and abbreviated
  193.  * image data, one would proceed as follows:
  194.  *
  195.  * initialize JPEG object
  196.  * set JPEG parameters
  197.  * set destination to table file
  198.  * jpeg_write_tables(cinfo);
  199.  * set destination to image file
  200.  * jpeg_start_compress(cinfo, FALSE);
  201.  * write data...
  202.  * jpeg_finish_compress(cinfo);
  203.  *
  204.  * jpeg_write_tables has the side effect of marking all tables written
  205.  * (same as jpeg_suppress_tables(..., TRUE)).  Thus a subsequent start_compress
  206.  * will not re-emit the tables unless it is passed write_all_tables=TRUE.
  207.  */
  208. GLOBAL(void)
  209. jpeg_write_tables (j_compress_ptr cinfo)
  210. {
  211.   if (cinfo->global_state != CSTATE_START)
  212.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  213.   /* (Re)initialize error mgr and destination modules */
  214.   (*cinfo->err->reset_error_mgr) ((j_common_ptr) cinfo);
  215.   (*cinfo->dest->init_destination) (cinfo);
  216.   /* Initialize the marker writer ... bit of a crock to do it here. */
  217.   jinit_marker_writer(cinfo);
  218.   /* Write them tables! */
  219.   (*cinfo->marker->write_tables_only) (cinfo);
  220.   /* And clean up. */
  221.   (*cinfo->dest->term_destination) (cinfo);
  222.   /* We can use jpeg_abort to release memory. */
  223.   jpeg_abort((j_common_ptr) cinfo);
  224. }