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

打印编程

开发平台:

Visual C++

  1. /*
  2.  * jdmainct.c
  3.  *
  4.  * Copyright (C) 1994-1996, 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 main buffer controller for decompression.
  9.  * The main buffer lies between the JPEG decompressor proper and the
  10.  * post-processor; it holds downsampled data in the JPEG colorspace.
  11.  *
  12.  * Note that this code is bypassed in raw-data mode, since the application
  13.  * supplies the equivalent of the main buffer in that case.
  14.  */
  15. /* suppress the warnings about using main for the variable names */
  16. #define main jpegMain
  17. #define JPEG_INTERNALS
  18. #include "jinclude.h"
  19. #include "jpeglib.h"
  20. /*
  21.  * In the current system design, the main buffer need never be a full-image
  22.  * buffer; any full-height buffers will be found inside the coefficient or
  23.  * postprocessing controllers.  Nonetheless, the main controller is not
  24.  * trivial.  Its responsibility is to provide context rows for upsampling/
  25.  * rescaling, and doing this in an efficient fashion is a bit tricky.
  26.  *
  27.  * Postprocessor input data is counted in "row groups".  A row group
  28.  * is defined to be (v_samp_factor * DCT_scaled_size / min_DCT_scaled_size)
  29.  * sample rows of each component.  (We require DCT_scaled_size values to be
  30.  * chosen such that these numbers are integers.  In practice DCT_scaled_size
  31.  * values will likely be powers of two, so we actually have the stronger
  32.  * condition that DCT_scaled_size / min_DCT_scaled_size is an integer.)
  33.  * Upsampling will typically produce max_v_samp_factor pixel rows from each
  34.  * row group (times any additional scale factor that the upsampler is
  35.  * applying).
  36.  *
  37.  * The coefficient controller will deliver data to us one iMCU row at a time;
  38.  * each iMCU row contains v_samp_factor * DCT_scaled_size sample rows, or
  39.  * exactly min_DCT_scaled_size row groups.  (This amount of data corresponds
  40.  * to one row of MCUs when the image is fully interleaved.)  Note that the
  41.  * number of sample rows varies across components, but the number of row
  42.  * groups does not.  Some garbage sample rows may be included in the last iMCU
  43.  * row at the bottom of the image.
  44.  *
  45.  * Depending on the vertical scaling algorithm used, the upsampler may need
  46.  * access to the sample row(s) above and below its current input row group.
  47.  * The upsampler is required to set need_context_rows TRUE at global selection
  48.  * time if so.  When need_context_rows is FALSE, this controller can simply
  49.  * obtain one iMCU row at a time from the coefficient controller and dole it
  50.  * out as row groups to the postprocessor.
  51.  *
  52.  * When need_context_rows is TRUE, this controller guarantees that the buffer
  53.  * passed to postprocessing contains at least one row group's worth of samples
  54.  * above and below the row group(s) being processed.  Note that the context
  55.  * rows "above" the first passed row group appear at negative row offsets in
  56.  * the passed buffer.  At the top and bottom of the image, the required
  57.  * context rows are manufactured by duplicating the first or last real sample
  58.  * row; this avoids having special cases in the upsampling inner loops.
  59.  *
  60.  * The amount of context is fixed at one row group just because that's a
  61.  * convenient number for this controller to work with.  The existing
  62.  * upsamplers really only need one sample row of context.  An upsampler
  63.  * supporting arbitrary output rescaling might wish for more than one row
  64.  * group of context when shrinking the image; tough, we don't handle that.
  65.  * (This is justified by the assumption that downsizing will be handled mostly
  66.  * by adjusting the DCT_scaled_size values, so that the actual scale factor at
  67.  * the upsample step needn't be much less than one.)
  68.  *
  69.  * To provide the desired context, we have to retain the last two row groups
  70.  * of one iMCU row while reading in the next iMCU row.  (The last row group
  71.  * can't be processed until we have another row group for its below-context,
  72.  * and so we have to save the next-to-last group too for its above-context.)
  73.  * We could do this most simply by copying data around in our buffer, but
  74.  * that'd be very slow.  We can avoid copying any data by creating a rather
  75.  * strange pointer structure.  Here's how it works.  We allocate a workspace
  76.  * consisting of M+2 row groups (where M = min_DCT_scaled_size is the number
  77.  * of row groups per iMCU row).  We create two sets of redundant pointers to
  78.  * the workspace.  Labeling the physical row groups 0 to M+1, the synthesized
  79.  * pointer lists look like this:
  80.  *                   M+1                          M-1
  81.  * master pointer --> 0         master pointer --> 0
  82.  *                    1                            1
  83.  *                   ...                          ...
  84.  *                   M-3                          M-3
  85.  *                   M-2                           M
  86.  *                   M-1                          M+1
  87.  *                    M                           M-2
  88.  *                   M+1                          M-1
  89.  *                    0                            0
  90.  * We read alternate iMCU rows using each master pointer; thus the last two
  91.  * row groups of the previous iMCU row remain un-overwritten in the workspace.
  92.  * The pointer lists are set up so that the required context rows appear to
  93.  * be adjacent to the proper places when we pass the pointer lists to the
  94.  * upsampler.
  95.  *
  96.  * The above pictures describe the normal state of the pointer lists.
  97.  * At top and bottom of the image, we diddle the pointer lists to duplicate
  98.  * the first or last sample row as necessary (this is cheaper than copying
  99.  * sample rows around).
  100.  *
  101.  * This scheme breaks down if M < 2, ie, min_DCT_scaled_size is 1.  In that
  102.  * situation each iMCU row provides only one row group so the buffering logic
  103.  * must be different (eg, we must read two iMCU rows before we can emit the
  104.  * first row group).  For now, we simply do not support providing context
  105.  * rows when min_DCT_scaled_size is 1.  That combination seems unlikely to
  106.  * be worth providing --- if someone wants a 1/8th-size preview, they probably
  107.  * want it quick and dirty, so a context-free upsampler is sufficient.
  108.  */
  109. /* Private buffer controller object */
  110. typedef struct {
  111.   struct jpeg_d_main_controller pub; /* public fields */
  112.   /* Pointer to allocated workspace (M or M+2 row groups). */
  113.   JSAMPARRAY buffer[MAX_COMPONENTS];
  114.   boolean buffer_full; /* Have we gotten an iMCU row from decoder? */
  115.   JDIMENSION rowgroup_ctr; /* counts row groups output to postprocessor */
  116.   /* Remaining fields are only used in the context case. */
  117.   /* These are the master pointers to the funny-order pointer lists. */
  118.   JSAMPIMAGE xbuffer[2]; /* pointers to weird pointer lists */
  119.   int whichptr; /* indicates which pointer set is now in use */
  120.   int context_state; /* process_data state machine status */
  121.   JDIMENSION rowgroups_avail; /* row groups available to postprocessor */
  122.   JDIMENSION iMCU_row_ctr; /* counts iMCU rows to detect image top/bot */
  123. } my_main_controller;
  124. typedef my_main_controller * my_main_ptr;
  125. /* context_state values: */
  126. #define CTX_PREPARE_FOR_IMCU 0 /* need to prepare for MCU row */
  127. #define CTX_PROCESS_IMCU 1 /* feeding iMCU to postprocessor */
  128. #define CTX_POSTPONED_ROW 2 /* feeding postponed row group */
  129. #if defined(__VISAGECPP__)
  130. /* Visual Age fixups for multiple declarations */
  131. #  define start_pass_main   start_pass_main2 /* already in jcmaint.c */
  132. #  define process_data_simple_main process_data_simple_main2 /* already in jcmaint.c */
  133. #endif
  134. /* Forward declarations */
  135. METHODDEF(void) process_data_simple_main
  136. JPP((j_decompress_ptr cinfo, JSAMPARRAY output_buf,
  137.      JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail));
  138. METHODDEF(void) process_data_context_main
  139. JPP((j_decompress_ptr cinfo, JSAMPARRAY output_buf,
  140.      JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail));
  141. #ifdef QUANT_2PASS_SUPPORTED
  142. METHODDEF(void) process_data_crank_post
  143. JPP((j_decompress_ptr cinfo, JSAMPARRAY output_buf,
  144.      JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail));
  145. #endif
  146. LOCAL(void)
  147. alloc_funny_pointers (j_decompress_ptr cinfo)
  148. /* Allocate space for the funny pointer lists.
  149.  * This is done only once, not once per pass.
  150.  */
  151. {
  152.   my_main_ptr main = (my_main_ptr) cinfo->main;
  153.   int ci, rgroup;
  154.   int M = cinfo->min_DCT_scaled_size;
  155.   jpeg_component_info *compptr;
  156.   JSAMPARRAY xbuf;
  157.   /* Get top-level space for component array pointers.
  158.    * We alloc both arrays with one call to save a few cycles.
  159.    */
  160.   main->xbuffer[0] = (JSAMPIMAGE)
  161.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  162. cinfo->num_components * 2 * SIZEOF(JSAMPARRAY));
  163.   main->xbuffer[1] = main->xbuffer[0] + cinfo->num_components;
  164.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  165.        ci++, compptr++) {
  166.     rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) /
  167.       cinfo->min_DCT_scaled_size; /* height of a row group of component */
  168.     /* Get space for pointer lists --- M+4 row groups in each list.
  169.      * We alloc both pointer lists with one call to save a few cycles.
  170.      */
  171.     xbuf = (JSAMPARRAY)
  172.       (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  173.   2 * (rgroup * (M + 4)) * SIZEOF(JSAMPROW));
  174.     xbuf += rgroup; /* want one row group at negative offsets */
  175.     main->xbuffer[0][ci] = xbuf;
  176.     xbuf += rgroup * (M + 4);
  177.     main->xbuffer[1][ci] = xbuf;
  178.   }
  179. }
  180. LOCAL(void)
  181. make_funny_pointers (j_decompress_ptr cinfo)
  182. /* Create the funny pointer lists discussed in the comments above.
  183.  * The actual workspace is already allocated (in main->buffer),
  184.  * and the space for the pointer lists is allocated too.
  185.  * This routine just fills in the curiously ordered lists.
  186.  * This will be repeated at the beginning of each pass.
  187.  */
  188. {
  189.   my_main_ptr main = (my_main_ptr) cinfo->main;
  190.   int ci, i, rgroup;
  191.   int M = cinfo->min_DCT_scaled_size;
  192.   jpeg_component_info *compptr;
  193.   JSAMPARRAY buf, xbuf0, xbuf1;
  194.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  195.        ci++, compptr++) {
  196.     rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) /
  197.       cinfo->min_DCT_scaled_size; /* height of a row group of component */
  198.     xbuf0 = main->xbuffer[0][ci];
  199.     xbuf1 = main->xbuffer[1][ci];
  200.     /* First copy the workspace pointers as-is */
  201.     buf = main->buffer[ci];
  202.     for (i = 0; i < rgroup * (M + 2); i++) {
  203.       xbuf0[i] = xbuf1[i] = buf[i];
  204.     }
  205.     /* In the second list, put the last four row groups in swapped order */
  206.     for (i = 0; i < rgroup * 2; i++) {
  207.       xbuf1[rgroup*(M-2) + i] = buf[rgroup*M + i];
  208.       xbuf1[rgroup*M + i] = buf[rgroup*(M-2) + i];
  209.     }
  210.     /* The wraparound pointers at top and bottom will be filled later
  211.      * (see set_wraparound_pointers, below).  Initially we want the "above"
  212.      * pointers to duplicate the first actual data line.  This only needs
  213.      * to happen in xbuffer[0].
  214.      */
  215.     for (i = 0; i < rgroup; i++) {
  216.       xbuf0[i - rgroup] = xbuf0[0];
  217.     }
  218.   }
  219. }
  220. LOCAL(void)
  221. set_wraparound_pointers (j_decompress_ptr cinfo)
  222. /* Set up the "wraparound" pointers at top and bottom of the pointer lists.
  223.  * This changes the pointer list state from top-of-image to the normal state.
  224.  */
  225. {
  226.   my_main_ptr main = (my_main_ptr) cinfo->main;
  227.   int ci, i, rgroup;
  228.   int M = cinfo->min_DCT_scaled_size;
  229.   jpeg_component_info *compptr;
  230.   JSAMPARRAY xbuf0, xbuf1;
  231.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  232.        ci++, compptr++) {
  233.     rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) /
  234.       cinfo->min_DCT_scaled_size; /* height of a row group of component */
  235.     xbuf0 = main->xbuffer[0][ci];
  236.     xbuf1 = main->xbuffer[1][ci];
  237.     for (i = 0; i < rgroup; i++) {
  238.       xbuf0[i - rgroup] = xbuf0[rgroup*(M+1) + i];
  239.       xbuf1[i - rgroup] = xbuf1[rgroup*(M+1) + i];
  240.       xbuf0[rgroup*(M+2) + i] = xbuf0[i];
  241.       xbuf1[rgroup*(M+2) + i] = xbuf1[i];
  242.     }
  243.   }
  244. }
  245. LOCAL(void)
  246. set_bottom_pointers (j_decompress_ptr cinfo)
  247. /* Change the pointer lists to duplicate the last sample row at the bottom
  248.  * of the image.  whichptr indicates which xbuffer holds the final iMCU row.
  249.  * Also sets rowgroups_avail to indicate number of nondummy row groups in row.
  250.  */
  251. {
  252.   my_main_ptr main = (my_main_ptr) cinfo->main;
  253.   int ci, i, rgroup, iMCUheight, rows_left;
  254.   jpeg_component_info *compptr;
  255.   JSAMPARRAY xbuf;
  256.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  257.        ci++, compptr++) {
  258.     /* Count sample rows in one iMCU row and in one row group */
  259.     iMCUheight = compptr->v_samp_factor * compptr->DCT_scaled_size;
  260.     rgroup = iMCUheight / cinfo->min_DCT_scaled_size;
  261.     /* Count nondummy sample rows remaining for this component */
  262.     rows_left = (int) (compptr->downsampled_height % (JDIMENSION) iMCUheight);
  263.     if (rows_left == 0) rows_left = iMCUheight;
  264.     /* Count nondummy row groups.  Should get same answer for each component,
  265.      * so we need only do it once.
  266.      */
  267.     if (ci == 0) {
  268.       main->rowgroups_avail = (JDIMENSION) ((rows_left-1) / rgroup + 1);
  269.     }
  270.     /* Duplicate the last real sample row rgroup*2 times; this pads out the
  271.      * last partial rowgroup and ensures at least one full rowgroup of context.
  272.      */
  273.     xbuf = main->xbuffer[main->whichptr][ci];
  274.     for (i = 0; i < rgroup * 2; i++) {
  275.       xbuf[rows_left + i] = xbuf[rows_left-1];
  276.     }
  277.   }
  278. }
  279. /*
  280.  * Initialize for a processing pass.
  281.  */
  282. METHODDEF(void)
  283. start_pass_main (j_decompress_ptr cinfo, J_BUF_MODE pass_mode)
  284. {
  285.   my_main_ptr main = (my_main_ptr) cinfo->main;
  286.   switch (pass_mode) {
  287.   case JBUF_PASS_THRU:
  288.     if (cinfo->upsample->need_context_rows) {
  289.       main->pub.process_data = process_data_context_main;
  290.       make_funny_pointers(cinfo); /* Create the xbuffer[] lists */
  291.       main->whichptr = 0; /* Read first iMCU row into xbuffer[0] */
  292.       main->context_state = CTX_PREPARE_FOR_IMCU;
  293.       main->iMCU_row_ctr = 0;
  294.     } else {
  295.       /* Simple case with no context needed */
  296.       main->pub.process_data = process_data_simple_main;
  297.     }
  298.     main->buffer_full = FALSE; /* Mark buffer empty */
  299.     main->rowgroup_ctr = 0;
  300.     break;
  301. #ifdef QUANT_2PASS_SUPPORTED
  302.   case JBUF_CRANK_DEST:
  303.     /* For last pass of 2-pass quantization, just crank the postprocessor */
  304.     main->pub.process_data = process_data_crank_post;
  305.     break;
  306. #endif
  307.   default:
  308.     ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  309.     break;
  310.   }
  311. }
  312. /*
  313.  * Process some data.
  314.  * This handles the simple case where no context is required.
  315.  */
  316. METHODDEF(void)
  317. process_data_simple_main (j_decompress_ptr cinfo,
  318.   JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
  319.   JDIMENSION out_rows_avail)
  320. {
  321.   my_main_ptr main = (my_main_ptr) cinfo->main;
  322.   JDIMENSION rowgroups_avail;
  323.   /* Read input data if we haven't filled the main buffer yet */
  324.   if (! main->buffer_full) {
  325.     if (! (*cinfo->coef->decompress_data) (cinfo, main->buffer))
  326.       return; /* suspension forced, can do nothing more */
  327.     main->buffer_full = TRUE; /* OK, we have an iMCU row to work with */
  328.   }
  329.   /* There are always min_DCT_scaled_size row groups in an iMCU row. */
  330.   rowgroups_avail = (JDIMENSION) cinfo->min_DCT_scaled_size;
  331.   /* Note: at the bottom of the image, we may pass extra garbage row groups
  332.    * to the postprocessor.  The postprocessor has to check for bottom
  333.    * of image anyway (at row resolution), so no point in us doing it too.
  334.    */
  335.   /* Feed the postprocessor */
  336.   (*cinfo->post->post_process_data) (cinfo, main->buffer,
  337.      &main->rowgroup_ctr, rowgroups_avail,
  338.      output_buf, out_row_ctr, out_rows_avail);
  339.   /* Has postprocessor consumed all the data yet? If so, mark buffer empty */
  340.   if (main->rowgroup_ctr >= rowgroups_avail) {
  341.     main->buffer_full = FALSE;
  342.     main->rowgroup_ctr = 0;
  343.   }
  344. }
  345. /*
  346.  * Process some data.
  347.  * This handles the case where context rows must be provided.
  348.  */
  349. METHODDEF(void)
  350. process_data_context_main (j_decompress_ptr cinfo,
  351.    JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
  352.    JDIMENSION out_rows_avail)
  353. {
  354.   my_main_ptr main = (my_main_ptr) cinfo->main;
  355.   /* Read input data if we haven't filled the main buffer yet */
  356.   if (! main->buffer_full) {
  357.     if (! (*cinfo->coef->decompress_data) (cinfo,
  358.    main->xbuffer[main->whichptr]))
  359.       return; /* suspension forced, can do nothing more */
  360.     main->buffer_full = TRUE; /* OK, we have an iMCU row to work with */
  361.     main->iMCU_row_ctr++; /* count rows received */
  362.   }
  363.   /* Postprocessor typically will not swallow all the input data it is handed
  364.    * in one call (due to filling the output buffer first).  Must be prepared
  365.    * to exit and restart.  This switch lets us keep track of how far we got.
  366.    * Note that each case falls through to the next on successful completion.
  367.    */
  368.   switch (main->context_state) {
  369.   case CTX_POSTPONED_ROW:
  370.     /* Call postprocessor using previously set pointers for postponed row */
  371.     (*cinfo->post->post_process_data) (cinfo, main->xbuffer[main->whichptr],
  372. &main->rowgroup_ctr, main->rowgroups_avail,
  373. output_buf, out_row_ctr, out_rows_avail);
  374.     if (main->rowgroup_ctr < main->rowgroups_avail)
  375.       return; /* Need to suspend */
  376.     main->context_state = CTX_PREPARE_FOR_IMCU;
  377.     if (*out_row_ctr >= out_rows_avail)
  378.       return; /* Postprocessor exactly filled output buf */
  379.     /*FALLTHROUGH*/
  380.   case CTX_PREPARE_FOR_IMCU:
  381.     /* Prepare to process first M-1 row groups of this iMCU row */
  382.     main->rowgroup_ctr = 0;
  383.     main->rowgroups_avail = (JDIMENSION) (cinfo->min_DCT_scaled_size - 1);
  384.     /* Check for bottom of image: if so, tweak pointers to "duplicate"
  385.      * the last sample row, and adjust rowgroups_avail to ignore padding rows.
  386.      */
  387.     if (main->iMCU_row_ctr == cinfo->total_iMCU_rows)
  388.       set_bottom_pointers(cinfo);
  389.     main->context_state = CTX_PROCESS_IMCU;
  390.     /*FALLTHROUGH*/
  391.   case CTX_PROCESS_IMCU:
  392.     /* Call postprocessor using previously set pointers */
  393.     (*cinfo->post->post_process_data) (cinfo, main->xbuffer[main->whichptr],
  394. &main->rowgroup_ctr, main->rowgroups_avail,
  395. output_buf, out_row_ctr, out_rows_avail);
  396.     if (main->rowgroup_ctr < main->rowgroups_avail)
  397.       return; /* Need to suspend */
  398.     /* After the first iMCU, change wraparound pointers to normal state */
  399.     if (main->iMCU_row_ctr == 1)
  400.       set_wraparound_pointers(cinfo);
  401.     /* Prepare to load new iMCU row using other xbuffer list */
  402.     main->whichptr ^= 1; /* 0=>1 or 1=>0 */
  403.     main->buffer_full = FALSE;
  404.     /* Still need to process last row group of this iMCU row, */
  405.     /* which is saved at index M+1 of the other xbuffer */
  406.     main->rowgroup_ctr = (JDIMENSION) (cinfo->min_DCT_scaled_size + 1);
  407.     main->rowgroups_avail = (JDIMENSION) (cinfo->min_DCT_scaled_size + 2);
  408.     main->context_state = CTX_POSTPONED_ROW;
  409.   }
  410. }
  411. /*
  412.  * Process some data.
  413.  * Final pass of two-pass quantization: just call the postprocessor.
  414.  * Source data will be the postprocessor controller's internal buffer.
  415.  */
  416. #ifdef QUANT_2PASS_SUPPORTED
  417. METHODDEF(void)
  418. process_data_crank_post (j_decompress_ptr cinfo,
  419.  JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
  420.  JDIMENSION out_rows_avail)
  421. {
  422.   (*cinfo->post->post_process_data) (cinfo, (JSAMPIMAGE) NULL,
  423.      (JDIMENSION *) NULL, (JDIMENSION) 0,
  424.      output_buf, out_row_ctr, out_rows_avail);
  425. }
  426. #endif /* QUANT_2PASS_SUPPORTED */
  427. /*
  428.  * Initialize main buffer controller.
  429.  */
  430. GLOBAL(void)
  431. jinit_d_main_controller (j_decompress_ptr cinfo, boolean need_full_buffer)
  432. {
  433.   my_main_ptr main;
  434.   int ci, rgroup, ngroups;
  435.   jpeg_component_info *compptr;
  436.   main = (my_main_ptr)
  437.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  438. SIZEOF(my_main_controller));
  439.   cinfo->main = (struct jpeg_d_main_controller *) main;
  440.   main->pub.start_pass = start_pass_main;
  441.   if (need_full_buffer) /* shouldn't happen */
  442.     ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  443.   /* Allocate the workspace.
  444.    * ngroups is the number of row groups we need.
  445.    */
  446.   if (cinfo->upsample->need_context_rows) {
  447.     if (cinfo->min_DCT_scaled_size < 2) /* unsupported, see comments above */
  448.       ERREXIT(cinfo, JERR_NOTIMPL);
  449.     alloc_funny_pointers(cinfo); /* Alloc space for xbuffer[] lists */
  450.     ngroups = cinfo->min_DCT_scaled_size + 2;
  451.   } else {
  452.     ngroups = cinfo->min_DCT_scaled_size;
  453.   }
  454.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  455.        ci++, compptr++) {
  456.     rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) /
  457.       cinfo->min_DCT_scaled_size; /* height of a row group of component */
  458.     main->buffer[ci] = (*cinfo->mem->alloc_sarray)
  459. ((j_common_ptr) cinfo, JPOOL_IMAGE,
  460.  compptr->width_in_blocks * compptr->DCT_scaled_size,
  461.  (JDIMENSION) (rgroup * ngroups));
  462.   }
  463. }
  464. #if defined(__VISAGECPP__)
  465. #  ifdef start_pass_main2
  466. #   undef start_pass_main2
  467. #  endif
  468. #  ifdef process_data_simple_main2
  469. #   undef process_data_simple_main2
  470. #  endif
  471. #endif