JDMAINCT.c
上传用户:qiutianh
上传日期:2022-08-08
资源大小:939k
文件大小:21k
源码类别:

图形图象

开发平台:

Visual C++

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