JCTRANS.c
上传用户:qiutianh
上传日期:2022-08-08
资源大小:939k
文件大小: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.  * jctrans.c
  22.  *
  23.  * Copyright (C) 1995-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 library routines for transcoding compression,
  28.  * that is, writing raw DCT coefficient arrays to an output JPEG file.
  29.  * The routines in jcapimin.c will also be needed by a transcoder.
  30.  */
  31. #define JPEG_INTERNALS
  32. #include "jinclude.h"
  33. #include "jpeglib.h"
  34. /* Forward declarations */
  35. LOCAL(void) transencode_master_selection
  36. JPP((j_compress_ptr cinfo, jvirt_barray_ptr * coef_arrays));
  37. LOCAL(void) transencode_coef_controller
  38. JPP((j_compress_ptr cinfo, jvirt_barray_ptr * coef_arrays));
  39. /*
  40.  * Compression initialization for writing raw-coefficient data.
  41.  * Before calling this, all parameters and a data destination must be set up.
  42.  * Call jpeg_finish_compress() to actually write the data.
  43.  *
  44.  * The number of passed virtual arrays must match cinfo->num_components.
  45.  * Note that the virtual arrays need not be filled or even realized at
  46.  * the time write_coefficients is called; indeed, if the virtual arrays
  47.  * were requested from this compression object's memory manager, they
  48.  * typically will be realized during this routine and filled afterwards.
  49.  */
  50. GLOBAL(void)
  51. jpeg_write_coefficients (j_compress_ptr cinfo, jvirt_barray_ptr * coef_arrays)
  52. {
  53.   if (cinfo->global_state != CSTATE_START)
  54.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  55.   /* Mark all tables to be written */
  56.   jpeg_suppress_tables(cinfo, FALSE);
  57.   /* (Re)initialize error mgr and destination modules */
  58.   (*cinfo->err->reset_error_mgr) ((j_common_ptr) cinfo);
  59.   (*cinfo->dest->init_destination) (cinfo);
  60.   /* Perform master selection of active modules */
  61.   transencode_master_selection(cinfo, coef_arrays);
  62.   /* Wait for jpeg_finish_compress() call */
  63.   cinfo->next_scanline = 0; /* so jpeg_write_marker works */
  64.   cinfo->global_state = CSTATE_WRCOEFS;
  65. }
  66. /*
  67.  * Initialize the compression object with default parameters,
  68.  * then copy from the source object all parameters needed for lossless
  69.  * transcoding.  Parameters that can be varied without loss (such as
  70.  * scan script and Huffman optimization) are left in their default states.
  71.  */
  72. GLOBAL(void)
  73. jpeg_copy_critical_parameters (j_decompress_ptr srcinfo,
  74.        j_compress_ptr dstinfo)
  75. {
  76.   JQUANT_TBL ** qtblptr;
  77.   jpeg_component_info *incomp, *outcomp;
  78.   JQUANT_TBL *c_quant, *slot_quant;
  79.   int tblno, ci, coefi;
  80.   /* Safety check to ensure start_compress not called yet. */
  81.   if (dstinfo->global_state != CSTATE_START)
  82.     ERREXIT1(dstinfo, JERR_BAD_STATE, dstinfo->global_state);
  83.   /* Copy fundamental image dimensions */
  84.   dstinfo->image_width = srcinfo->image_width;
  85.   dstinfo->image_height = srcinfo->image_height;
  86.   dstinfo->input_components = srcinfo->num_components;
  87.   dstinfo->in_color_space = srcinfo->jpeg_color_space;
  88.   /* Initialize all parameters to default values */
  89.   jpeg_set_defaults(dstinfo);
  90.   /* jpeg_set_defaults may choose wrong colorspace, eg YCbCr if input is RGB.
  91.    * Fix it to get the right header markers for the image colorspace.
  92.    */
  93.   jpeg_set_colorspace(dstinfo, srcinfo->jpeg_color_space);
  94.   dstinfo->data_precision = srcinfo->data_precision;
  95.   dstinfo->CCIR601_sampling = srcinfo->CCIR601_sampling;
  96.   /* Copy the source's quantization tables. */
  97.   for (tblno = 0; tblno < NUM_QUANT_TBLS; tblno++) {
  98.     if (srcinfo->quant_tbl_ptrs[tblno] != NULL) {
  99.       qtblptr = & dstinfo->quant_tbl_ptrs[tblno];
  100.       if (*qtblptr == NULL)
  101. *qtblptr = jpeg_alloc_quant_table((j_common_ptr) dstinfo);
  102.       MEMCOPY((*qtblptr)->quantval,
  103.       srcinfo->quant_tbl_ptrs[tblno]->quantval,
  104.       SIZEOF((*qtblptr)->quantval));
  105.       (*qtblptr)->sent_table = FALSE;
  106.     }
  107.   }
  108.   /* Copy the source's per-component info.
  109.    * Note we assume jpeg_set_defaults has allocated the dest comp_info array.
  110.    */
  111.   dstinfo->num_components = srcinfo->num_components;
  112.   if (dstinfo->num_components < 1 || dstinfo->num_components > MAX_COMPONENTS)
  113.     ERREXIT2(dstinfo, JERR_COMPONENT_COUNT, dstinfo->num_components,
  114.      MAX_COMPONENTS);
  115.   for (ci = 0, incomp = srcinfo->comp_info, outcomp = dstinfo->comp_info;
  116.        ci < dstinfo->num_components; ci++, incomp++, outcomp++) {
  117.     outcomp->component_id = incomp->component_id;
  118.     outcomp->h_samp_factor = incomp->h_samp_factor;
  119.     outcomp->v_samp_factor = incomp->v_samp_factor;
  120.     outcomp->quant_tbl_no = incomp->quant_tbl_no;
  121.     /* Make sure saved quantization table for component matches the qtable
  122.      * slot.  If not, the input file re-used this qtable slot.
  123.      * IJG encoder currently cannot duplicate this.
  124.      */
  125.     tblno = outcomp->quant_tbl_no;
  126.     if (tblno < 0 || tblno >= NUM_QUANT_TBLS ||
  127. srcinfo->quant_tbl_ptrs[tblno] == NULL)
  128.       ERREXIT1(dstinfo, JERR_NO_QUANT_TABLE, tblno);
  129.     slot_quant = srcinfo->quant_tbl_ptrs[tblno];
  130.     c_quant = incomp->quant_table;
  131.     if (c_quant != NULL) {
  132.       for (coefi = 0; coefi < DCTSIZE2; coefi++) {
  133. if (c_quant->quantval[coefi] != slot_quant->quantval[coefi])
  134.   ERREXIT1(dstinfo, JERR_MISMATCHED_QUANT_TABLE, tblno);
  135.       }
  136.     }
  137.     /* Note: we do not copy the source's Huffman table assignments;
  138.      * instead we rely on jpeg_set_colorspace to have made a suitable choice.
  139.      */
  140.   }
  141. }
  142. /*
  143.  * Master selection of compression modules for transcoding.
  144.  * This substitutes for jcinit.c's initialization of the full compressor.
  145.  */
  146. LOCAL(void)
  147. transencode_master_selection (j_compress_ptr cinfo,
  148.       jvirt_barray_ptr * coef_arrays)
  149. {
  150.   /* Although we don't actually use input_components for transcoding,
  151.    * jcmaster.c's initial_setup will complain if input_components is 0.
  152.    */
  153.   cinfo->input_components = 1;
  154.   /* Initialize master control (includes parameter checking/processing) */
  155.   jinit_c_master_control(cinfo, TRUE /* transcode only */);
  156.   /* Entropy encoding: either Huffman or arithmetic coding. */
  157.   if (cinfo->arith_code) {
  158.     ERREXIT(cinfo, JERR_ARITH_NOTIMPL);
  159.   } else {
  160.     if (cinfo->progressive_mode) {
  161. #ifdef C_PROGRESSIVE_SUPPORTED
  162.       jinit_phuff_encoder(cinfo);
  163. #else
  164.       ERREXIT(cinfo, JERR_NOT_COMPILED);
  165. #endif
  166.     } else
  167.       jinit_huff_encoder(cinfo);
  168.   }
  169.   /* We need a special coefficient buffer controller. */
  170.   transencode_coef_controller(cinfo, coef_arrays);
  171.   jinit_marker_writer(cinfo);
  172.   /* We can now tell the memory manager to allocate virtual arrays. */
  173.   (*cinfo->mem->realize_virt_arrays) ((j_common_ptr) cinfo);
  174.   /* Write the datastream header (SOI) immediately.
  175.    * Frame and scan headers are postponed till later.
  176.    * This lets application insert special markers after the SOI.
  177.    */
  178.   (*cinfo->marker->write_file_header) (cinfo);
  179. }
  180. /*
  181.  * The rest of this file is a special implementation of the coefficient
  182.  * buffer controller.  This is similar to jccoefct.c, but it handles only
  183.  * output from presupplied virtual arrays.  Furthermore, we generate any
  184.  * dummy padding blocks on-the-fly rather than expecting them to be present
  185.  * in the arrays.
  186.  */
  187. /* Private buffer controller object */
  188. typedef struct {
  189.   struct jpeg_c_coef_controller pub; /* public fields */
  190.   JDIMENSION iMCU_row_num; /* iMCU row # within image */
  191.   JDIMENSION mcu_ctr; /* counts MCUs processed in current row */
  192.   int MCU_vert_offset; /* counts MCU rows within iMCU row */
  193.   int MCU_rows_per_iMCU_row; /* number of such rows needed */
  194.   /* Virtual block array for each component. */
  195.   jvirt_barray_ptr * whole_image;
  196.   /* Workspace for constructing dummy blocks at right/bottom edges. */
  197.   JBLOCKROW dummy_buffer[C_MAX_BLOCKS_IN_MCU];
  198. } my_coef_controller;
  199. typedef my_coef_controller * my_coef_ptr;
  200. LOCAL(void)
  201. start_iMCU_row (j_compress_ptr cinfo)
  202. /* Reset within-iMCU-row counters for a new row */
  203. {
  204.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  205.   /* In an interleaved scan, an MCU row is the same as an iMCU row.
  206.    * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
  207.    * But at the bottom of the image, process only what's left.
  208.    */
  209.   if (cinfo->comps_in_scan > 1) {
  210.     coef->MCU_rows_per_iMCU_row = 1;
  211.   } else {
  212.     if (coef->iMCU_row_num < (cinfo->total_iMCU_rows-1))
  213.       coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
  214.     else
  215.       coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
  216.   }
  217.   coef->mcu_ctr = 0;
  218.   coef->MCU_vert_offset = 0;
  219. }
  220. /*
  221.  * Initialize for a processing pass.
  222.  */
  223. METHODDEF(void)
  224. start_pass_coef (j_compress_ptr cinfo, J_BUF_MODE pass_mode)
  225. {
  226.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  227.   if (pass_mode != JBUF_CRANK_DEST)
  228.     ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  229.   coef->iMCU_row_num = 0;
  230.   start_iMCU_row(cinfo);
  231. }
  232. /*
  233.  * Process some data.
  234.  * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
  235.  * per call, ie, v_samp_factor block rows for each component in the scan.
  236.  * The data is obtained from the virtual arrays and fed to the entropy coder.
  237.  * Returns TRUE if the iMCU row is completed, FALSE if suspended.
  238.  *
  239.  * NB: input_buf is ignored; it is likely to be a NULL pointer.
  240.  */
  241. METHODDEF(boolean)
  242. compress_output (j_compress_ptr cinfo, JSAMPIMAGE input_buf)
  243. {
  244.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  245.   JDIMENSION MCU_col_num; /* index of current MCU within row */
  246.   JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
  247.   JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
  248.   int blkn, ci, xindex, yindex, yoffset, blockcnt;
  249.   JDIMENSION start_col;
  250.   JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
  251.   JBLOCKROW MCU_buffer[C_MAX_BLOCKS_IN_MCU];
  252.   JBLOCKROW buffer_ptr;
  253.   jpeg_component_info *compptr;
  254.   /* Align the virtual buffers for the components used in this scan. */
  255.   for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  256.     compptr = cinfo->cur_comp_info[ci];
  257.     buffer[ci] = (*cinfo->mem->access_virt_barray)
  258.       ((j_common_ptr) cinfo, coef->whole_image[compptr->component_index],
  259.        coef->iMCU_row_num * compptr->v_samp_factor,
  260.        (JDIMENSION) compptr->v_samp_factor, FALSE);
  261.   }
  262.   /* Loop to process one whole iMCU row */
  263.   for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
  264.        yoffset++) {
  265.     for (MCU_col_num = coef->mcu_ctr; MCU_col_num < cinfo->MCUs_per_row;
  266.  MCU_col_num++) {
  267.       /* Construct list of pointers to DCT blocks belonging to this MCU */
  268.       blkn = 0; /* index of current DCT block within MCU */
  269.       for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  270. compptr = cinfo->cur_comp_info[ci];
  271. start_col = MCU_col_num * compptr->MCU_width;
  272. blockcnt = (MCU_col_num < last_MCU_col) ? compptr->MCU_width
  273. : compptr->last_col_width;
  274. for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
  275.   if (coef->iMCU_row_num < last_iMCU_row ||
  276.       yindex+yoffset < compptr->last_row_height) {
  277.     /* Fill in pointers to real blocks in this row */
  278.     buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
  279.     for (xindex = 0; xindex < blockcnt; xindex++)
  280.       MCU_buffer[blkn++] = buffer_ptr++;
  281.   } else {
  282.     /* At bottom of image, need a whole row of dummy blocks */
  283.     xindex = 0;
  284.   }
  285.   /* Fill in any dummy blocks needed in this row.
  286.    * Dummy blocks are filled in the same way as in jccoefct.c:
  287.    * all zeroes in the AC entries, DC entries equal to previous
  288.    * block's DC value.  The init routine has already zeroed the
  289.    * AC entries, so we need only set the DC entries correctly.
  290.    */
  291.   for (; xindex < compptr->MCU_width; xindex++) {
  292.     MCU_buffer[blkn] = coef->dummy_buffer[blkn];
  293.     MCU_buffer[blkn][0][0] = MCU_buffer[blkn-1][0][0];
  294.     blkn++;
  295.   }
  296. }
  297.       }
  298.       /* Try to write the MCU. */
  299.       if (! (*cinfo->entropy->encode_mcu) (cinfo, MCU_buffer)) {
  300. /* Suspension forced; update state counters and exit */
  301. coef->MCU_vert_offset = yoffset;
  302. coef->mcu_ctr = MCU_col_num;
  303. return FALSE;
  304.       }
  305.     }
  306.     /* Completed an MCU row, but perhaps not an iMCU row */
  307.     coef->mcu_ctr = 0;
  308.   }
  309.   /* Completed the iMCU row, advance counters for next one */
  310.   coef->iMCU_row_num++;
  311.   start_iMCU_row(cinfo);
  312.   return TRUE;
  313. }
  314. /*
  315.  * Initialize coefficient buffer controller.
  316.  *
  317.  * Each passed coefficient array must be the right size for that
  318.  * coefficient: width_in_blocks wide and height_in_blocks high,
  319.  * with unitheight at least v_samp_factor.
  320.  */
  321. LOCAL(void)
  322. transencode_coef_controller (j_compress_ptr cinfo,
  323.      jvirt_barray_ptr * coef_arrays)
  324. {
  325.   my_coef_ptr coef;
  326.   JBLOCKROW buffer;
  327.   int i;
  328.   coef = (my_coef_ptr)
  329.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  330. SIZEOF(my_coef_controller));
  331.   cinfo->coef = (struct jpeg_c_coef_controller *) coef;
  332.   coef->pub.start_pass = start_pass_coef;
  333.   coef->pub.compress_data = compress_output;
  334.   /* Save pointer to virtual arrays */
  335.   coef->whole_image = coef_arrays;
  336.   /* Allocate and pre-zero space for dummy DCT blocks. */
  337.   buffer = (JBLOCKROW)
  338.     (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  339. C_MAX_BLOCKS_IN_MCU * SIZEOF(JBLOCK));
  340.   jzero_far((void FAR *) buffer, C_MAX_BLOCKS_IN_MCU * SIZEOF(JBLOCK));
  341.   for (i = 0; i < C_MAX_BLOCKS_IN_MCU; i++) {
  342.     coef->dummy_buffer[i] = buffer + i;
  343.   }
  344. }