nuclear@2: /* nuclear@2: * jcprepct.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 compression preprocessing controller. nuclear@2: * This controller manages the color conversion, downsampling, nuclear@2: * and edge expansion steps. nuclear@2: * nuclear@2: * Most of the complexity here is associated with buffering input rows nuclear@2: * as required by the downsampler. See the comments at the head of nuclear@2: * jcsample.c for the downsampler's needs. 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: /* At present, jcsample.c can request context rows only for smoothing. nuclear@2: * In the future, we might also need context rows for CCIR601 sampling nuclear@2: * or other more-complex downsampling procedures. The code to support nuclear@2: * context rows should be compiled only if needed. nuclear@2: */ nuclear@2: #ifdef INPUT_SMOOTHING_SUPPORTED nuclear@2: #define CONTEXT_ROWS_SUPPORTED nuclear@2: #endif nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * For the simple (no-context-row) case, we just need to buffer one nuclear@2: * row group's worth of pixels for the downsampling step. At the bottom of nuclear@2: * the image, we pad to a full row group by replicating the last pixel row. nuclear@2: * The downsampler's last output row is then replicated if needed to pad nuclear@2: * out to a full iMCU row. nuclear@2: * nuclear@2: * When providing context rows, we must buffer three row groups' worth of nuclear@2: * pixels. Three row groups are physically allocated, but the row pointer nuclear@2: * arrays are made five row groups high, with the extra pointers above and nuclear@2: * below "wrapping around" to point to the last and first real row groups. nuclear@2: * This allows the downsampler to access the proper context rows. nuclear@2: * At the top and bottom of the image, we create dummy context rows by nuclear@2: * copying the first or last real pixel row. This copying could be avoided nuclear@2: * by pointer hacking as is done in jdmainct.c, but it doesn't seem worth the nuclear@2: * trouble on the compression side. nuclear@2: */ nuclear@2: nuclear@2: nuclear@2: /* Private buffer controller object */ nuclear@2: nuclear@2: typedef struct { nuclear@2: struct jpeg_c_prep_controller pub; /* public fields */ nuclear@2: nuclear@2: /* Downsampling input buffer. This buffer holds color-converted data nuclear@2: * until we have enough to do a downsample step. nuclear@2: */ nuclear@2: JSAMPARRAY color_buf[MAX_COMPONENTS]; nuclear@2: nuclear@2: JDIMENSION rows_to_go; /* counts rows remaining in source image */ nuclear@2: int next_buf_row; /* index of next row to store in color_buf */ nuclear@2: nuclear@2: #ifdef CONTEXT_ROWS_SUPPORTED /* only needed for context case */ nuclear@2: int this_row_group; /* starting row index of group to process */ nuclear@2: int next_buf_stop; /* downsample when we reach this index */ nuclear@2: #endif nuclear@2: } my_prep_controller; nuclear@2: nuclear@2: typedef my_prep_controller * my_prep_ptr; 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_prep (j_compress_ptr cinfo, J_BUF_MODE pass_mode) nuclear@2: { nuclear@2: my_prep_ptr prep = (my_prep_ptr) cinfo->prep; nuclear@2: nuclear@2: if (pass_mode != JBUF_PASS_THRU) nuclear@2: ERREXIT(cinfo, JERR_BAD_BUFFER_MODE); nuclear@2: nuclear@2: /* Initialize total-height counter for detecting bottom of image */ nuclear@2: prep->rows_to_go = cinfo->image_height; nuclear@2: /* Mark the conversion buffer empty */ nuclear@2: prep->next_buf_row = 0; nuclear@2: #ifdef CONTEXT_ROWS_SUPPORTED nuclear@2: /* Preset additional state variables for context mode. nuclear@2: * These aren't used in non-context mode, so we needn't test which mode. nuclear@2: */ nuclear@2: prep->this_row_group = 0; nuclear@2: /* Set next_buf_stop to stop after two row groups have been read in. */ nuclear@2: prep->next_buf_stop = 2 * cinfo->max_v_samp_factor; nuclear@2: #endif nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Expand an image vertically from height input_rows to height output_rows, nuclear@2: * by duplicating the bottom row. nuclear@2: */ nuclear@2: nuclear@2: LOCAL(void) nuclear@2: expand_bottom_edge (JSAMPARRAY image_data, JDIMENSION num_cols, nuclear@2: int input_rows, int output_rows) nuclear@2: { nuclear@2: register int row; nuclear@2: nuclear@2: for (row = input_rows; row < output_rows; row++) { nuclear@2: jcopy_sample_rows(image_data, input_rows-1, image_data, row, nuclear@2: 1, num_cols); nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Process some data in the simple no-context case. nuclear@2: * nuclear@2: * Preprocessor output data is counted in "row groups". A row group nuclear@2: * is defined to be v_samp_factor sample rows of each component. nuclear@2: * Downsampling will produce this much data from each max_v_samp_factor nuclear@2: * input rows. nuclear@2: */ nuclear@2: nuclear@2: METHODDEF(void) nuclear@2: pre_process_data (j_compress_ptr cinfo, nuclear@2: JSAMPARRAY input_buf, JDIMENSION *in_row_ctr, nuclear@2: JDIMENSION in_rows_avail, nuclear@2: JSAMPIMAGE output_buf, JDIMENSION *out_row_group_ctr, nuclear@2: JDIMENSION out_row_groups_avail) nuclear@2: { nuclear@2: my_prep_ptr prep = (my_prep_ptr) cinfo->prep; nuclear@2: int numrows, ci; nuclear@2: JDIMENSION inrows; nuclear@2: jpeg_component_info * compptr; nuclear@2: nuclear@2: while (*in_row_ctr < in_rows_avail && nuclear@2: *out_row_group_ctr < out_row_groups_avail) { nuclear@2: /* Do color conversion to fill the conversion buffer. */ nuclear@2: inrows = in_rows_avail - *in_row_ctr; nuclear@2: numrows = cinfo->max_v_samp_factor - prep->next_buf_row; nuclear@2: numrows = (int) MIN((JDIMENSION) numrows, inrows); nuclear@2: (*cinfo->cconvert->color_convert) (cinfo, input_buf + *in_row_ctr, nuclear@2: prep->color_buf, nuclear@2: (JDIMENSION) prep->next_buf_row, nuclear@2: numrows); nuclear@2: *in_row_ctr += numrows; nuclear@2: prep->next_buf_row += numrows; nuclear@2: prep->rows_to_go -= numrows; nuclear@2: /* If at bottom of image, pad to fill the conversion buffer. */ nuclear@2: if (prep->rows_to_go == 0 && nuclear@2: prep->next_buf_row < cinfo->max_v_samp_factor) { nuclear@2: for (ci = 0; ci < cinfo->num_components; ci++) { nuclear@2: expand_bottom_edge(prep->color_buf[ci], cinfo->image_width, nuclear@2: prep->next_buf_row, cinfo->max_v_samp_factor); nuclear@2: } nuclear@2: prep->next_buf_row = cinfo->max_v_samp_factor; nuclear@2: } nuclear@2: /* If we've filled the conversion buffer, empty it. */ nuclear@2: if (prep->next_buf_row == cinfo->max_v_samp_factor) { nuclear@2: (*cinfo->downsample->downsample) (cinfo, nuclear@2: prep->color_buf, (JDIMENSION) 0, nuclear@2: output_buf, *out_row_group_ctr); nuclear@2: prep->next_buf_row = 0; nuclear@2: (*out_row_group_ctr)++; nuclear@2: } nuclear@2: /* If at bottom of image, pad the output to a full iMCU height. nuclear@2: * Note we assume the caller is providing a one-iMCU-height output buffer! nuclear@2: */ nuclear@2: if (prep->rows_to_go == 0 && nuclear@2: *out_row_group_ctr < out_row_groups_avail) { nuclear@2: for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; nuclear@2: ci++, compptr++) { nuclear@2: expand_bottom_edge(output_buf[ci], nuclear@2: compptr->width_in_blocks * DCTSIZE, nuclear@2: (int) (*out_row_group_ctr * compptr->v_samp_factor), nuclear@2: (int) (out_row_groups_avail * compptr->v_samp_factor)); nuclear@2: } nuclear@2: *out_row_group_ctr = out_row_groups_avail; nuclear@2: break; /* can exit outer loop without test */ nuclear@2: } nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: #ifdef CONTEXT_ROWS_SUPPORTED nuclear@2: nuclear@2: /* nuclear@2: * Process some data in the context case. nuclear@2: */ nuclear@2: nuclear@2: METHODDEF(void) nuclear@2: pre_process_context (j_compress_ptr cinfo, nuclear@2: JSAMPARRAY input_buf, JDIMENSION *in_row_ctr, nuclear@2: JDIMENSION in_rows_avail, nuclear@2: JSAMPIMAGE output_buf, JDIMENSION *out_row_group_ctr, nuclear@2: JDIMENSION out_row_groups_avail) nuclear@2: { nuclear@2: my_prep_ptr prep = (my_prep_ptr) cinfo->prep; nuclear@2: int numrows, ci; nuclear@2: int buf_height = cinfo->max_v_samp_factor * 3; nuclear@2: JDIMENSION inrows; nuclear@2: nuclear@2: while (*out_row_group_ctr < out_row_groups_avail) { nuclear@2: if (*in_row_ctr < in_rows_avail) { nuclear@2: /* Do color conversion to fill the conversion buffer. */ nuclear@2: inrows = in_rows_avail - *in_row_ctr; nuclear@2: numrows = prep->next_buf_stop - prep->next_buf_row; nuclear@2: numrows = (int) MIN((JDIMENSION) numrows, inrows); nuclear@2: (*cinfo->cconvert->color_convert) (cinfo, input_buf + *in_row_ctr, nuclear@2: prep->color_buf, nuclear@2: (JDIMENSION) prep->next_buf_row, nuclear@2: numrows); nuclear@2: /* Pad at top of image, if first time through */ nuclear@2: if (prep->rows_to_go == cinfo->image_height) { nuclear@2: for (ci = 0; ci < cinfo->num_components; ci++) { nuclear@2: int row; nuclear@2: for (row = 1; row <= cinfo->max_v_samp_factor; row++) { nuclear@2: jcopy_sample_rows(prep->color_buf[ci], 0, nuclear@2: prep->color_buf[ci], -row, nuclear@2: 1, cinfo->image_width); nuclear@2: } nuclear@2: } nuclear@2: } nuclear@2: *in_row_ctr += numrows; nuclear@2: prep->next_buf_row += numrows; nuclear@2: prep->rows_to_go -= numrows; nuclear@2: } else { nuclear@2: /* Return for more data, unless we are at the bottom of the image. */ nuclear@2: if (prep->rows_to_go != 0) nuclear@2: break; nuclear@2: /* When at bottom of image, pad to fill the conversion buffer. */ nuclear@2: if (prep->next_buf_row < prep->next_buf_stop) { nuclear@2: for (ci = 0; ci < cinfo->num_components; ci++) { nuclear@2: expand_bottom_edge(prep->color_buf[ci], cinfo->image_width, nuclear@2: prep->next_buf_row, prep->next_buf_stop); nuclear@2: } nuclear@2: prep->next_buf_row = prep->next_buf_stop; nuclear@2: } nuclear@2: } nuclear@2: /* If we've gotten enough data, downsample a row group. */ nuclear@2: if (prep->next_buf_row == prep->next_buf_stop) { nuclear@2: (*cinfo->downsample->downsample) (cinfo, nuclear@2: prep->color_buf, nuclear@2: (JDIMENSION) prep->this_row_group, nuclear@2: output_buf, *out_row_group_ctr); nuclear@2: (*out_row_group_ctr)++; nuclear@2: /* Advance pointers with wraparound as necessary. */ nuclear@2: prep->this_row_group += cinfo->max_v_samp_factor; nuclear@2: if (prep->this_row_group >= buf_height) nuclear@2: prep->this_row_group = 0; nuclear@2: if (prep->next_buf_row >= buf_height) nuclear@2: prep->next_buf_row = 0; nuclear@2: prep->next_buf_stop = prep->next_buf_row + cinfo->max_v_samp_factor; nuclear@2: } nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Create the wrapped-around downsampling input buffer needed for context mode. nuclear@2: */ nuclear@2: nuclear@2: LOCAL(void) nuclear@2: create_context_buffer (j_compress_ptr cinfo) nuclear@2: { nuclear@2: my_prep_ptr prep = (my_prep_ptr) cinfo->prep; nuclear@2: int rgroup_height = cinfo->max_v_samp_factor; nuclear@2: int ci, i; nuclear@2: jpeg_component_info * compptr; nuclear@2: JSAMPARRAY true_buffer, fake_buffer; nuclear@2: nuclear@2: /* Grab enough space for fake row pointers for all the components; nuclear@2: * we need five row groups' worth of pointers for each component. nuclear@2: */ nuclear@2: fake_buffer = (JSAMPARRAY) nuclear@2: (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@2: (cinfo->num_components * 5 * rgroup_height) * nuclear@2: SIZEOF(JSAMPROW)); nuclear@2: nuclear@2: for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; nuclear@2: ci++, compptr++) { nuclear@2: /* Allocate the actual buffer space (3 row groups) for this component. nuclear@2: * We make the buffer wide enough to allow the downsampler to edge-expand nuclear@2: * horizontally within the buffer, if it so chooses. nuclear@2: */ nuclear@2: true_buffer = (*cinfo->mem->alloc_sarray) nuclear@2: ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@2: (JDIMENSION) (((long) compptr->width_in_blocks * DCTSIZE * nuclear@2: cinfo->max_h_samp_factor) / compptr->h_samp_factor), nuclear@2: (JDIMENSION) (3 * rgroup_height)); nuclear@2: /* Copy true buffer row pointers into the middle of the fake row array */ nuclear@2: MEMCOPY(fake_buffer + rgroup_height, true_buffer, nuclear@2: 3 * rgroup_height * SIZEOF(JSAMPROW)); nuclear@2: /* Fill in the above and below wraparound pointers */ nuclear@2: for (i = 0; i < rgroup_height; i++) { nuclear@2: fake_buffer[i] = true_buffer[2 * rgroup_height + i]; nuclear@2: fake_buffer[4 * rgroup_height + i] = true_buffer[i]; nuclear@2: } nuclear@2: prep->color_buf[ci] = fake_buffer + rgroup_height; nuclear@2: fake_buffer += 5 * rgroup_height; /* point to space for next component */ nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: #endif /* CONTEXT_ROWS_SUPPORTED */ nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Initialize preprocessing controller. nuclear@2: */ nuclear@2: nuclear@2: GLOBAL(void) nuclear@2: jinit_c_prep_controller (j_compress_ptr cinfo, boolean need_full_buffer) nuclear@2: { nuclear@2: my_prep_ptr prep; nuclear@2: int ci; nuclear@2: jpeg_component_info * compptr; nuclear@2: nuclear@2: if (need_full_buffer) /* safety check */ nuclear@2: ERREXIT(cinfo, JERR_BAD_BUFFER_MODE); nuclear@2: nuclear@2: prep = (my_prep_ptr) nuclear@2: (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@2: SIZEOF(my_prep_controller)); nuclear@2: cinfo->prep = (struct jpeg_c_prep_controller *) prep; nuclear@2: prep->pub.start_pass = start_pass_prep; nuclear@2: nuclear@2: /* Allocate the color conversion buffer. nuclear@2: * We make the buffer wide enough to allow the downsampler to edge-expand nuclear@2: * horizontally within the buffer, if it so chooses. nuclear@2: */ nuclear@2: if (cinfo->downsample->need_context_rows) { nuclear@2: /* Set up to provide context rows */ nuclear@2: #ifdef CONTEXT_ROWS_SUPPORTED nuclear@2: prep->pub.pre_process_data = pre_process_context; nuclear@2: create_context_buffer(cinfo); nuclear@2: #else nuclear@2: ERREXIT(cinfo, JERR_NOT_COMPILED); nuclear@2: #endif nuclear@2: } else { nuclear@2: /* No context, just make it tall enough for one row group */ nuclear@2: prep->pub.pre_process_data = pre_process_data; nuclear@2: for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; nuclear@2: ci++, compptr++) { nuclear@2: prep->color_buf[ci] = (*cinfo->mem->alloc_sarray) nuclear@2: ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@2: (JDIMENSION) (((long) compptr->width_in_blocks * DCTSIZE * nuclear@2: cinfo->max_h_samp_factor) / compptr->h_samp_factor), nuclear@2: (JDIMENSION) cinfo->max_v_samp_factor); nuclear@2: } nuclear@2: } nuclear@2: }