home *** CD-ROM | disk | FTP | other *** search
/ Windows Graphics Programming / Feng_Yuan_Win32_GDI_DirectX.iso / Samples / include / jlib / jcapimin.cpp next >
C/C++ Source or Header  |  2000-05-16  |  10KB  |  292 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.  * jcapimin.c
  12.  *
  13.  * Copyright (C) 1994-1998, 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 "minimum" API routines that may be
  19.  * needed in either the normal full-compression case or the transcoding-only
  20.  * case.
  21.  *
  22.  * Most of the routines intended to be called directly by an application
  23.  * are in this file or in jcapistd.c.  But also see jcparam.c for
  24.  * parameter-setup helper routines, jcomapi.c for routines shared by
  25.  * compression and decompression, and jctrans.c for the transcoding case.
  26.  */
  27.  
  28. #define JPEG_INTERNALS
  29. #include "jinclude.h"
  30. #include "jpeglib.h"
  31.  
  32.  
  33. /*
  34.  * Initialization of a JPEG compression object.
  35.  * The error manager must already be set up (in case memory manager fails).
  36.  */
  37.  
  38. GLOBAL(void)
  39. jpeg_CreateCompress (j_compress_ptr cinfo, int version, size_t structsize)
  40. {
  41.   int i;
  42.  
  43.   /* Guard against version mismatches between library and caller. */
  44.   cinfo->mem = NULL;        /* so jpeg_destroy knows mem mgr not called */
  45.   if (version != JPEG_LIB_VERSION)
  46.     cinfo->ERREXIT2(JERR_BAD_LIB_VERSION, JPEG_LIB_VERSION, version);
  47.   if (structsize != sizeof(struct jpeg_compress_struct))
  48.     cinfo->ERREXIT2(JERR_BAD_STRUCT_SIZE, 
  49.          (int) sizeof(struct jpeg_compress_struct), (int) structsize);
  50.  
  51.   /* For debugging purposes, we zero the whole master structure.
  52.    * But the application has already set the err pointer, and may have set
  53.    * client_data, so we have to save and restore those fields.
  54.    * Note: if application hasn't set client_data, tools like Purify may
  55.    * complain here.
  56.    */
  57.   /*
  58.   {
  59.     jpeg_error_mgr * err = cinfo->err;
  60.     void * client_data = cinfo->client_data; // ignore Purify complaint here
  61.     memset(cinfo, 0, sizeof(struct jpeg_compress_struct));
  62.     cinfo->err = err;
  63.     cinfo->client_data = client_data;
  64.   }
  65. */
  66.   cinfo->is_decompressor = FALSE;
  67.  
  68.   /* Initialize a memory manager instance for this object */
  69.   jinit_memory_mgr((j_common_ptr) cinfo);
  70.  
  71.   /* Zero out pointers to permanent structures. */
  72.   cinfo->progress = NULL;
  73.   cinfo->dest = NULL;
  74.  
  75.   cinfo->comp_info = NULL;
  76.  
  77.   for (i = 0; i < NUM_QUANT_TBLS; i++)
  78.     cinfo->quant_tbl_ptrs[i] = NULL;
  79.  
  80.   for (i = 0; i < NUM_HUFF_TBLS; i++) {
  81.     cinfo->dc_huff_tbl_ptrs[i] = NULL;
  82.     cinfo->ac_huff_tbl_ptrs[i] = NULL;
  83.   }
  84.  
  85.   cinfo->script_space = NULL;
  86.  
  87.   cinfo->input_gamma = 1.0;    /* in case application forgets */
  88.  
  89.   /* OK, I'm ready */
  90.   cinfo->global_state = CSTATE_START;
  91. }
  92.  
  93.  
  94. /*
  95.  * Destruction of a JPEG compression object
  96.  */
  97.  
  98. GLOBAL(void)
  99. jpeg_destroy_compress (j_compress_ptr cinfo)
  100. {
  101.   cinfo->jpeg_destroy(); /* use common routine */
  102. }
  103.  
  104.  
  105. /*
  106.  * Abort processing of a JPEG compression operation,
  107.  * but don't destroy the object itself.
  108.  */
  109.  
  110. GLOBAL(void)
  111. jpeg_abort_compress (j_compress_ptr cinfo)
  112. {
  113.     jpeg_abort((j_common_ptr) cinfo); /* use common routine */
  114. }
  115.  
  116.  
  117. /*
  118.  * Forcibly suppress or un-suppress all quantization and Huffman tables.
  119.  * Marks all currently defined tables as already written (if suppress)
  120.  * or not written (if !suppress).  This will control whether they get emitted
  121.  * by a subsequent jpeg_start_compress call.
  122.  *
  123.  * This routine is exported for use by applications that want to produce
  124.  * abbreviated JPEG datastreams.  It logically belongs in jcparam.c, but
  125.  * since it is called by jpeg_start_compress, we put it here --- otherwise
  126.  * jcparam.o would be linked whether the application used it or not.
  127.  */
  128.  
  129. GLOBAL(void)
  130. jpeg_suppress_tables (j_compress_ptr cinfo, boolean suppress)
  131. {
  132.     int i;
  133.     JQUANT_TBL * qtbl;
  134.     JHUFF_TBL * htbl;
  135.  
  136.     for (i = 0; i < NUM_QUANT_TBLS; i++) {
  137.         if ((qtbl = cinfo->quant_tbl_ptrs[i]) != NULL)
  138.             qtbl->sent_table = suppress;
  139.     }
  140.  
  141.     for (i = 0; i < NUM_HUFF_TBLS; i++) {
  142.     if ((htbl = cinfo->dc_huff_tbl_ptrs[i]) != NULL)
  143.       htbl->sent_table = suppress;
  144.     if ((htbl = cinfo->ac_huff_tbl_ptrs[i]) != NULL)
  145.       htbl->sent_table = suppress;
  146.   }
  147. }
  148.  
  149.  
  150. /*
  151.  * Finish JPEG compression.
  152.  *
  153.  * If a multipass operating mode was selected, this may do a great deal of
  154.  * work including most of the actual output.
  155.  */
  156.  
  157. GLOBAL(void)
  158. jpeg_finish_compress (j_compress_ptr cinfo)
  159. {
  160.   JDIMENSION iMCU_row;
  161.  
  162.   if (cinfo->global_state == CSTATE_SCANNING ||
  163.       cinfo->global_state == CSTATE_RAW_OK) {
  164.     /* Terminate first pass */
  165.     if (cinfo->next_scanline < cinfo->image_height)
  166.       cinfo->ERREXIT(JERR_TOO_LITTLE_DATA);
  167.     (*cinfo->master->finish_pass) (cinfo);
  168.   } else if (cinfo->global_state != CSTATE_WRCOEFS)
  169.     cinfo->ERREXIT1(JERR_BAD_STATE, cinfo->global_state);
  170.   /* Perform any remaining passes */
  171.   while (! cinfo->master->is_last_pass) {
  172.     (*cinfo->master->prepare_for_pass) (cinfo);
  173.     for (iMCU_row = 0; iMCU_row < cinfo->total_iMCU_rows; iMCU_row++) {
  174.       if (cinfo->progress != NULL) {
  175.     cinfo->progress->pass_counter = (long) iMCU_row;
  176.     cinfo->progress->pass_limit = (long) cinfo->total_iMCU_rows;
  177.     cinfo->progress->progress_monitor(cinfo);
  178.       }
  179.       /* We bypass the main controller and invoke coef controller directly;
  180.        * all work is being done from the coefficient buffer.
  181.        */
  182.       if (! (*cinfo->coef->compress_data) (cinfo, (JSAMPIMAGE) NULL))
  183.     cinfo->ERREXIT(JERR_CANT_SUSPEND);
  184.     }
  185.     (*cinfo->master->finish_pass) (cinfo);
  186.   }
  187.   /* Write EOI, do final cleanup */
  188.   (*cinfo->marker->write_file_trailer) (cinfo);
  189.   (*cinfo->dest->term_destination) (cinfo);
  190.   /* We can use jpeg_abort to release memory and reset global_state */
  191.   jpeg_abort((j_common_ptr) cinfo);
  192. }
  193.  
  194.  
  195. /*
  196.  * Write a special marker.
  197.  * This is only recommended for writing COM or APPn markers.
  198.  * Must be called after jpeg_start_compress() and before
  199.  * first call to jpeg_write_scanlines() or jpeg_write_raw_data().
  200.  */
  201.  
  202. GLOBAL(void)
  203. jpeg_write_marker (j_compress_ptr cinfo, int marker,
  204.            const JOCTET *dataptr, unsigned int datalen)
  205. {
  206.   JMETHOD(void, write_marker_byte, (j_compress_ptr info, int val));
  207.  
  208.   if (cinfo->next_scanline != 0 ||
  209.       (cinfo->global_state != CSTATE_SCANNING &&
  210.        cinfo->global_state != CSTATE_RAW_OK &&
  211.        cinfo->global_state != CSTATE_WRCOEFS))
  212.     cinfo->ERREXIT1(JERR_BAD_STATE, cinfo->global_state);
  213.  
  214.   (*cinfo->marker->write_marker_header) (cinfo, marker, datalen);
  215.   write_marker_byte = cinfo->marker->write_marker_byte;    /* copy for speed */
  216.   while (datalen--) {
  217.     (*write_marker_byte) (cinfo, *dataptr);
  218.     dataptr++;
  219.   }
  220. }
  221.  
  222. /* Same, but piecemeal. */
  223.  
  224. GLOBAL(void)
  225. jpeg_write_m_header (j_compress_ptr cinfo, int marker, unsigned int datalen)
  226. {
  227.   if (cinfo->next_scanline != 0 ||
  228.       (cinfo->global_state != CSTATE_SCANNING &&
  229.        cinfo->global_state != CSTATE_RAW_OK &&
  230.        cinfo->global_state != CSTATE_WRCOEFS))
  231.     cinfo->ERREXIT1(JERR_BAD_STATE, cinfo->global_state);
  232.  
  233.   (*cinfo->marker->write_marker_header) (cinfo, marker, datalen);
  234. }
  235.  
  236. GLOBAL(void)
  237. jpeg_write_m_byte (j_compress_ptr cinfo, int val)
  238. {
  239.   (*cinfo->marker->write_marker_byte) (cinfo, val);
  240. }
  241.  
  242.  
  243. /*
  244.  * Alternate compression function: just write an abbreviated table file.
  245.  * Before calling this, all parameters and a data destination must be set up.
  246.  *
  247.  * To produce a pair of files containing abbreviated tables and abbreviated
  248.  * image data, one would proceed as follows:
  249.  *
  250.  *        initialize JPEG object
  251.  *        set JPEG parameters
  252.  *        set destination to table file
  253.  *        jpeg_write_tables(cinfo);
  254.  *        set destination to image file
  255.  *        jpeg_start_compress(cinfo, FALSE);
  256.  *        write data...
  257.  *        jpeg_finish_compress(cinfo);
  258.  *
  259.  * jpeg_write_tables has the side effect of marking all tables written
  260.  * (same as jpeg_suppress_tables(..., TRUE)).  Thus a subsequent start_compress
  261.  * will not re-emit the tables unless it is passed write_all_tables=TRUE.
  262.  */
  263.  
  264. GLOBAL(void)
  265. jpeg_write_tables (j_compress_ptr cinfo)
  266. {
  267.   if (cinfo->global_state != CSTATE_START)
  268.     cinfo->ERREXIT1(JERR_BAD_STATE, cinfo->global_state);
  269.  
  270.   /* (Re)initialize error mgr and destination modules */
  271.   cinfo->err->reset_error_mgr ();
  272.   (*cinfo->dest->init_destination) (cinfo);
  273.   /* Initialize the marker writer ... bit of a crock to do it here. */
  274.   jinit_marker_writer(cinfo);
  275.   /* Write them tables! */
  276.   (*cinfo->marker->write_tables_only) (cinfo);
  277.   /* And clean up. */
  278.   (*cinfo->dest->term_destination) (cinfo);
  279.   /*
  280.    * In library releases up through v6a, we called jpeg_abort() here to free
  281.    * any working memory allocated by the destination manager and marker
  282.    * writer.  Some applications had a problem with that: they allocated space
  283.    * of their own from the library memory manager, and didn't want it to go
  284.    * away during write_tables.  So now we do nothing.  This will cause a
  285.    * memory leak if an app calls write_tables repeatedly without doing a full
  286.    * compression cycle or otherwise resetting the JPEG object.  However, that
  287.    * seems less bad than unexpectedly freeing memory in the normal case.
  288.    * An app that prefers the old behavior can call jpeg_abort for itself after
  289.    * each call to jpeg_write_tables().
  290.    */
  291. }
  292.