jdcoefct.c
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:25k
源码类别:

打印编程

开发平台:

Visual C++

  1. /*
  2.  * jdcoefct.c
  3.  *
  4.  * Copyright (C) 1994-1997, 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.  * In buffered-image mode, this controller is the interface between
  13.  * input-oriented processing and output-oriented processing.
  14.  * Also, the input side (only) is used when reading a file for transcoding.
  15.  */
  16. #define JPEG_INTERNALS
  17. #include "jinclude.h"
  18. #include "jpeglib.h"
  19. /* Block smoothing is only applicable for progressive JPEG, so: */
  20. #ifndef D_PROGRESSIVE_SUPPORTED
  21. #undef BLOCK_SMOOTHING_SUPPORTED
  22. #endif
  23. /* Private buffer controller object */
  24. typedef struct {
  25.   struct jpeg_d_coef_controller pub; /* public fields */
  26.   /* These variables keep track of the current location of the input side. */
  27.   /* cinfo->input_iMCU_row is also used for this. */
  28.   JDIMENSION MCU_ctr; /* counts MCUs processed in current row */
  29.   int MCU_vert_offset; /* counts MCU rows within iMCU row */
  30.   int MCU_rows_per_iMCU_row; /* number of such rows needed */
  31.   /* The output side's location is represented by cinfo->output_iMCU_row. */
  32.   /* In single-pass modes, it's sufficient to buffer just one MCU.
  33.    * We allocate a workspace of D_MAX_BLOCKS_IN_MCU coefficient blocks,
  34.    * and let the entropy decoder write into that workspace each time.
  35.    * (On 80x86, the workspace is FAR even though it's not really very big;
  36.    * this is to keep the module interfaces unchanged when a large coefficient
  37.    * buffer is necessary.)
  38.    * In multi-pass modes, this array points to the current MCU's blocks
  39.    * within the virtual arrays; it is used only by the input side.
  40.    */
  41.   JBLOCKROW MCU_buffer[D_MAX_BLOCKS_IN_MCU];
  42. #ifdef D_MULTISCAN_FILES_SUPPORTED
  43.   /* In multi-pass modes, we need a virtual block array for each component. */
  44.   jvirt_barray_ptr whole_image[MAX_COMPONENTS];
  45. #endif
  46. #ifdef BLOCK_SMOOTHING_SUPPORTED
  47.   /* When doing block smoothing, we latch coefficient Al values here */
  48.   int * coef_bits_latch;
  49. #define SAVED_COEFS  6 /* we save coef_bits[0..5] */
  50. #endif
  51. } my_coef_controller;
  52. typedef my_coef_controller * my_coef_ptr;
  53. /* Forward declarations */
  54. METHODDEF(int) decompress_onepass
  55. JPP((j_decompress_ptr cinfo, JSAMPIMAGE output_buf));
  56. #ifdef D_MULTISCAN_FILES_SUPPORTED
  57. METHODDEF(int) decompress_data
  58. JPP((j_decompress_ptr cinfo, JSAMPIMAGE output_buf));
  59. #endif
  60. #ifdef BLOCK_SMOOTHING_SUPPORTED
  61. LOCAL(boolean) smoothing_ok JPP((j_decompress_ptr cinfo));
  62. METHODDEF(int) decompress_smooth_data
  63. JPP((j_decompress_ptr cinfo, JSAMPIMAGE output_buf));
  64. #endif
  65. LOCAL(void)
  66. start_iMCU_row (j_decompress_ptr cinfo)
  67. /* Reset within-iMCU-row counters for a new row (input side) */
  68. {
  69.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  70.   /* In an interleaved scan, an MCU row is the same as an iMCU row.
  71.    * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
  72.    * But at the bottom of the image, process only what's left.
  73.    */
  74.   if (cinfo->comps_in_scan > 1) {
  75.     coef->MCU_rows_per_iMCU_row = 1;
  76.   } else {
  77.     if (cinfo->input_iMCU_row < (cinfo->total_iMCU_rows-1))
  78.       coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
  79.     else
  80.       coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
  81.   }
  82.   coef->MCU_ctr = 0;
  83.   coef->MCU_vert_offset = 0;
  84. }
  85. /*
  86.  * Initialize for an input processing pass.
  87.  */
  88. METHODDEF(void)
  89. //#if defined(__VISAGECPP__)
  90. start_input_pass2 (j_decompress_ptr cinfo)
  91. //#else
  92. //start_input_pass (j_decompress_ptr cinfo)
  93. //#endif
  94. {
  95.   cinfo->input_iMCU_row = 0;
  96.   start_iMCU_row(cinfo);
  97. }
  98. /*
  99.  * Initialize for an output processing pass.
  100.  */
  101. METHODDEF(void)
  102. start_output_pass (j_decompress_ptr cinfo)
  103. {
  104. #ifdef BLOCK_SMOOTHING_SUPPORTED
  105.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  106.   /* If multipass, check to see whether to use block smoothing on this pass */
  107.   if (coef->pub.coef_arrays != NULL) {
  108.     if (cinfo->do_block_smoothing && smoothing_ok(cinfo))
  109.       coef->pub.decompress_data = decompress_smooth_data;
  110.     else
  111.       coef->pub.decompress_data = decompress_data;
  112.   }
  113. #endif
  114.   cinfo->output_iMCU_row = 0;
  115. }
  116. /*
  117.  * Decompress and return some data in the single-pass case.
  118.  * Always attempts to emit one fully interleaved MCU row ("iMCU" row).
  119.  * Input and output must run in lockstep since we have only a one-MCU buffer.
  120.  * Return value is JPEG_ROW_COMPLETED, JPEG_SCAN_COMPLETED, or JPEG_SUSPENDED.
  121.  *
  122.  * NB: output_buf contains a plane for each component in image,
  123.  * which we index according to the component's SOF position.
  124.  */
  125. METHODDEF(int)
  126. decompress_onepass (j_decompress_ptr cinfo, JSAMPIMAGE output_buf)
  127. {
  128.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  129.   JDIMENSION MCU_col_num; /* index of current MCU within row */
  130.   JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
  131.   JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
  132.   int blkn, ci, xindex, yindex, yoffset, useful_width;
  133.   JSAMPARRAY output_ptr;
  134.   JDIMENSION start_col, output_col;
  135.   jpeg_component_info *compptr;
  136.   inverse_DCT_method_ptr inverse_DCT;
  137.   /* Loop to process as much as one whole iMCU row */
  138.   for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
  139.        yoffset++) {
  140.     for (MCU_col_num = coef->MCU_ctr; MCU_col_num <= last_MCU_col;
  141.  MCU_col_num++) {
  142.       /* Try to fetch an MCU.  Entropy decoder expects buffer to be zeroed. */
  143.       jzero_far((void FAR *) coef->MCU_buffer[0],
  144. (size_t) (cinfo->blocks_in_MCU * SIZEOF(JBLOCK)));
  145.       if (! (*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer)) {
  146. /* Suspension forced; update state counters and exit */
  147. coef->MCU_vert_offset = yoffset;
  148. coef->MCU_ctr = MCU_col_num;
  149. return JPEG_SUSPENDED;
  150.       }
  151.       /* Determine where data should go in output_buf and do the IDCT thing.
  152.        * We skip dummy blocks at the right and bottom edges (but blkn gets
  153.        * incremented past them!).  Note the inner loop relies on having
  154.        * allocated the MCU_buffer[] blocks sequentially.
  155.        */
  156.       blkn = 0; /* index of current DCT block within MCU */
  157.       for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  158. compptr = cinfo->cur_comp_info[ci];
  159. /* Don't bother to IDCT an uninteresting component. */
  160. if (! compptr->component_needed) {
  161.   blkn += compptr->MCU_blocks;
  162.   continue;
  163. }
  164. inverse_DCT = cinfo->idct->inverse_DCT[compptr->component_index];
  165. useful_width = (MCU_col_num < last_MCU_col) ? compptr->MCU_width
  166.     : compptr->last_col_width;
  167. output_ptr = output_buf[compptr->component_index] +
  168.   yoffset * compptr->DCT_scaled_size;
  169. start_col = MCU_col_num * compptr->MCU_sample_width;
  170. for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
  171.   if (cinfo->input_iMCU_row < last_iMCU_row ||
  172.       yoffset+yindex < compptr->last_row_height) {
  173.     output_col = start_col;
  174.     for (xindex = 0; xindex < useful_width; xindex++) {
  175.       (*inverse_DCT) (cinfo, compptr,
  176.       (JCOEFPTR) coef->MCU_buffer[blkn+xindex],
  177.       output_ptr, output_col);
  178.       output_col += compptr->DCT_scaled_size;
  179.     }
  180.   }
  181.   blkn += compptr->MCU_width;
  182.   output_ptr += compptr->DCT_scaled_size;
  183. }
  184.       }
  185.     }
  186.     /* Completed an MCU row, but perhaps not an iMCU row */
  187.     coef->MCU_ctr = 0;
  188.   }
  189.   /* Completed the iMCU row, advance counters for next one */
  190.   cinfo->output_iMCU_row++;
  191.   if (++(cinfo->input_iMCU_row) < cinfo->total_iMCU_rows) {
  192.     start_iMCU_row(cinfo);
  193.     return JPEG_ROW_COMPLETED;
  194.   }
  195.   /* Completed the scan */
  196.   (*cinfo->inputctl->finish_input_pass) (cinfo);
  197.   return JPEG_SCAN_COMPLETED;
  198. }
  199. /*
  200.  * Dummy consume-input routine for single-pass operation.
  201.  */
  202. METHODDEF(int)
  203. dummy_consume_data (j_decompress_ptr cinfo)
  204. {
  205.   return JPEG_SUSPENDED; /* Always indicate nothing was done */
  206. }
  207. #ifdef D_MULTISCAN_FILES_SUPPORTED
  208. /*
  209.  * Consume input data and store it in the full-image coefficient buffer.
  210.  * We read as much as one fully interleaved MCU row ("iMCU" row) per call,
  211.  * ie, v_samp_factor block rows for each component in the scan.
  212.  * Return value is JPEG_ROW_COMPLETED, JPEG_SCAN_COMPLETED, or JPEG_SUSPENDED.
  213.  */
  214. METHODDEF(int)
  215. consume_data (j_decompress_ptr cinfo)
  216. {
  217.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  218.   JDIMENSION MCU_col_num; /* index of current MCU within row */
  219.   int blkn, ci, xindex, yindex, yoffset;
  220.   JDIMENSION start_col;
  221.   JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
  222.   JBLOCKROW buffer_ptr;
  223.   jpeg_component_info *compptr;
  224.   /* Align the virtual buffers for the components used in this scan. */
  225.   for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  226.     compptr = cinfo->cur_comp_info[ci];
  227.     buffer[ci] = (*cinfo->mem->access_virt_barray)
  228.       ((j_common_ptr) cinfo, coef->whole_image[compptr->component_index],
  229.        cinfo->input_iMCU_row * compptr->v_samp_factor,
  230.        (JDIMENSION) compptr->v_samp_factor, TRUE);
  231.     /* Note: entropy decoder expects buffer to be zeroed,
  232.      * but this is handled automatically by the memory manager
  233.      * because we requested a pre-zeroed array.
  234.      */
  235.   }
  236.   /* Loop to process one whole iMCU row */
  237.   for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
  238.        yoffset++) {
  239.     for (MCU_col_num = coef->MCU_ctr; MCU_col_num < cinfo->MCUs_per_row;
  240.  MCU_col_num++) {
  241.       /* Construct list of pointers to DCT blocks belonging to this MCU */
  242.       blkn = 0; /* index of current DCT block within MCU */
  243.       for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  244. compptr = cinfo->cur_comp_info[ci];
  245. start_col = MCU_col_num * compptr->MCU_width;
  246. for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
  247.   buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
  248.   for (xindex = 0; xindex < compptr->MCU_width; xindex++) {
  249.     coef->MCU_buffer[blkn++] = buffer_ptr++;
  250.   }
  251. }
  252.       }
  253.       /* Try to fetch the MCU. */
  254.       if (! (*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer)) {
  255. /* Suspension forced; update state counters and exit */
  256. coef->MCU_vert_offset = yoffset;
  257. coef->MCU_ctr = MCU_col_num;
  258. return JPEG_SUSPENDED;
  259.       }
  260.     }
  261.     /* Completed an MCU row, but perhaps not an iMCU row */
  262.     coef->MCU_ctr = 0;
  263.   }
  264.   /* Completed the iMCU row, advance counters for next one */
  265.   if (++(cinfo->input_iMCU_row) < cinfo->total_iMCU_rows) {
  266.     start_iMCU_row(cinfo);
  267.     return JPEG_ROW_COMPLETED;
  268.   }
  269.   /* Completed the scan */
  270.   (*cinfo->inputctl->finish_input_pass) (cinfo);
  271.   return JPEG_SCAN_COMPLETED;
  272. }
  273. /*
  274.  * Decompress and return some data in the multi-pass case.
  275.  * Always attempts to emit one fully interleaved MCU row ("iMCU" row).
  276.  * Return value is JPEG_ROW_COMPLETED, JPEG_SCAN_COMPLETED, or JPEG_SUSPENDED.
  277.  *
  278.  * NB: output_buf contains a plane for each component in image.
  279.  */
  280. METHODDEF(int)
  281. decompress_data (j_decompress_ptr cinfo, JSAMPIMAGE output_buf)
  282. {
  283.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  284.   JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
  285.   JDIMENSION block_num;
  286.   int ci, block_row, block_rows;
  287.   JBLOCKARRAY buffer;
  288.   JBLOCKROW buffer_ptr;
  289.   JSAMPARRAY output_ptr;
  290.   JDIMENSION output_col;
  291.   jpeg_component_info *compptr;
  292.   inverse_DCT_method_ptr inverse_DCT;
  293.   /* Force some input to be done if we are getting ahead of the input. */
  294.   while (cinfo->input_scan_number < cinfo->output_scan_number ||
  295.  (cinfo->input_scan_number == cinfo->output_scan_number &&
  296.   cinfo->input_iMCU_row <= cinfo->output_iMCU_row)) {
  297.     if ((*cinfo->inputctl->consume_input)(cinfo) == JPEG_SUSPENDED)
  298.       return JPEG_SUSPENDED;
  299.   }
  300.   /* OK, output from the virtual arrays. */
  301.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  302.        ci++, compptr++) {
  303.     /* Don't bother to IDCT an uninteresting component. */
  304.     if (! compptr->component_needed)
  305.       continue;
  306.     /* Align the virtual buffer for this component. */
  307.     buffer = (*cinfo->mem->access_virt_barray)
  308.       ((j_common_ptr) cinfo, coef->whole_image[ci],
  309.        cinfo->output_iMCU_row * compptr->v_samp_factor,
  310.        (JDIMENSION) compptr->v_samp_factor, FALSE);
  311.     /* Count non-dummy DCT block rows in this iMCU row. */
  312.     if (cinfo->output_iMCU_row < last_iMCU_row)
  313.       block_rows = compptr->v_samp_factor;
  314.     else {
  315.       /* NB: can't use last_row_height here; it is input-side-dependent! */
  316.       block_rows = (int) (compptr->height_in_blocks % compptr->v_samp_factor);
  317.       if (block_rows == 0) block_rows = compptr->v_samp_factor;
  318.     }
  319.     inverse_DCT = cinfo->idct->inverse_DCT[ci];
  320.     output_ptr = output_buf[ci];
  321.     /* Loop over all DCT blocks to be processed. */
  322.     for (block_row = 0; block_row < block_rows; block_row++) {
  323.       buffer_ptr = buffer[block_row];
  324.       output_col = 0;
  325.       for (block_num = 0; block_num < compptr->width_in_blocks; block_num++) {
  326. (*inverse_DCT) (cinfo, compptr, (JCOEFPTR) buffer_ptr,
  327. output_ptr, output_col);
  328. buffer_ptr++;
  329. output_col += compptr->DCT_scaled_size;
  330.       }
  331.       output_ptr += compptr->DCT_scaled_size;
  332.     }
  333.   }
  334.   if (++(cinfo->output_iMCU_row) < cinfo->total_iMCU_rows)
  335.     return JPEG_ROW_COMPLETED;
  336.   return JPEG_SCAN_COMPLETED;
  337. }
  338. #endif /* D_MULTISCAN_FILES_SUPPORTED */
  339. #ifdef BLOCK_SMOOTHING_SUPPORTED
  340. /*
  341.  * This code applies interblock smoothing as described by section K.8
  342.  * of the JPEG standard: the first 5 AC coefficients are estimated from
  343.  * the DC values of a DCT block and its 8 neighboring blocks.
  344.  * We apply smoothing only for progressive JPEG decoding, and only if
  345.  * the coefficients it can estimate are not yet known to full precision.
  346.  */
  347. /* Natural-order array positions of the first 5 zigzag-order coefficients */
  348. #define Q01_POS  1
  349. #define Q10_POS  8
  350. #define Q20_POS  16
  351. #define Q11_POS  9
  352. #define Q02_POS  2
  353. /*
  354.  * Determine whether block smoothing is applicable and safe.
  355.  * We also latch the current states of the coef_bits[] entries for the
  356.  * AC coefficients; otherwise, if the input side of the decompressor
  357.  * advances into a new scan, we might think the coefficients are known
  358.  * more accurately than they really are.
  359.  */
  360. LOCAL(boolean)
  361. smoothing_ok (j_decompress_ptr cinfo)
  362. {
  363.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  364.   boolean smoothing_useful = FALSE;
  365.   int ci, coefi;
  366.   jpeg_component_info *compptr;
  367.   JQUANT_TBL * qtable;
  368.   int * coef_bits;
  369.   int * coef_bits_latch;
  370.   if (! cinfo->progressive_mode || cinfo->coef_bits == NULL)
  371.     return FALSE;
  372.   /* Allocate latch area if not already done */
  373.   if (coef->coef_bits_latch == NULL)
  374.     coef->coef_bits_latch = (int *)
  375.       (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  376.   cinfo->num_components *
  377.   (SAVED_COEFS * SIZEOF(int)));
  378.   coef_bits_latch = coef->coef_bits_latch;
  379.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  380.        ci++, compptr++) {
  381.     /* All components' quantization values must already be latched. */
  382.     if ((qtable = compptr->quant_table) == NULL)
  383.       return FALSE;
  384.     /* Verify DC & first 5 AC quantizers are nonzero to avoid zero-divide. */
  385.     if (qtable->quantval[0] == 0 ||
  386. qtable->quantval[Q01_POS] == 0 ||
  387. qtable->quantval[Q10_POS] == 0 ||
  388. qtable->quantval[Q20_POS] == 0 ||
  389. qtable->quantval[Q11_POS] == 0 ||
  390. qtable->quantval[Q02_POS] == 0)
  391.       return FALSE;
  392.     /* DC values must be at least partly known for all components. */
  393.     coef_bits = cinfo->coef_bits[ci];
  394.     if (coef_bits[0] < 0)
  395.       return FALSE;
  396.     /* Block smoothing is helpful if some AC coefficients remain inaccurate. */
  397.     for (coefi = 1; coefi <= 5; coefi++) {
  398.       coef_bits_latch[coefi] = coef_bits[coefi];
  399.       if (coef_bits[coefi] != 0)
  400. smoothing_useful = TRUE;
  401.     }
  402.     coef_bits_latch += SAVED_COEFS;
  403.   }
  404.   return smoothing_useful;
  405. }
  406. /*
  407.  * Variant of decompress_data for use when doing block smoothing.
  408.  */
  409. METHODDEF(int)
  410. decompress_smooth_data (j_decompress_ptr cinfo, JSAMPIMAGE output_buf)
  411. {
  412.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  413.   JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
  414.   JDIMENSION block_num, last_block_column;
  415.   int ci, block_row, block_rows, access_rows;
  416.   JBLOCKARRAY buffer;
  417.   JBLOCKROW buffer_ptr, prev_block_row, next_block_row;
  418.   JSAMPARRAY output_ptr;
  419.   JDIMENSION output_col;
  420.   jpeg_component_info *compptr;
  421.   inverse_DCT_method_ptr inverse_DCT;
  422.   boolean first_row, last_row;
  423.   JBLOCK workspace;
  424.   int *coef_bits;
  425.   JQUANT_TBL *quanttbl;
  426.   JPEG_INT32 Q00,Q01,Q02,Q10,Q11,Q20, num;
  427.   int DC1,DC2,DC3,DC4,DC5,DC6,DC7,DC8,DC9;
  428.   int Al, pred;
  429.   /* Force some input to be done if we are getting ahead of the input. */
  430.   while (cinfo->input_scan_number <= cinfo->output_scan_number &&
  431.  ! cinfo->inputctl->eoi_reached) {
  432.     if (cinfo->input_scan_number == cinfo->output_scan_number) {
  433.       /* If input is working on current scan, we ordinarily want it to
  434.        * have completed the current row.  But if input scan is DC,
  435.        * we want it to keep one row ahead so that next block row's DC
  436.        * values are up to date.
  437.        */
  438.       JDIMENSION delta = (cinfo->Ss == 0) ? 1 : 0;
  439.       if (cinfo->input_iMCU_row > cinfo->output_iMCU_row+delta)
  440. break;
  441.     }
  442.     if ((*cinfo->inputctl->consume_input)(cinfo) == JPEG_SUSPENDED)
  443.       return JPEG_SUSPENDED;
  444.   }
  445.   /* OK, output from the virtual arrays. */
  446.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  447.        ci++, compptr++) {
  448.     /* Don't bother to IDCT an uninteresting component. */
  449.     if (! compptr->component_needed)
  450.       continue;
  451.     /* Count non-dummy DCT block rows in this iMCU row. */
  452.     if (cinfo->output_iMCU_row < last_iMCU_row) {
  453.       block_rows = compptr->v_samp_factor;
  454.       access_rows = block_rows * 2; /* this and next iMCU row */
  455.       last_row = FALSE;
  456.     } else {
  457.       /* NB: can't use last_row_height here; it is input-side-dependent! */
  458.       block_rows = (int) (compptr->height_in_blocks % compptr->v_samp_factor);
  459.       if (block_rows == 0) block_rows = compptr->v_samp_factor;
  460.       access_rows = block_rows; /* this iMCU row only */
  461.       last_row = TRUE;
  462.     }
  463.     /* Align the virtual buffer for this component. */
  464.     if (cinfo->output_iMCU_row > 0) {
  465.       access_rows += compptr->v_samp_factor; /* prior iMCU row too */
  466.       buffer = (*cinfo->mem->access_virt_barray)
  467. ((j_common_ptr) cinfo, coef->whole_image[ci],
  468.  (cinfo->output_iMCU_row - 1) * compptr->v_samp_factor,
  469.  (JDIMENSION) access_rows, FALSE);
  470.       buffer += compptr->v_samp_factor; /* point to current iMCU row */
  471.       first_row = FALSE;
  472.     } else {
  473.       buffer = (*cinfo->mem->access_virt_barray)
  474. ((j_common_ptr) cinfo, coef->whole_image[ci],
  475.  (JDIMENSION) 0, (JDIMENSION) access_rows, FALSE);
  476.       first_row = TRUE;
  477.     }
  478.     /* Fetch component-dependent info */
  479.     coef_bits = coef->coef_bits_latch + (ci * SAVED_COEFS);
  480.     quanttbl = compptr->quant_table;
  481.     Q00 = quanttbl->quantval[0];
  482.     Q01 = quanttbl->quantval[Q01_POS];
  483.     Q10 = quanttbl->quantval[Q10_POS];
  484.     Q20 = quanttbl->quantval[Q20_POS];
  485.     Q11 = quanttbl->quantval[Q11_POS];
  486.     Q02 = quanttbl->quantval[Q02_POS];
  487.     inverse_DCT = cinfo->idct->inverse_DCT[ci];
  488.     output_ptr = output_buf[ci];
  489.     /* Loop over all DCT blocks to be processed. */
  490.     for (block_row = 0; block_row < block_rows; block_row++) {
  491.       buffer_ptr = buffer[block_row];
  492.       if (first_row && block_row == 0)
  493. prev_block_row = buffer_ptr;
  494.       else
  495. prev_block_row = buffer[block_row-1];
  496.       if (last_row && block_row == block_rows-1)
  497. next_block_row = buffer_ptr;
  498.       else
  499. next_block_row = buffer[block_row+1];
  500.       /* We fetch the surrounding DC values using a sliding-register approach.
  501.        * Initialize all nine here so as to do the right thing on narrow pics.
  502.        */
  503.       DC1 = DC2 = DC3 = (int) prev_block_row[0][0];
  504.       DC4 = DC5 = DC6 = (int) buffer_ptr[0][0];
  505.       DC7 = DC8 = DC9 = (int) next_block_row[0][0];
  506.       output_col = 0;
  507.       last_block_column = compptr->width_in_blocks - 1;
  508.       for (block_num = 0; block_num <= last_block_column; block_num++) {
  509. /* Fetch current DCT block into workspace so we can modify it. */
  510. jcopy_block_row(buffer_ptr, (JBLOCKROW) workspace, (JDIMENSION) 1);
  511. /* Update DC values */
  512. if (block_num < last_block_column) {
  513.   DC3 = (int) prev_block_row[1][0];
  514.   DC6 = (int) buffer_ptr[1][0];
  515.   DC9 = (int) next_block_row[1][0];
  516. }
  517. /* Compute coefficient estimates per K.8.
  518.  * An estimate is applied only if coefficient is still zero,
  519.  * and is not known to be fully accurate.
  520.  */
  521. /* AC01 */
  522. if ((Al=coef_bits[1]) != 0 && workspace[1] == 0) {
  523.   num = 36 * Q00 * (DC4 - DC6);
  524.   if (num >= 0) {
  525.     pred = (int) (((Q01<<7) + num) / (Q01<<8));
  526.     if (Al > 0 && pred >= (1<<Al))
  527.       pred = (1<<Al)-1;
  528.   } else {
  529.     pred = (int) (((Q01<<7) - num) / (Q01<<8));
  530.     if (Al > 0 && pred >= (1<<Al))
  531.       pred = (1<<Al)-1;
  532.     pred = -pred;
  533.   }
  534.   workspace[1] = (JCOEF) pred;
  535. }
  536. /* AC10 */
  537. if ((Al=coef_bits[2]) != 0 && workspace[8] == 0) {
  538.   num = 36 * Q00 * (DC2 - DC8);
  539.   if (num >= 0) {
  540.     pred = (int) (((Q10<<7) + num) / (Q10<<8));
  541.     if (Al > 0 && pred >= (1<<Al))
  542.       pred = (1<<Al)-1;
  543.   } else {
  544.     pred = (int) (((Q10<<7) - num) / (Q10<<8));
  545.     if (Al > 0 && pred >= (1<<Al))
  546.       pred = (1<<Al)-1;
  547.     pred = -pred;
  548.   }
  549.   workspace[8] = (JCOEF) pred;
  550. }
  551. /* AC20 */
  552. if ((Al=coef_bits[3]) != 0 && workspace[16] == 0) {
  553.   num = 9 * Q00 * (DC2 + DC8 - 2*DC5);
  554.   if (num >= 0) {
  555.     pred = (int) (((Q20<<7) + num) / (Q20<<8));
  556.     if (Al > 0 && pred >= (1<<Al))
  557.       pred = (1<<Al)-1;
  558.   } else {
  559.     pred = (int) (((Q20<<7) - num) / (Q20<<8));
  560.     if (Al > 0 && pred >= (1<<Al))
  561.       pred = (1<<Al)-1;
  562.     pred = -pred;
  563.   }
  564.   workspace[16] = (JCOEF) pred;
  565. }
  566. /* AC11 */
  567. if ((Al=coef_bits[4]) != 0 && workspace[9] == 0) {
  568.   num = 5 * Q00 * (DC1 - DC3 - DC7 + DC9);
  569.   if (num >= 0) {
  570.     pred = (int) (((Q11<<7) + num) / (Q11<<8));
  571.     if (Al > 0 && pred >= (1<<Al))
  572.       pred = (1<<Al)-1;
  573.   } else {
  574.     pred = (int) (((Q11<<7) - num) / (Q11<<8));
  575.     if (Al > 0 && pred >= (1<<Al))
  576.       pred = (1<<Al)-1;
  577.     pred = -pred;
  578.   }
  579.   workspace[9] = (JCOEF) pred;
  580. }
  581. /* AC02 */
  582. if ((Al=coef_bits[5]) != 0 && workspace[2] == 0) {
  583.   num = 9 * Q00 * (DC4 + DC6 - 2*DC5);
  584.   if (num >= 0) {
  585.     pred = (int) (((Q02<<7) + num) / (Q02<<8));
  586.     if (Al > 0 && pred >= (1<<Al))
  587.       pred = (1<<Al)-1;
  588.   } else {
  589.     pred = (int) (((Q02<<7) - num) / (Q02<<8));
  590.     if (Al > 0 && pred >= (1<<Al))
  591.       pred = (1<<Al)-1;
  592.     pred = -pred;
  593.   }
  594.   workspace[2] = (JCOEF) pred;
  595. }
  596. /* OK, do the IDCT */
  597. (*inverse_DCT) (cinfo, compptr, (JCOEFPTR) workspace,
  598. output_ptr, output_col);
  599. /* Advance for next column */
  600. DC1 = DC2; DC2 = DC3;
  601. DC4 = DC5; DC5 = DC6;
  602. DC7 = DC8; DC8 = DC9;
  603. buffer_ptr++, prev_block_row++, next_block_row++;
  604. output_col += compptr->DCT_scaled_size;
  605.       }
  606.       output_ptr += compptr->DCT_scaled_size;
  607.     }
  608.   }
  609.   if (++(cinfo->output_iMCU_row) < cinfo->total_iMCU_rows)
  610.     return JPEG_ROW_COMPLETED;
  611.   return JPEG_SCAN_COMPLETED;
  612. }
  613. #endif /* BLOCK_SMOOTHING_SUPPORTED */
  614. /*
  615.  * Initialize coefficient buffer controller.
  616.  */
  617. GLOBAL(void)
  618. jinit_d_coef_controller (j_decompress_ptr cinfo, boolean need_full_buffer)
  619. {
  620.   my_coef_ptr coef;
  621.   coef = (my_coef_ptr)
  622.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  623. SIZEOF(my_coef_controller));
  624.   cinfo->coef = (struct jpeg_d_coef_controller *) coef;
  625. //#if defined(__VISAGECPP__)
  626.   coef->pub.start_input_pass = start_input_pass2;
  627. //#else
  628. //  coef->pub.start_input_pass = start_input_pass;
  629. //#endif
  630.   coef->pub.start_output_pass = start_output_pass;
  631. #ifdef BLOCK_SMOOTHING_SUPPORTED
  632.   coef->coef_bits_latch = NULL;
  633. #endif
  634.   /* Create the coefficient buffer. */
  635.   if (need_full_buffer) {
  636. #ifdef D_MULTISCAN_FILES_SUPPORTED
  637.     /* Allocate a full-image virtual array for each component, */
  638.     /* padded to a multiple of samp_factor DCT blocks in each direction. */
  639.     /* Note we ask for a pre-zeroed array. */
  640.     int ci, access_rows;
  641.     jpeg_component_info *compptr;
  642.     for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  643.  ci++, compptr++) {
  644.       access_rows = compptr->v_samp_factor;
  645. #ifdef BLOCK_SMOOTHING_SUPPORTED
  646.       /* If block smoothing could be used, need a bigger window */
  647.       if (cinfo->progressive_mode)
  648. access_rows *= 3;
  649. #endif
  650.       coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)
  651. ((j_common_ptr) cinfo, JPOOL_IMAGE, TRUE,
  652.  (JDIMENSION) jround_up((long) compptr->width_in_blocks,
  653. (long) compptr->h_samp_factor),
  654.  (JDIMENSION) jround_up((long) compptr->height_in_blocks,
  655. (long) compptr->v_samp_factor),
  656.  (JDIMENSION) access_rows);
  657.     }
  658.     coef->pub.consume_data = consume_data;
  659.     coef->pub.decompress_data = decompress_data;
  660.     coef->pub.coef_arrays = coef->whole_image; /* link to virtual arrays */
  661. #else
  662.     ERREXIT(cinfo, JERR_NOT_COMPILED);
  663. #endif
  664.   } else {
  665.     /* We only need a single-MCU buffer. */
  666.     JBLOCKROW buffer;
  667.     int i;
  668.     buffer = (JBLOCKROW)
  669.       (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  670.   D_MAX_BLOCKS_IN_MCU * SIZEOF(JBLOCK));
  671.     for (i = 0; i < D_MAX_BLOCKS_IN_MCU; i++) {
  672.       coef->MCU_buffer[i] = buffer + i;
  673.     }
  674.     coef->pub.consume_data = dummy_consume_data;
  675.     coef->pub.decompress_data = decompress_onepass;
  676.     coef->pub.coef_arrays = NULL; /* flag for no virtual arrays */
  677.   }
  678. }