nuclear@2: /* nuclear@2: * jdmainct.c nuclear@2: * nuclear@2: * Copyright (C) 1994-1996, Thomas G. Lane. nuclear@2: * This file is part of the Independent JPEG Group's software. nuclear@2: * For conditions of distribution and use, see the accompanying README file. nuclear@2: * nuclear@2: * This file contains the main buffer controller for decompression. nuclear@2: * The main buffer lies between the JPEG decompressor proper and the nuclear@2: * post-processor; it holds downsampled data in the JPEG colorspace. nuclear@2: * nuclear@2: * Note that this code is bypassed in raw-data mode, since the application nuclear@2: * supplies the equivalent of the main buffer in that case. nuclear@2: */ nuclear@2: nuclear@2: #define JPEG_INTERNALS nuclear@2: #include "jinclude.h" nuclear@2: #include "jpeglib.h" nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * In the current system design, the main buffer need never be a full-image nuclear@2: * buffer; any full-height buffers will be found inside the coefficient or nuclear@2: * postprocessing controllers. Nonetheless, the main controller is not nuclear@2: * trivial. Its responsibility is to provide context rows for upsampling/ nuclear@2: * rescaling, and doing this in an efficient fashion is a bit tricky. nuclear@2: * nuclear@2: * Postprocessor input data is counted in "row groups". A row group nuclear@2: * is defined to be (v_samp_factor * DCT_scaled_size / min_DCT_scaled_size) nuclear@2: * sample rows of each component. (We require DCT_scaled_size values to be nuclear@2: * chosen such that these numbers are integers. In practice DCT_scaled_size nuclear@2: * values will likely be powers of two, so we actually have the stronger nuclear@2: * condition that DCT_scaled_size / min_DCT_scaled_size is an integer.) nuclear@2: * Upsampling will typically produce max_v_samp_factor pixel rows from each nuclear@2: * row group (times any additional scale factor that the upsampler is nuclear@2: * applying). nuclear@2: * nuclear@2: * The coefficient controller will deliver data to us one iMCU row at a time; nuclear@2: * each iMCU row contains v_samp_factor * DCT_scaled_size sample rows, or nuclear@2: * exactly min_DCT_scaled_size row groups. (This amount of data corresponds nuclear@2: * to one row of MCUs when the image is fully interleaved.) Note that the nuclear@2: * number of sample rows varies across components, but the number of row nuclear@2: * groups does not. Some garbage sample rows may be included in the last iMCU nuclear@2: * row at the bottom of the image. nuclear@2: * nuclear@2: * Depending on the vertical scaling algorithm used, the upsampler may need nuclear@2: * access to the sample row(s) above and below its current input row group. nuclear@2: * The upsampler is required to set need_context_rows TRUE at global selection nuclear@2: * time if so. When need_context_rows is FALSE, this controller can simply nuclear@2: * obtain one iMCU row at a time from the coefficient controller and dole it nuclear@2: * out as row groups to the postprocessor. nuclear@2: * nuclear@2: * When need_context_rows is TRUE, this controller guarantees that the buffer nuclear@2: * passed to postprocessing contains at least one row group's worth of samples nuclear@2: * above and below the row group(s) being processed. Note that the context nuclear@2: * rows "above" the first passed row group appear at negative row offsets in nuclear@2: * the passed buffer. At the top and bottom of the image, the required nuclear@2: * context rows are manufactured by duplicating the first or last real sample nuclear@2: * row; this avoids having special cases in the upsampling inner loops. nuclear@2: * nuclear@2: * The amount of context is fixed at one row group just because that's a nuclear@2: * convenient number for this controller to work with. The existing nuclear@2: * upsamplers really only need one sample row of context. An upsampler nuclear@2: * supporting arbitrary output rescaling might wish for more than one row nuclear@2: * group of context when shrinking the image; tough, we don't handle that. nuclear@2: * (This is justified by the assumption that downsizing will be handled mostly nuclear@2: * by adjusting the DCT_scaled_size values, so that the actual scale factor at nuclear@2: * the upsample step needn't be much less than one.) nuclear@2: * nuclear@2: * To provide the desired context, we have to retain the last two row groups nuclear@2: * of one iMCU row while reading in the next iMCU row. (The last row group nuclear@2: * can't be processed until we have another row group for its below-context, nuclear@2: * and so we have to save the next-to-last group too for its above-context.) nuclear@2: * We could do this most simply by copying data around in our buffer, but nuclear@2: * that'd be very slow. We can avoid copying any data by creating a rather nuclear@2: * strange pointer structure. Here's how it works. We allocate a workspace nuclear@2: * consisting of M+2 row groups (where M = min_DCT_scaled_size is the number nuclear@2: * of row groups per iMCU row). We create two sets of redundant pointers to nuclear@2: * the workspace. Labeling the physical row groups 0 to M+1, the synthesized nuclear@2: * pointer lists look like this: nuclear@2: * M+1 M-1 nuclear@2: * master pointer --> 0 master pointer --> 0 nuclear@2: * 1 1 nuclear@2: * ... ... nuclear@2: * M-3 M-3 nuclear@2: * M-2 M nuclear@2: * M-1 M+1 nuclear@2: * M M-2 nuclear@2: * M+1 M-1 nuclear@2: * 0 0 nuclear@2: * We read alternate iMCU rows using each master pointer; thus the last two nuclear@2: * row groups of the previous iMCU row remain un-overwritten in the workspace. nuclear@2: * The pointer lists are set up so that the required context rows appear to nuclear@2: * be adjacent to the proper places when we pass the pointer lists to the nuclear@2: * upsampler. nuclear@2: * nuclear@2: * The above pictures describe the normal state of the pointer lists. nuclear@2: * At top and bottom of the image, we diddle the pointer lists to duplicate nuclear@2: * the first or last sample row as necessary (this is cheaper than copying nuclear@2: * sample rows around). nuclear@2: * nuclear@2: * This scheme breaks down if M < 2, ie, min_DCT_scaled_size is 1. In that nuclear@2: * situation each iMCU row provides only one row group so the buffering logic nuclear@2: * must be different (eg, we must read two iMCU rows before we can emit the nuclear@2: * first row group). For now, we simply do not support providing context nuclear@2: * rows when min_DCT_scaled_size is 1. That combination seems unlikely to nuclear@2: * be worth providing --- if someone wants a 1/8th-size preview, they probably nuclear@2: * want it quick and dirty, so a context-free upsampler is sufficient. nuclear@2: */ nuclear@2: nuclear@2: nuclear@2: /* Private buffer controller object */ nuclear@2: nuclear@2: typedef struct { nuclear@2: struct jpeg_d_main_controller pub; /* public fields */ nuclear@2: nuclear@2: /* Pointer to allocated workspace (M or M+2 row groups). */ nuclear@2: JSAMPARRAY buffer[MAX_COMPONENTS]; nuclear@2: nuclear@2: boolean buffer_full; /* Have we gotten an iMCU row from decoder? */ nuclear@2: JDIMENSION rowgroup_ctr; /* counts row groups output to postprocessor */ nuclear@2: nuclear@2: /* Remaining fields are only used in the context case. */ nuclear@2: nuclear@2: /* These are the master pointers to the funny-order pointer lists. */ nuclear@2: JSAMPIMAGE xbuffer[2]; /* pointers to weird pointer lists */ nuclear@2: nuclear@2: int whichptr; /* indicates which pointer set is now in use */ nuclear@2: int context_state; /* process_data state machine status */ nuclear@2: JDIMENSION rowgroups_avail; /* row groups available to postprocessor */ nuclear@2: JDIMENSION iMCU_row_ctr; /* counts iMCU rows to detect image top/bot */ nuclear@2: } my_main_controller; nuclear@2: nuclear@2: typedef my_main_controller * my_main_ptr; nuclear@2: nuclear@2: /* context_state values: */ nuclear@2: #define CTX_PREPARE_FOR_IMCU 0 /* need to prepare for MCU row */ nuclear@2: #define CTX_PROCESS_IMCU 1 /* feeding iMCU to postprocessor */ nuclear@2: #define CTX_POSTPONED_ROW 2 /* feeding postponed row group */ nuclear@2: nuclear@2: nuclear@2: /* Forward declarations */ nuclear@2: METHODDEF(void) process_data_simple_main nuclear@2: JPP((j_decompress_ptr cinfo, JSAMPARRAY output_buf, nuclear@2: JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail)); nuclear@2: METHODDEF(void) process_data_context_main nuclear@2: JPP((j_decompress_ptr cinfo, JSAMPARRAY output_buf, nuclear@2: JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail)); nuclear@2: #ifdef QUANT_2PASS_SUPPORTED nuclear@2: METHODDEF(void) process_data_crank_post nuclear@2: JPP((j_decompress_ptr cinfo, JSAMPARRAY output_buf, nuclear@2: JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail)); nuclear@2: #endif nuclear@2: nuclear@2: nuclear@2: LOCAL(void) nuclear@2: alloc_funny_pointers (j_decompress_ptr cinfo) nuclear@2: /* Allocate space for the funny pointer lists. nuclear@2: * This is done only once, not once per pass. nuclear@2: */ nuclear@2: { nuclear@2: my_main_ptr main = (my_main_ptr) cinfo->main; nuclear@2: int ci, rgroup; nuclear@2: int M = cinfo->min_DCT_scaled_size; nuclear@2: jpeg_component_info *compptr; nuclear@2: JSAMPARRAY xbuf; nuclear@2: nuclear@2: /* Get top-level space for component array pointers. nuclear@2: * We alloc both arrays with one call to save a few cycles. nuclear@2: */ nuclear@2: main->xbuffer[0] = (JSAMPIMAGE) nuclear@2: (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@2: cinfo->num_components * 2 * SIZEOF(JSAMPARRAY)); nuclear@2: main->xbuffer[1] = main->xbuffer[0] + cinfo->num_components; nuclear@2: nuclear@2: for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; nuclear@2: ci++, compptr++) { nuclear@2: rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) / nuclear@2: cinfo->min_DCT_scaled_size; /* height of a row group of component */ nuclear@2: /* Get space for pointer lists --- M+4 row groups in each list. nuclear@2: * We alloc both pointer lists with one call to save a few cycles. nuclear@2: */ nuclear@2: xbuf = (JSAMPARRAY) nuclear@2: (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@2: 2 * (rgroup * (M + 4)) * SIZEOF(JSAMPROW)); nuclear@2: xbuf += rgroup; /* want one row group at negative offsets */ nuclear@2: main->xbuffer[0][ci] = xbuf; nuclear@2: xbuf += rgroup * (M + 4); nuclear@2: main->xbuffer[1][ci] = xbuf; nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: LOCAL(void) nuclear@2: make_funny_pointers (j_decompress_ptr cinfo) nuclear@2: /* Create the funny pointer lists discussed in the comments above. nuclear@2: * The actual workspace is already allocated (in main->buffer), nuclear@2: * and the space for the pointer lists is allocated too. nuclear@2: * This routine just fills in the curiously ordered lists. nuclear@2: * This will be repeated at the beginning of each pass. nuclear@2: */ nuclear@2: { nuclear@2: my_main_ptr main = (my_main_ptr) cinfo->main; nuclear@2: int ci, i, rgroup; nuclear@2: int M = cinfo->min_DCT_scaled_size; nuclear@2: jpeg_component_info *compptr; nuclear@2: JSAMPARRAY buf, xbuf0, xbuf1; nuclear@2: nuclear@2: for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; nuclear@2: ci++, compptr++) { nuclear@2: rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) / nuclear@2: cinfo->min_DCT_scaled_size; /* height of a row group of component */ nuclear@2: xbuf0 = main->xbuffer[0][ci]; nuclear@2: xbuf1 = main->xbuffer[1][ci]; nuclear@2: /* First copy the workspace pointers as-is */ nuclear@2: buf = main->buffer[ci]; nuclear@2: for (i = 0; i < rgroup * (M + 2); i++) { nuclear@2: xbuf0[i] = xbuf1[i] = buf[i]; nuclear@2: } nuclear@2: /* In the second list, put the last four row groups in swapped order */ nuclear@2: for (i = 0; i < rgroup * 2; i++) { nuclear@2: xbuf1[rgroup*(M-2) + i] = buf[rgroup*M + i]; nuclear@2: xbuf1[rgroup*M + i] = buf[rgroup*(M-2) + i]; nuclear@2: } nuclear@2: /* The wraparound pointers at top and bottom will be filled later nuclear@2: * (see set_wraparound_pointers, below). Initially we want the "above" nuclear@2: * pointers to duplicate the first actual data line. This only needs nuclear@2: * to happen in xbuffer[0]. nuclear@2: */ nuclear@2: for (i = 0; i < rgroup; i++) { nuclear@2: xbuf0[i - rgroup] = xbuf0[0]; nuclear@2: } nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: LOCAL(void) nuclear@2: set_wraparound_pointers (j_decompress_ptr cinfo) nuclear@2: /* Set up the "wraparound" pointers at top and bottom of the pointer lists. nuclear@2: * This changes the pointer list state from top-of-image to the normal state. nuclear@2: */ nuclear@2: { nuclear@2: my_main_ptr main = (my_main_ptr) cinfo->main; nuclear@2: int ci, i, rgroup; nuclear@2: int M = cinfo->min_DCT_scaled_size; nuclear@2: jpeg_component_info *compptr; nuclear@2: JSAMPARRAY xbuf0, xbuf1; nuclear@2: nuclear@2: for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; nuclear@2: ci++, compptr++) { nuclear@2: rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) / nuclear@2: cinfo->min_DCT_scaled_size; /* height of a row group of component */ nuclear@2: xbuf0 = main->xbuffer[0][ci]; nuclear@2: xbuf1 = main->xbuffer[1][ci]; nuclear@2: for (i = 0; i < rgroup; i++) { nuclear@2: xbuf0[i - rgroup] = xbuf0[rgroup*(M+1) + i]; nuclear@2: xbuf1[i - rgroup] = xbuf1[rgroup*(M+1) + i]; nuclear@2: xbuf0[rgroup*(M+2) + i] = xbuf0[i]; nuclear@2: xbuf1[rgroup*(M+2) + i] = xbuf1[i]; nuclear@2: } nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: LOCAL(void) nuclear@2: set_bottom_pointers (j_decompress_ptr cinfo) nuclear@2: /* Change the pointer lists to duplicate the last sample row at the bottom nuclear@2: * of the image. whichptr indicates which xbuffer holds the final iMCU row. nuclear@2: * Also sets rowgroups_avail to indicate number of nondummy row groups in row. nuclear@2: */ nuclear@2: { nuclear@2: my_main_ptr main = (my_main_ptr) cinfo->main; nuclear@2: int ci, i, rgroup, iMCUheight, rows_left; nuclear@2: jpeg_component_info *compptr; nuclear@2: JSAMPARRAY xbuf; nuclear@2: nuclear@2: for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; nuclear@2: ci++, compptr++) { nuclear@2: /* Count sample rows in one iMCU row and in one row group */ nuclear@2: iMCUheight = compptr->v_samp_factor * compptr->DCT_scaled_size; nuclear@2: rgroup = iMCUheight / cinfo->min_DCT_scaled_size; nuclear@2: /* Count nondummy sample rows remaining for this component */ nuclear@2: rows_left = (int) (compptr->downsampled_height % (JDIMENSION) iMCUheight); nuclear@2: if (rows_left == 0) rows_left = iMCUheight; nuclear@2: /* Count nondummy row groups. Should get same answer for each component, nuclear@2: * so we need only do it once. nuclear@2: */ nuclear@2: if (ci == 0) { nuclear@2: main->rowgroups_avail = (JDIMENSION) ((rows_left-1) / rgroup + 1); nuclear@2: } nuclear@2: /* Duplicate the last real sample row rgroup*2 times; this pads out the nuclear@2: * last partial rowgroup and ensures at least one full rowgroup of context. nuclear@2: */ nuclear@2: xbuf = main->xbuffer[main->whichptr][ci]; nuclear@2: for (i = 0; i < rgroup * 2; i++) { nuclear@2: xbuf[rows_left + i] = xbuf[rows_left-1]; nuclear@2: } nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Initialize for a processing pass. nuclear@2: */ nuclear@2: nuclear@2: METHODDEF(void) nuclear@2: start_pass_main (j_decompress_ptr cinfo, J_BUF_MODE pass_mode) nuclear@2: { nuclear@2: my_main_ptr main = (my_main_ptr) cinfo->main; nuclear@2: nuclear@2: switch (pass_mode) { nuclear@2: case JBUF_PASS_THRU: nuclear@2: if (cinfo->upsample->need_context_rows) { nuclear@2: main->pub.process_data = process_data_context_main; nuclear@2: make_funny_pointers(cinfo); /* Create the xbuffer[] lists */ nuclear@2: main->whichptr = 0; /* Read first iMCU row into xbuffer[0] */ nuclear@2: main->context_state = CTX_PREPARE_FOR_IMCU; nuclear@2: main->iMCU_row_ctr = 0; nuclear@2: } else { nuclear@2: /* Simple case with no context needed */ nuclear@2: main->pub.process_data = process_data_simple_main; nuclear@2: } nuclear@2: main->buffer_full = FALSE; /* Mark buffer empty */ nuclear@2: main->rowgroup_ctr = 0; nuclear@2: break; nuclear@2: #ifdef QUANT_2PASS_SUPPORTED nuclear@2: case JBUF_CRANK_DEST: nuclear@2: /* For last pass of 2-pass quantization, just crank the postprocessor */ nuclear@2: main->pub.process_data = process_data_crank_post; nuclear@2: break; nuclear@2: #endif nuclear@2: default: nuclear@2: ERREXIT(cinfo, JERR_BAD_BUFFER_MODE); nuclear@2: break; nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Process some data. nuclear@2: * This handles the simple case where no context is required. nuclear@2: */ nuclear@2: nuclear@2: METHODDEF(void) nuclear@2: process_data_simple_main (j_decompress_ptr cinfo, nuclear@2: JSAMPARRAY output_buf, JDIMENSION *out_row_ctr, nuclear@2: JDIMENSION out_rows_avail) nuclear@2: { nuclear@2: my_main_ptr main = (my_main_ptr) cinfo->main; nuclear@2: JDIMENSION rowgroups_avail; nuclear@2: nuclear@2: /* Read input data if we haven't filled the main buffer yet */ nuclear@2: if (! main->buffer_full) { nuclear@2: if (! (*cinfo->coef->decompress_data) (cinfo, main->buffer)) nuclear@2: return; /* suspension forced, can do nothing more */ nuclear@2: main->buffer_full = TRUE; /* OK, we have an iMCU row to work with */ nuclear@2: } nuclear@2: nuclear@2: /* There are always min_DCT_scaled_size row groups in an iMCU row. */ nuclear@2: rowgroups_avail = (JDIMENSION) cinfo->min_DCT_scaled_size; nuclear@2: /* Note: at the bottom of the image, we may pass extra garbage row groups nuclear@2: * to the postprocessor. The postprocessor has to check for bottom nuclear@2: * of image anyway (at row resolution), so no point in us doing it too. nuclear@2: */ nuclear@2: nuclear@2: /* Feed the postprocessor */ nuclear@2: (*cinfo->post->post_process_data) (cinfo, main->buffer, nuclear@2: &main->rowgroup_ctr, rowgroups_avail, nuclear@2: output_buf, out_row_ctr, out_rows_avail); nuclear@2: nuclear@2: /* Has postprocessor consumed all the data yet? If so, mark buffer empty */ nuclear@2: if (main->rowgroup_ctr >= rowgroups_avail) { nuclear@2: main->buffer_full = FALSE; nuclear@2: main->rowgroup_ctr = 0; nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Process some data. nuclear@2: * This handles the case where context rows must be provided. nuclear@2: */ nuclear@2: nuclear@2: METHODDEF(void) nuclear@2: process_data_context_main (j_decompress_ptr cinfo, nuclear@2: JSAMPARRAY output_buf, JDIMENSION *out_row_ctr, nuclear@2: JDIMENSION out_rows_avail) nuclear@2: { nuclear@2: my_main_ptr main = (my_main_ptr) cinfo->main; nuclear@2: nuclear@2: /* Read input data if we haven't filled the main buffer yet */ nuclear@2: if (! main->buffer_full) { nuclear@2: if (! (*cinfo->coef->decompress_data) (cinfo, nuclear@2: main->xbuffer[main->whichptr])) nuclear@2: return; /* suspension forced, can do nothing more */ nuclear@2: main->buffer_full = TRUE; /* OK, we have an iMCU row to work with */ nuclear@2: main->iMCU_row_ctr++; /* count rows received */ nuclear@2: } nuclear@2: nuclear@2: /* Postprocessor typically will not swallow all the input data it is handed nuclear@2: * in one call (due to filling the output buffer first). Must be prepared nuclear@2: * to exit and restart. This switch lets us keep track of how far we got. nuclear@2: * Note that each case falls through to the next on successful completion. nuclear@2: */ nuclear@2: switch (main->context_state) { nuclear@2: case CTX_POSTPONED_ROW: nuclear@2: /* Call postprocessor using previously set pointers for postponed row */ nuclear@2: (*cinfo->post->post_process_data) (cinfo, main->xbuffer[main->whichptr], nuclear@2: &main->rowgroup_ctr, main->rowgroups_avail, nuclear@2: output_buf, out_row_ctr, out_rows_avail); nuclear@2: if (main->rowgroup_ctr < main->rowgroups_avail) nuclear@2: return; /* Need to suspend */ nuclear@2: main->context_state = CTX_PREPARE_FOR_IMCU; nuclear@2: if (*out_row_ctr >= out_rows_avail) nuclear@2: return; /* Postprocessor exactly filled output buf */ nuclear@2: /*FALLTHROUGH*/ nuclear@2: case CTX_PREPARE_FOR_IMCU: nuclear@2: /* Prepare to process first M-1 row groups of this iMCU row */ nuclear@2: main->rowgroup_ctr = 0; nuclear@2: main->rowgroups_avail = (JDIMENSION) (cinfo->min_DCT_scaled_size - 1); nuclear@2: /* Check for bottom of image: if so, tweak pointers to "duplicate" nuclear@2: * the last sample row, and adjust rowgroups_avail to ignore padding rows. nuclear@2: */ nuclear@2: if (main->iMCU_row_ctr == cinfo->total_iMCU_rows) nuclear@2: set_bottom_pointers(cinfo); nuclear@2: main->context_state = CTX_PROCESS_IMCU; nuclear@2: /*FALLTHROUGH*/ nuclear@2: case CTX_PROCESS_IMCU: nuclear@2: /* Call postprocessor using previously set pointers */ nuclear@2: (*cinfo->post->post_process_data) (cinfo, main->xbuffer[main->whichptr], nuclear@2: &main->rowgroup_ctr, main->rowgroups_avail, nuclear@2: output_buf, out_row_ctr, out_rows_avail); nuclear@2: if (main->rowgroup_ctr < main->rowgroups_avail) nuclear@2: return; /* Need to suspend */ nuclear@2: /* After the first iMCU, change wraparound pointers to normal state */ nuclear@2: if (main->iMCU_row_ctr == 1) nuclear@2: set_wraparound_pointers(cinfo); nuclear@2: /* Prepare to load new iMCU row using other xbuffer list */ nuclear@2: main->whichptr ^= 1; /* 0=>1 or 1=>0 */ nuclear@2: main->buffer_full = FALSE; nuclear@2: /* Still need to process last row group of this iMCU row, */ nuclear@2: /* which is saved at index M+1 of the other xbuffer */ nuclear@2: main->rowgroup_ctr = (JDIMENSION) (cinfo->min_DCT_scaled_size + 1); nuclear@2: main->rowgroups_avail = (JDIMENSION) (cinfo->min_DCT_scaled_size + 2); nuclear@2: main->context_state = CTX_POSTPONED_ROW; nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Process some data. nuclear@2: * Final pass of two-pass quantization: just call the postprocessor. nuclear@2: * Source data will be the postprocessor controller's internal buffer. nuclear@2: */ nuclear@2: nuclear@2: #ifdef QUANT_2PASS_SUPPORTED nuclear@2: nuclear@2: METHODDEF(void) nuclear@2: process_data_crank_post (j_decompress_ptr cinfo, nuclear@2: JSAMPARRAY output_buf, JDIMENSION *out_row_ctr, nuclear@2: JDIMENSION out_rows_avail) nuclear@2: { nuclear@2: (*cinfo->post->post_process_data) (cinfo, (JSAMPIMAGE) NULL, nuclear@2: (JDIMENSION *) NULL, (JDIMENSION) 0, nuclear@2: output_buf, out_row_ctr, out_rows_avail); nuclear@2: } nuclear@2: nuclear@2: #endif /* QUANT_2PASS_SUPPORTED */ nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Initialize main buffer controller. nuclear@2: */ nuclear@2: nuclear@2: GLOBAL(void) nuclear@2: jinit_d_main_controller (j_decompress_ptr cinfo, boolean need_full_buffer) nuclear@2: { nuclear@2: my_main_ptr main; nuclear@2: int ci, rgroup, ngroups; nuclear@2: jpeg_component_info *compptr; nuclear@2: nuclear@2: main = (my_main_ptr) nuclear@2: (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@2: SIZEOF(my_main_controller)); nuclear@2: cinfo->main = (struct jpeg_d_main_controller *) main; nuclear@2: main->pub.start_pass = start_pass_main; nuclear@2: nuclear@2: if (need_full_buffer) /* shouldn't happen */ nuclear@2: ERREXIT(cinfo, JERR_BAD_BUFFER_MODE); nuclear@2: nuclear@2: /* Allocate the workspace. nuclear@2: * ngroups is the number of row groups we need. nuclear@2: */ nuclear@2: if (cinfo->upsample->need_context_rows) { nuclear@2: if (cinfo->min_DCT_scaled_size < 2) /* unsupported, see comments above */ nuclear@2: ERREXIT(cinfo, JERR_NOTIMPL); nuclear@2: alloc_funny_pointers(cinfo); /* Alloc space for xbuffer[] lists */ nuclear@2: ngroups = cinfo->min_DCT_scaled_size + 2; nuclear@2: } else { nuclear@2: ngroups = cinfo->min_DCT_scaled_size; nuclear@2: } nuclear@2: nuclear@2: for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; nuclear@2: ci++, compptr++) { nuclear@2: rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) / nuclear@2: cinfo->min_DCT_scaled_size; /* height of a row group of component */ nuclear@2: main->buffer[ci] = (*cinfo->mem->alloc_sarray) nuclear@2: ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@2: compptr->width_in_blocks * compptr->DCT_scaled_size, nuclear@2: (JDIMENSION) (rgroup * ngroups)); nuclear@2: } nuclear@2: }