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

图片显示

开发平台:

Visual C++

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