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

图片显示

开发平台:

Visual C++

  1. /*
  2.  * jdcoefct.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 decompression.
  9.  * This controller is the top level of the JPEG decompressor proper.
  10.  * The coefficient buffer lies between entropy decoding and inverse-DCT steps.
  11.  */
  12. #define JPEG_INTERNALS
  13. #include "jinclude.h"
  14. #include "jpeglib.h"
  15. /* Private buffer controller object */
  16. typedef struct {
  17.   struct jpeg_d_coef_controller pub; /* public fields */
  18.   JDIMENSION MCU_col_num; /* saves next MCU column to process */
  19.   JDIMENSION MCU_row_num; /* keep track of MCU row # within image */
  20.   /* In single-pass modes without block smoothing, it's sufficient to buffer
  21.    * just one MCU (although this may prove a bit slow in practice).
  22.    * We allocate a workspace of MAX_BLOCKS_IN_MCU coefficient blocks,
  23.    * and let the entropy decoder write into that workspace each time.
  24.    * (On 80x86, the workspace is FAR even though it's not really very big;
  25.    * this is to keep the module interfaces unchanged when a large coefficient
  26.    * buffer is necessary.)
  27.    * In multi-pass modes, this array points to the current MCU's blocks
  28.    * within the virtual arrays.
  29.    */
  30.   JBLOCKROW MCU_buffer[MAX_BLOCKS_IN_MCU];
  31.   /* In multi-pass modes, we need a virtual block array for each component. */
  32.   jvirt_barray_ptr whole_image[MAX_COMPONENTS];
  33. } my_coef_controller;
  34. typedef my_coef_controller * my_coef_ptr;
  35. /* Forward declarations */
  36. METHODDEF boolean decompress_data
  37. JPP((j_decompress_ptr cinfo, JSAMPIMAGE output_buf));
  38. #ifdef D_MULTISCAN_FILES_SUPPORTED
  39. METHODDEF boolean decompress_read
  40. JPP((j_decompress_ptr cinfo, JSAMPIMAGE output_buf));
  41. METHODDEF boolean decompress_output
  42. JPP((j_decompress_ptr cinfo, JSAMPIMAGE output_buf));
  43. #endif
  44. /*
  45.  * Initialize for a processing pass.
  46.  */
  47. METHODDEF void
  48. start_pass_coef (j_decompress_ptr cinfo, J_BUF_MODE pass_mode)
  49. {
  50.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  51.   coef->MCU_col_num = 0;
  52.   coef->MCU_row_num = 0;
  53.   switch (pass_mode) {
  54.   case JBUF_PASS_THRU:
  55.     if (coef->whole_image[0] != NULL)
  56.       ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  57.     coef->pub.decompress_data = decompress_data;
  58.     break;
  59. #ifdef D_MULTISCAN_FILES_SUPPORTED
  60.   case JBUF_SAVE_SOURCE:
  61.     if (coef->whole_image[0] == NULL)
  62.       ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  63.     coef->pub.decompress_data = decompress_read;
  64.     break;
  65.   case JBUF_CRANK_DEST:
  66.     if (coef->whole_image[0] == NULL)
  67.       ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  68.     coef->pub.decompress_data = decompress_output;
  69.     break;
  70. #endif
  71.   default:
  72.     ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  73.     break;
  74.   }
  75. }
  76. /*
  77.  * Process some data in the single-pass case.
  78.  * Always attempts to emit one fully interleaved MCU row ("iMCU" row).
  79.  * Returns TRUE if it completed a row, FALSE if not (suspension).
  80.  *
  81.  * NB: output_buf contains a plane for each component in image.
  82.  * For single pass, this is the same as the components in the scan.
  83.  */
  84. METHODDEF boolean
  85. decompress_data (j_decompress_ptr cinfo, JSAMPIMAGE output_buf)
  86. {
  87.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  88.   JDIMENSION MCU_col_num; /* index of current MCU within row */
  89.   JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
  90.   JDIMENSION last_MCU_row = cinfo->MCU_rows_in_scan - 1;
  91.   int blkn, ci, xindex, yindex, useful_width;
  92.   JSAMPARRAY output_ptr;
  93.   JDIMENSION start_col, output_col;
  94.   jpeg_component_info *compptr;
  95.   inverse_DCT_method_ptr inverse_DCT;
  96.   /* Loop to process as much as one whole MCU row */
  97.   for (MCU_col_num = coef->MCU_col_num; MCU_col_num <= last_MCU_col;
  98.        MCU_col_num++) {
  99.     /* Try to fetch an MCU.  Entropy decoder expects buffer to be zeroed. */
  100.     jzero_far((void FAR *) coef->MCU_buffer[0],
  101.       (size_t) (cinfo->blocks_in_MCU * SIZEOF(JBLOCK)));
  102.     if (! (*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer)) {
  103.       /* Suspension forced; return with row unfinished */
  104.       coef->MCU_col_num = MCU_col_num; /* update my state */
  105.       return FALSE;
  106.     }
  107.     /* Determine where data should go in output_buf and do the IDCT thing.
  108.      * We skip dummy blocks at the right and bottom edges (but blkn gets
  109.      * incremented past them!).  Note the inner loop relies on having
  110.      * allocated the MCU_buffer[] blocks sequentially.
  111.      */
  112.     blkn = 0; /* index of current DCT block within MCU */
  113.     for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  114.       compptr = cinfo->cur_comp_info[ci];
  115.       /* Don't bother to IDCT an uninteresting component. */
  116.       if (! compptr->component_needed) {
  117. blkn += compptr->MCU_blocks;
  118. continue;
  119.       }
  120.       inverse_DCT = cinfo->idct->inverse_DCT[compptr->component_index];
  121.       useful_width = (MCU_col_num < last_MCU_col) ? compptr->MCU_width
  122.   : compptr->last_col_width;
  123.       output_ptr = output_buf[ci];
  124.       start_col = MCU_col_num * compptr->MCU_sample_width;
  125.       for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
  126. if (coef->MCU_row_num < last_MCU_row ||
  127.     yindex < compptr->last_row_height) {
  128.   output_col = start_col;
  129.   for (xindex = 0; xindex < useful_width; xindex++) {
  130.     (*inverse_DCT) (cinfo, compptr,
  131.     (JCOEFPTR) coef->MCU_buffer[blkn+xindex],
  132.     output_ptr, output_col);
  133.     output_col += compptr->DCT_scaled_size;
  134.   }
  135. }
  136. blkn += compptr->MCU_width;
  137. output_ptr += compptr->DCT_scaled_size;
  138.       }
  139.     }
  140.   }
  141.   /* We finished the row successfully */
  142.   coef->MCU_col_num = 0; /* prepare for next row */
  143.   coef->MCU_row_num++;
  144.   return TRUE;
  145. }
  146. #ifdef D_MULTISCAN_FILES_SUPPORTED
  147. /*
  148.  * Process some data: handle an input pass for a multiple-scan file.
  149.  * We read the equivalent of one fully interleaved MCU row ("iMCU" row)
  150.  * per call, ie, v_samp_factor block rows for each component in the scan.
  151.  * No data is returned; we just stash it in the virtual arrays.
  152.  *
  153.  * Returns TRUE if it completed a row, FALSE if not (suspension).
  154.  * Currently, the suspension case is not supported.
  155.  */
  156. METHODDEF boolean
  157. decompress_read (j_decompress_ptr cinfo, JSAMPIMAGE output_buf)
  158. {
  159.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  160.   JDIMENSION MCU_col_num; /* index of current MCU within row */
  161.   int blkn, ci, xindex, yindex, yoffset, num_MCU_rows;
  162.   JDIMENSION total_width, remaining_rows, start_col;
  163.   JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
  164.   JBLOCKROW buffer_ptr;
  165.   jpeg_component_info *compptr;
  166.   /* Align the virtual buffers for the components used in this scan. */
  167.   for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  168.     compptr = cinfo->cur_comp_info[ci];
  169.     buffer[ci] = (*cinfo->mem->access_virt_barray)
  170.       ((j_common_ptr) cinfo, coef->whole_image[compptr->component_index],
  171.        coef->MCU_row_num * compptr->v_samp_factor, TRUE);
  172.     /* Entropy decoder expects buffer to be zeroed. */
  173.     total_width = (JDIMENSION) jround_up((long) compptr->width_in_blocks,
  174.  (long) compptr->h_samp_factor);
  175.     for (yindex = 0; yindex < compptr->v_samp_factor; yindex++) {
  176.       jzero_far((void FAR *) buffer[ci][yindex], 
  177. (size_t) (total_width * SIZEOF(JBLOCK)));
  178.     }
  179.   }
  180.   /* In an interleaved scan, we process exactly one MCU row.
  181.    * In a noninterleaved scan, we need to process v_samp_factor MCU rows,
  182.    * each of which contains a single block row.
  183.    */
  184.   if (cinfo->comps_in_scan == 1) {
  185.     compptr = cinfo->cur_comp_info[0];
  186.     num_MCU_rows = compptr->v_samp_factor;
  187.     /* but watch out for the bottom of the image */
  188.     remaining_rows = cinfo->MCU_rows_in_scan -
  189.      coef->MCU_row_num * compptr->v_samp_factor;
  190.     if (remaining_rows < (JDIMENSION) num_MCU_rows)
  191.       num_MCU_rows = (int) remaining_rows;
  192.   } else {
  193.     num_MCU_rows = 1;
  194.   }
  195.   /* Loop to process one whole iMCU row */
  196.   for (yoffset = 0; yoffset < num_MCU_rows; yoffset++) {
  197.     for (MCU_col_num = 0; MCU_col_num < cinfo->MCUs_per_row; MCU_col_num++) {
  198.       /* Construct list of pointers to DCT blocks belonging to this MCU */
  199.       blkn = 0; /* index of current DCT block within MCU */
  200.       for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  201. compptr = cinfo->cur_comp_info[ci];
  202. start_col = MCU_col_num * compptr->MCU_width;
  203. for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
  204.   buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
  205.   for (xindex = 0; xindex < compptr->MCU_width; xindex++) {
  206.     coef->MCU_buffer[blkn++] = buffer_ptr++;
  207.   }
  208. }
  209.       }
  210.       /* Try to fetch the MCU. */
  211.       if (! (*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer)) {
  212. ERREXIT(cinfo, JERR_CANT_SUSPEND); /* not supported */
  213.       }
  214.     }
  215.   }
  216.   coef->MCU_row_num++;
  217.   return TRUE;
  218. }
  219. /*
  220.  * Process some data: output from the virtual arrays after reading is done.
  221.  * Always emits one fully interleaved MCU row ("iMCU" row).
  222.  * Always returns TRUE --- suspension is not possible.
  223.  *
  224.  * NB: output_buf contains a plane for each component in image.
  225.  */
  226. METHODDEF boolean
  227. decompress_output (j_decompress_ptr cinfo, JSAMPIMAGE output_buf)
  228. {
  229.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  230.   JDIMENSION last_MCU_row = cinfo->total_iMCU_rows - 1;
  231.   JDIMENSION block_num;
  232.   int ci, block_row, block_rows;
  233.   JBLOCKARRAY buffer;
  234.   JBLOCKROW buffer_ptr;
  235.   JSAMPARRAY output_ptr;
  236.   JDIMENSION output_col;
  237.   jpeg_component_info *compptr;
  238.   inverse_DCT_method_ptr inverse_DCT;
  239.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  240.        ci++, compptr++) {
  241.     /* Don't bother to IDCT an uninteresting component. */
  242.     if (! compptr->component_needed)
  243.       continue;
  244.     /* Align the virtual buffer for this component. */
  245.     buffer = (*cinfo->mem->access_virt_barray)
  246.       ((j_common_ptr) cinfo, coef->whole_image[ci],
  247.        coef->MCU_row_num * compptr->v_samp_factor, FALSE);
  248.     /* Count non-dummy DCT block rows in this iMCU row. */
  249.     if (coef->MCU_row_num < last_MCU_row)
  250.       block_rows = compptr->v_samp_factor;
  251.     else {
  252.       block_rows = (int) (compptr->height_in_blocks % compptr->v_samp_factor);
  253.       if (block_rows == 0) block_rows = compptr->v_samp_factor;
  254.     }
  255.     inverse_DCT = cinfo->idct->inverse_DCT[ci];
  256.     output_ptr = output_buf[ci];
  257.     /* Loop over all DCT blocks to be processed. */
  258.     for (block_row = 0; block_row < block_rows; block_row++) {
  259.       buffer_ptr = buffer[block_row];
  260.       output_col = 0;
  261.       for (block_num = 0; block_num < compptr->width_in_blocks; block_num++) {
  262. (*inverse_DCT) (cinfo, compptr, (JCOEFPTR) buffer_ptr,
  263. output_ptr, output_col);
  264. buffer_ptr++;
  265. output_col += compptr->DCT_scaled_size;
  266.       }
  267.       output_ptr += compptr->DCT_scaled_size;
  268.     }
  269.   }
  270.   coef->MCU_row_num++;
  271.   return TRUE;
  272. }
  273. #endif /* D_MULTISCAN_FILES_SUPPORTED */
  274. /*
  275.  * Initialize coefficient buffer controller.
  276.  */
  277. GLOBAL void
  278. jinit_d_coef_controller (j_decompress_ptr cinfo, boolean need_full_buffer)
  279. {
  280.   my_coef_ptr coef;
  281.   int ci, i;
  282.   jpeg_component_info *compptr;
  283.   JBLOCKROW buffer;
  284.   coef = (my_coef_ptr)
  285.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  286. SIZEOF(my_coef_controller));
  287.   cinfo->coef = (struct jpeg_d_coef_controller *) coef;
  288.   coef->pub.start_pass = start_pass_coef;
  289.   /* Create the coefficient buffer. */
  290.   if (need_full_buffer) {
  291. #ifdef D_MULTISCAN_FILES_SUPPORTED
  292.     /* Allocate a full-image virtual array for each component, */
  293.     /* padded to a multiple of samp_factor DCT blocks in each direction. */
  294.     /* Note memmgr implicitly pads the vertical direction. */
  295.     for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  296.  ci++, compptr++) {
  297.       coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)
  298. ((j_common_ptr) cinfo, JPOOL_IMAGE,
  299.  (JDIMENSION) jround_up((long) compptr->width_in_blocks,
  300. (long) compptr->h_samp_factor),
  301.  compptr->height_in_blocks,
  302.  (JDIMENSION) compptr->v_samp_factor);
  303.     }
  304. #else
  305.     ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  306. #endif
  307.   } else {
  308.     /* We only need a single-MCU buffer. */
  309.     buffer = (JBLOCKROW)
  310.       (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  311.   MAX_BLOCKS_IN_MCU * SIZEOF(JBLOCK));
  312.     for (i = 0; i < MAX_BLOCKS_IN_MCU; i++) {
  313.       coef->MCU_buffer[i] = buffer + i;
  314.     }
  315.     coef->whole_image[0] = NULL; /* flag for no virtual arrays */
  316.   }
  317. }