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

网络截获/分析

开发平台:

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.  * jcapistd.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 "standard" API routines that are
  29.  * used in the normal full-compression case.  They are not used by a
  30.  * transcoding-only application.  Note that if an application links in
  31.  * jpeg_start_compress, it will end up linking in the entire compressor.
  32.  * We thus must separate this file from jcapimin.c to avoid linking the
  33.  * whole compression library into a transcoder.
  34.  */
  35. #define JPEG_INTERNALS
  36. #include "jinclude.h"
  37. #include "jpeglib.h"
  38. /*
  39.  * Compression initialization.
  40.  * Before calling this, all parameters and a data destination must be set up.
  41.  *
  42.  * We require a write_all_tables parameter as a failsafe check when writing
  43.  * multiple datastreams from the same compression object.  Since prior runs
  44.  * will have left all the tables marked sent_table=TRUE, a subsequent run
  45.  * would emit an abbreviated stream (no tables) by default.  This may be what
  46.  * is wanted, but for safety's sake it should not be the default behavior:
  47.  * programmers should have to make a deliberate choice to emit abbreviated
  48.  * images.  Therefore the documentation and examples should encourage people
  49.  * to pass write_all_tables=TRUE; then it will take active thought to do the
  50.  * wrong thing.
  51.  */
  52. GLOBAL(void)
  53. jpeg_start_compress (j_compress_ptr cinfo, unsigned int write_all_tables)
  54. {
  55.   if (cinfo->global_state != CSTATE_START)
  56.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  57.   if (write_all_tables)
  58.     jpeg_suppress_tables(cinfo, FALSE); /* mark all tables to be written */
  59.   /* (Re)initialize error mgr and destination modules */
  60.   (*cinfo->err->reset_error_mgr) ((j_common_ptr) cinfo);
  61.   (*cinfo->dest->init_destination) (cinfo);
  62.   /* Perform master selection of active modules */
  63.   jinit_compress_master(cinfo);
  64.   /* Set up for the first pass */
  65.   (*cinfo->master->prepare_for_pass) (cinfo);
  66.   /* Ready for application to drive first pass through jpeg_write_scanlines
  67.    * or jpeg_write_raw_data.
  68.    */
  69.   cinfo->next_scanline = 0;
  70.   cinfo->global_state = (cinfo->raw_data_in ? CSTATE_RAW_OK : CSTATE_SCANNING);
  71. }
  72. /*
  73.  * Write some scanlines of data to the JPEG compressor.
  74.  *
  75.  * The return value will be the number of lines actually written.
  76.  * This should be less than the supplied num_lines only in case that
  77.  * the data destination module has requested suspension of the compressor,
  78.  * or if more than image_height scanlines are passed in.
  79.  *
  80.  * Note: we warn about excess calls to jpeg_write_scanlines() since
  81.  * this likely signals an application programmer error.  However,
  82.  * excess scanlines passed in the last valid call are *silently* ignored,
  83.  * so that the application need not adjust num_lines for end-of-image
  84.  * when using a multiple-scanline buffer.
  85.  */
  86. GLOBAL(JDIMENSION)
  87. jpeg_write_scanlines (j_compress_ptr cinfo, JSAMPARRAY scanlines,
  88.       JDIMENSION num_lines)
  89. {
  90.   JDIMENSION row_ctr, rows_left;
  91.   if (cinfo->global_state != CSTATE_SCANNING)
  92.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  93.   if (cinfo->next_scanline >= cinfo->image_height)
  94.     WARNMS(cinfo, JWRN_TOO_MUCH_DATA);
  95.   /* Call progress monitor hook if present */
  96.   if (cinfo->progress != NULL) {
  97.     cinfo->progress->pass_counter = (long) cinfo->next_scanline;
  98.     cinfo->progress->pass_limit = (long) cinfo->image_height;
  99.     (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
  100.   }
  101.   /* Give master control module another chance if this is first call to
  102.    * jpeg_write_scanlines.  This lets output of the frame/scan headers be
  103.    * delayed so that application can write COM, etc, markers between
  104.    * jpeg_start_compress and jpeg_write_scanlines.
  105.    */
  106.   if (cinfo->master->call_pass_startup)
  107.     (*cinfo->master->pass_startup) (cinfo);
  108.   /* Ignore any extra scanlines at bottom of image. */
  109.   rows_left = cinfo->image_height - cinfo->next_scanline;
  110.   if (num_lines > rows_left)
  111.     num_lines = rows_left;
  112.   row_ctr = 0;
  113.   (*cinfo->main->process_data) (cinfo, scanlines, &row_ctr, num_lines);
  114.   cinfo->next_scanline += row_ctr;
  115.   return row_ctr;
  116. }
  117. /*
  118.  * Alternate entry point to write raw data.
  119.  * Processes exactly one iMCU row per call, unless suspended.
  120.  */
  121. GLOBAL(JDIMENSION)
  122. jpeg_write_raw_data (j_compress_ptr cinfo, JSAMPIMAGE data,
  123.      JDIMENSION num_lines)
  124. {
  125.   JDIMENSION lines_per_iMCU_row;
  126.   if (cinfo->global_state != CSTATE_RAW_OK)
  127.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  128.   if (cinfo->next_scanline >= cinfo->image_height) {
  129.     WARNMS(cinfo, JWRN_TOO_MUCH_DATA);
  130.     return 0;
  131.   }
  132.   /* Call progress monitor hook if present */
  133.   if (cinfo->progress != NULL) {
  134.     cinfo->progress->pass_counter = (long) cinfo->next_scanline;
  135.     cinfo->progress->pass_limit = (long) cinfo->image_height;
  136.     (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
  137.   }
  138.   /* Give master control module another chance if this is first call to
  139.    * jpeg_write_raw_data.  This lets output of the frame/scan headers be
  140.    * delayed so that application can write COM, etc, markers between
  141.    * jpeg_start_compress and jpeg_write_raw_data.
  142.    */
  143.   if (cinfo->master->call_pass_startup)
  144.     (*cinfo->master->pass_startup) (cinfo);
  145.   /* Verify that at least one iMCU row has been passed. */
  146.   lines_per_iMCU_row = cinfo->max_v_samp_factor * DCTSIZE;
  147.   if (num_lines < lines_per_iMCU_row)
  148.     ERREXIT(cinfo, JERR_BUFFER_SIZE);
  149.   /* Directly compress the row. */
  150.   if (! (*cinfo->coef->compress_data) (cinfo, data)) {
  151.     /* If compressor did not consume the whole row, suspend processing. */
  152.     return 0;
  153.   }
  154.   /* OK, we processed one iMCU row. */
  155.   cinfo->next_scanline += lines_per_iMCU_row;
  156.   return lines_per_iMCU_row;
  157. }