JCCOEFCT.C
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:15k
源码类别:

图片显示

开发平台:

Visual C++

  1. /*
  2.  * jccoefct.c
  3.  *
  4.  * Copyright (C) 1994, Thomas G. Lane.
  5.  * This file is part of the Independent JPEG Group's software.
  6.  * For conditions of distribution and use, see the accompanying README file.
  7.  *
  8.  * This file contains the coefficient buffer controller for compression.
  9.  * This controller is the top level of the JPEG compressor proper.
  10.  * The coefficient buffer lies between forward-DCT and entropy encoding steps.
  11.  */
  12. #define JPEG_INTERNALS
  13. #include "jinclude.h"
  14. #include "jpeglib.h"
  15. /* We use a full-image coefficient buffer when doing Huffman optimization,
  16.  * and also for writing multiple-scan JPEG files.  In all cases, the DCT
  17.  * step is run during the first pass, and subsequent passes need only read
  18.  * the buffered coefficients.
  19.  */
  20. #ifdef ENTROPY_OPT_SUPPORTED
  21. #define FULL_COEF_BUFFER_SUPPORTED
  22. #else
  23. #ifdef C_MULTISCAN_FILES_SUPPORTED
  24. #define FULL_COEF_BUFFER_SUPPORTED
  25. #endif
  26. #endif
  27. /* Private buffer controller object */
  28. typedef struct {
  29.   struct jpeg_c_coef_controller pub; /* public fields */
  30.   JDIMENSION MCU_row_num; /* keep track of MCU row # within image */
  31.   /* For single-pass compression, it's sufficient to buffer just one MCU
  32.    * (although this may prove a bit slow in practice).  We allocate a
  33.    * workspace of MAX_BLOCKS_IN_MCU coefficient blocks, and reuse it for each
  34.    * MCU constructed and sent.  (On 80x86, the workspace is FAR even though
  35.    * it's not really very big; this is to keep the module interfaces unchanged
  36.    * when a large coefficient buffer is necessary.)
  37.    * In multi-pass modes, this array points to the current MCU's blocks
  38.    * within the virtual arrays.
  39.    */
  40.   JBLOCKROW MCU_buffer[MAX_BLOCKS_IN_MCU];
  41.   /* In multi-pass modes, we need a virtual block array for each component. */
  42.   jvirt_barray_ptr whole_image[MAX_COMPONENTS];
  43. } my_coef_controller;
  44. typedef my_coef_controller * my_coef_ptr;
  45. /* Forward declarations */
  46. METHODDEF void compress_data
  47.     JPP((j_compress_ptr cinfo, JSAMPIMAGE input_buf, JDIMENSION *in_mcu_ctr));
  48. #ifdef FULL_COEF_BUFFER_SUPPORTED
  49. METHODDEF void compress_first_pass
  50.     JPP((j_compress_ptr cinfo, JSAMPIMAGE input_buf, JDIMENSION *in_mcu_ctr));
  51. METHODDEF void compress_output
  52.     JPP((j_compress_ptr cinfo, JSAMPIMAGE input_buf, JDIMENSION *in_mcu_ctr));
  53. #endif
  54. /*
  55.  * Initialize for a processing pass.
  56.  */
  57. METHODDEF void
  58. start_pass_coef (j_compress_ptr cinfo, J_BUF_MODE pass_mode)
  59. {
  60.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  61.   coef->MCU_row_num = 0;
  62.   switch (pass_mode) {
  63.   case JBUF_PASS_THRU:
  64.     if (coef->whole_image[0] != NULL)
  65.       ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  66.     coef->pub.compress_data = compress_data;
  67.     break;
  68. #ifdef FULL_COEF_BUFFER_SUPPORTED
  69.   case JBUF_SAVE_AND_PASS:
  70.     if (coef->whole_image[0] == NULL)
  71.       ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  72.     coef->pub.compress_data = compress_first_pass;
  73.     break;
  74.   case JBUF_CRANK_DEST:
  75.     if (coef->whole_image[0] == NULL)
  76.       ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  77.     coef->pub.compress_data = compress_output;
  78.     break;
  79. #endif
  80.   default:
  81.     ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  82.     break;
  83.   }
  84. }
  85. /*
  86.  * Process some data in the single-pass case.
  87.  * Up to one MCU row is processed (less if suspension is forced).
  88.  *
  89.  * NB: input_buf contains a plane for each component in image.
  90.  * For single pass, this is the same as the components in the scan.
  91.  */
  92. METHODDEF void
  93. compress_data (j_compress_ptr cinfo,
  94.        JSAMPIMAGE input_buf, JDIMENSION *in_mcu_ctr)
  95. {
  96.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  97.   JDIMENSION MCU_col_num; /* index of current MCU within row */
  98.   JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
  99.   JDIMENSION last_MCU_row = cinfo->MCU_rows_in_scan - 1;
  100.   int blkn, bi, ci, yindex, blockcnt;
  101.   JDIMENSION ypos, xpos;
  102.   jpeg_component_info *compptr;
  103.   /* Loop to write as much as one whole MCU row */
  104.   for (MCU_col_num = *in_mcu_ctr; MCU_col_num <= last_MCU_col; MCU_col_num++) {
  105.     /* Determine where data comes from in input_buf and do the DCT thing.
  106.      * Each call on forward_DCT processes a horizontal row of DCT blocks
  107.      * as wide as an MCU; we rely on having allocated the MCU_buffer[] blocks
  108.      * sequentially.  Dummy blocks at the right or bottom edge are filled in
  109.      * specially.  The data in them does not matter for image reconstruction,
  110.      * so we fill them with values that will encode to the smallest amount of
  111.      * data, viz: all zeroes in the AC entries, DC entries equal to previous
  112.      * block's DC value.  (Thanks to Thomas Kinsman for this idea.)
  113.      */
  114.     blkn = 0;
  115.     for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  116.       compptr = cinfo->cur_comp_info[ci];
  117.       blockcnt = (MCU_col_num < last_MCU_col) ? compptr->MCU_width
  118.       : compptr->last_col_width;
  119.       xpos = MCU_col_num * compptr->MCU_sample_width;
  120.       ypos = 0;
  121.       for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
  122. if (coef->MCU_row_num < last_MCU_row ||
  123.     yindex < compptr->last_row_height) {
  124.   (*cinfo->fdct->forward_DCT) (cinfo, compptr,
  125.        input_buf[ci], coef->MCU_buffer[blkn],
  126.        ypos, xpos, (JDIMENSION) blockcnt);
  127.   if (blockcnt < compptr->MCU_width) {
  128.     /* Create some dummy blocks at the right edge of the image. */
  129.     jzero_far((void FAR *) coef->MCU_buffer[blkn + blockcnt],
  130.       (compptr->MCU_width - blockcnt) * SIZEOF(JBLOCK));
  131.     for (bi = blockcnt; bi < compptr->MCU_width; bi++) {
  132.       coef->MCU_buffer[blkn+bi][0][0] = coef->MCU_buffer[blkn+bi-1][0][0];
  133.     }
  134.   }
  135. } else {
  136.   /* Create a whole row of dummy blocks at the bottom of the image. */
  137.   jzero_far((void FAR *) coef->MCU_buffer[blkn],
  138.     compptr->MCU_width * SIZEOF(JBLOCK));
  139.   for (bi = 0; bi < compptr->MCU_width; bi++) {
  140.     coef->MCU_buffer[blkn+bi][0][0] = coef->MCU_buffer[blkn-1][0][0];
  141.   }
  142. }
  143. blkn += compptr->MCU_width;
  144. ypos += DCTSIZE;
  145.       }
  146.     }
  147.     /* Try to write the MCU.  In event of a suspension failure, we will
  148.      * re-DCT the MCU on restart (a bit inefficient, could be fixed...)
  149.      */
  150.     if (! (*cinfo->entropy->encode_mcu) (cinfo, coef->MCU_buffer))
  151.       break; /* suspension forced; exit loop */
  152.   }
  153.   if (MCU_col_num > last_MCU_col)
  154.     coef->MCU_row_num++; /* advance if we finished the row */
  155.   *in_mcu_ctr = MCU_col_num;
  156. }
  157. #ifdef FULL_COEF_BUFFER_SUPPORTED
  158. /*
  159.  * Process some data in the first pass of a multi-pass case.
  160.  * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
  161.  * per call, ie, v_samp_factor block rows for each component in the image.
  162.  * This amount of data is read from the source buffer, DCT'd and quantized,
  163.  * and saved into the virtual arrays.  We also generate suitable dummy blocks
  164.  * as needed at the right and lower edges.  (The dummy blocks are constructed
  165.  * in the virtual arrays, which have been padded appropriately.)  This makes
  166.  * it possible for subsequent passes not to worry about real vs. dummy blocks.
  167.  *
  168.  * We must also emit the data to the entropy encoder.  This is conveniently
  169.  * done by calling compress_output() after we've loaded the current strip
  170.  * of the virtual arrays.
  171.  *
  172.  * NB: input_buf contains a plane for each component in image.  All
  173.  * components are DCT'd and loaded into the virtual arrays in this pass.
  174.  * However, it may be that only a subset of the components are emitted to
  175.  * the entropy encoder during this first pass; be careful about looking
  176.  * at the scan-dependent variables (MCU dimensions, etc).
  177.  */
  178. METHODDEF void
  179. compress_first_pass (j_compress_ptr cinfo,
  180.      JSAMPIMAGE input_buf, JDIMENSION *in_mcu_ctr)
  181. {
  182.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  183.   JDIMENSION last_MCU_row = cinfo->total_iMCU_rows - 1;
  184.   JDIMENSION blocks_across, MCUs_across, MCUindex;
  185.   int bi, ci, h_samp_factor, block_row, block_rows, ndummy;
  186.   JCOEF lastDC;
  187.   jpeg_component_info *compptr;
  188.   JBLOCKARRAY buffer;
  189.   JBLOCKROW thisblockrow, lastblockrow;
  190.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  191.        ci++, compptr++) {
  192.     /* Align the virtual buffer for this component. */
  193.     buffer = (*cinfo->mem->access_virt_barray)
  194.       ((j_common_ptr) cinfo, coef->whole_image[ci],
  195.        coef->MCU_row_num * compptr->v_samp_factor, TRUE);
  196.     /* Count non-dummy DCT block rows in this iMCU row. */
  197.     if (coef->MCU_row_num < last_MCU_row)
  198.       block_rows = compptr->v_samp_factor;
  199.     else {
  200.       block_rows = (int) (compptr->height_in_blocks % compptr->v_samp_factor);
  201.       if (block_rows == 0) block_rows = compptr->v_samp_factor;
  202.     }
  203.     blocks_across = compptr->width_in_blocks;
  204.     h_samp_factor = compptr->h_samp_factor;
  205.     /* Count number of dummy blocks to be added at the right margin. */
  206.     ndummy = (int) (blocks_across % h_samp_factor);
  207.     if (ndummy > 0)
  208.       ndummy = h_samp_factor - ndummy;
  209.     /* Perform DCT for all non-dummy blocks in this iMCU row.  Each call
  210.      * on forward_DCT processes a complete horizontal row of DCT blocks.
  211.      */
  212.     for (block_row = 0; block_row < block_rows; block_row++) {
  213.       thisblockrow = buffer[block_row];
  214.       (*cinfo->fdct->forward_DCT) (cinfo, compptr,
  215.    input_buf[ci], thisblockrow,
  216.    (JDIMENSION) (block_row * DCTSIZE),
  217.    (JDIMENSION) 0, blocks_across);
  218.       if (ndummy > 0) {
  219. /* Create dummy blocks at the right edge of the image. */
  220. thisblockrow += blocks_across; /* => first dummy block */
  221. jzero_far((void FAR *) thisblockrow, ndummy * SIZEOF(JBLOCK));
  222. lastDC = thisblockrow[-1][0];
  223. for (bi = 0; bi < ndummy; bi++) {
  224.   thisblockrow[bi][0] = lastDC;
  225. }
  226.       }
  227.     }
  228.     /* If at end of image, create dummy block rows as needed.
  229.      * The tricky part here is that within each MCU, we want the DC values
  230.      * of the dummy blocks to match the last real block's DC value.
  231.      * This squeezes a few more bytes out of the resulting file...
  232.      */
  233.     if (coef->MCU_row_num == last_MCU_row) {
  234.       blocks_across += ndummy; /* include lower right corner */
  235.       MCUs_across = blocks_across / h_samp_factor;
  236.       for (block_row = block_rows; block_row < compptr->v_samp_factor;
  237.    block_row++) {
  238. thisblockrow = buffer[block_row];
  239. lastblockrow = buffer[block_row-1];
  240. jzero_far((void FAR *) thisblockrow,
  241.   (size_t) (blocks_across * SIZEOF(JBLOCK)));
  242. for (MCUindex = 0; MCUindex < MCUs_across; MCUindex++) {
  243.   lastDC = lastblockrow[h_samp_factor-1][0];
  244.   for (bi = 0; bi < h_samp_factor; bi++) {
  245.     thisblockrow[bi][0] = lastDC;
  246.   }
  247.   thisblockrow += h_samp_factor; /* advance to next MCU in row */
  248.   lastblockrow += h_samp_factor;
  249. }
  250.       }
  251.     }
  252.   }
  253.   /* NB: compress_output will increment MCU_row_num */
  254.   /* Emit data to the entropy encoder, sharing code with subsequent passes */
  255.   compress_output(cinfo, input_buf, in_mcu_ctr);
  256. }
  257. /*
  258.  * Process some data in subsequent passes of a multi-pass case.
  259.  * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
  260.  * per call, ie, v_samp_factor block rows for each component in the scan.
  261.  * The data is obtained from the virtual arrays and fed to the entropy coder.
  262.  *
  263.  * Note that output suspension is not supported during multi-pass operation,
  264.  * so the complete MCU row will always be emitted to the entropy encoder
  265.  * before returning.
  266.  *
  267.  * NB: input_buf is ignored; it is likely to be a NULL pointer.
  268.  */
  269. METHODDEF void
  270. compress_output (j_compress_ptr cinfo,
  271.  JSAMPIMAGE input_buf, JDIMENSION *in_mcu_ctr)
  272. {
  273.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  274.   JDIMENSION MCU_col_num; /* index of current MCU within row */
  275.   int blkn, ci, xindex, yindex, yoffset, num_MCU_rows;
  276.   JDIMENSION remaining_rows, start_col;
  277.   JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
  278.   JBLOCKROW buffer_ptr;
  279.   jpeg_component_info *compptr;
  280.   /* Align the virtual buffers for the components used in this scan.
  281.    * NB: during first pass, this is safe only because the buffers will
  282.    * already be aligned properly, so jmemmgr.c won't need to do any I/O.
  283.    */
  284.   for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  285.     compptr = cinfo->cur_comp_info[ci];
  286.     buffer[ci] = (*cinfo->mem->access_virt_barray)
  287.       ((j_common_ptr) cinfo, coef->whole_image[compptr->component_index],
  288.        coef->MCU_row_num * compptr->v_samp_factor, FALSE);
  289.   }
  290.   /* In an interleaved scan, we process exactly one MCU row.
  291.    * In a noninterleaved scan, we need to process v_samp_factor MCU rows,
  292.    * each of which contains a single block row.
  293.    */
  294.   if (cinfo->comps_in_scan == 1) {
  295.     compptr = cinfo->cur_comp_info[0];
  296.     num_MCU_rows = compptr->v_samp_factor;
  297.     /* but watch out for the bottom of the image */
  298.     remaining_rows = cinfo->MCU_rows_in_scan -
  299.      coef->MCU_row_num * compptr->v_samp_factor;
  300.     if (remaining_rows < (JDIMENSION) num_MCU_rows)
  301.       num_MCU_rows = (int) remaining_rows;
  302.   } else {
  303.     num_MCU_rows = 1;
  304.   }
  305.   /* Loop to process one whole iMCU row */
  306.   for (yoffset = 0; yoffset < num_MCU_rows; yoffset++) {
  307.     for (MCU_col_num = 0; MCU_col_num < cinfo->MCUs_per_row; MCU_col_num++) {
  308.       /* Construct list of pointers to DCT blocks belonging to this MCU */
  309.       blkn = 0; /* index of current DCT block within MCU */
  310.       for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  311. compptr = cinfo->cur_comp_info[ci];
  312. start_col = MCU_col_num * compptr->MCU_width;
  313. for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
  314.   buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
  315.   for (xindex = 0; xindex < compptr->MCU_width; xindex++) {
  316.     coef->MCU_buffer[blkn++] = buffer_ptr++;
  317.   }
  318. }
  319.       }
  320.       /* Try to write the MCU. */
  321.       if (! (*cinfo->entropy->encode_mcu) (cinfo, coef->MCU_buffer)) {
  322. ERREXIT(cinfo, JERR_CANT_SUSPEND); /* not supported */
  323.       }
  324.     }
  325.   }
  326.   coef->MCU_row_num++; /* advance to next iMCU row */
  327.   *in_mcu_ctr = cinfo->MCUs_per_row;
  328. }
  329. #endif /* FULL_COEF_BUFFER_SUPPORTED */
  330. /*
  331.  * Initialize coefficient buffer controller.
  332.  */
  333. GLOBAL void
  334. jinit_c_coef_controller (j_compress_ptr cinfo, boolean need_full_buffer)
  335. {
  336.   my_coef_ptr coef;
  337.   int ci, i;
  338.   jpeg_component_info *compptr;
  339.   JBLOCKROW buffer;
  340.   coef = (my_coef_ptr)
  341.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  342. SIZEOF(my_coef_controller));
  343.   cinfo->coef = (struct jpeg_c_coef_controller *) coef;
  344.   coef->pub.start_pass = start_pass_coef;
  345.   /* Create the coefficient buffer. */
  346.   if (need_full_buffer) {
  347. #ifdef FULL_COEF_BUFFER_SUPPORTED
  348.     /* Allocate a full-image virtual array for each component, */
  349.     /* padded to a multiple of samp_factor DCT blocks in each direction. */
  350.     /* Note memmgr implicitly pads the vertical direction. */
  351.     for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  352.  ci++, compptr++) {
  353.       coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)
  354. ((j_common_ptr) cinfo, JPOOL_IMAGE,
  355.  (JDIMENSION) jround_up((long) compptr->width_in_blocks,
  356. (long) compptr->h_samp_factor),
  357.  compptr->height_in_blocks,
  358.  (JDIMENSION) compptr->v_samp_factor);
  359.     }
  360. #else
  361.     ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  362. #endif
  363.   } else {
  364.     /* We only need a single-MCU buffer. */
  365.     buffer = (JBLOCKROW)
  366.       (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  367.   MAX_BLOCKS_IN_MCU * SIZEOF(JBLOCK));
  368.     for (i = 0; i < MAX_BLOCKS_IN_MCU; i++) {
  369.       coef->MCU_buffer[i] = buffer + i;
  370.     }
  371.     coef->whole_image[0] = NULL; /* flag for no virtual arrays */
  372.   }
  373. }