home *** CD-ROM | disk | FTP | other *** search
/ Windows Graphics Programming / Feng_Yuan_Win32_GDI_DirectX.iso / Samples / include / jlib / jcapistd.cpp < prev    next >
C/C++ Source or Header  |  2000-05-16  |  7KB  |  171 lines

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