home *** CD-ROM | disk | FTP | other *** search
/ Windows Graphics Programming / Feng_Yuan_Win32_GDI_DirectX.iso / Samples / include / jlib / jdmainct.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2000-05-16  |  20.8 KB  |  526 lines

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