Path: blob/master/3rdparty/libjpeg-turbo/src/jcprepct.c
16337 views
/*1* jcprepct.c2*3* This file is part of the Independent JPEG Group's software:4* Copyright (C) 1994-1996, Thomas G. Lane.5* It was modified by The libjpeg-turbo Project to include only code relevant6* to libjpeg-turbo.7* For conditions of distribution and use, see the accompanying README.ijg8* file.9*10* This file contains the compression preprocessing controller.11* This controller manages the color conversion, downsampling,12* and edge expansion steps.13*14* Most of the complexity here is associated with buffering input rows15* as required by the downsampler. See the comments at the head of16* jcsample.c for the downsampler's needs.17*/1819#define JPEG_INTERNALS20#include "jinclude.h"21#include "jpeglib.h"222324/* At present, jcsample.c can request context rows only for smoothing.25* In the future, we might also need context rows for CCIR601 sampling26* or other more-complex downsampling procedures. The code to support27* context rows should be compiled only if needed.28*/29#ifdef INPUT_SMOOTHING_SUPPORTED30#define CONTEXT_ROWS_SUPPORTED31#endif323334/*35* For the simple (no-context-row) case, we just need to buffer one36* row group's worth of pixels for the downsampling step. At the bottom of37* the image, we pad to a full row group by replicating the last pixel row.38* The downsampler's last output row is then replicated if needed to pad39* out to a full iMCU row.40*41* When providing context rows, we must buffer three row groups' worth of42* pixels. Three row groups are physically allocated, but the row pointer43* arrays are made five row groups high, with the extra pointers above and44* below "wrapping around" to point to the last and first real row groups.45* This allows the downsampler to access the proper context rows.46* At the top and bottom of the image, we create dummy context rows by47* copying the first or last real pixel row. This copying could be avoided48* by pointer hacking as is done in jdmainct.c, but it doesn't seem worth the49* trouble on the compression side.50*/515253/* Private buffer controller object */5455typedef struct {56struct jpeg_c_prep_controller pub; /* public fields */5758/* Downsampling input buffer. This buffer holds color-converted data59* until we have enough to do a downsample step.60*/61JSAMPARRAY color_buf[MAX_COMPONENTS];6263JDIMENSION rows_to_go; /* counts rows remaining in source image */64int next_buf_row; /* index of next row to store in color_buf */6566#ifdef CONTEXT_ROWS_SUPPORTED /* only needed for context case */67int this_row_group; /* starting row index of group to process */68int next_buf_stop; /* downsample when we reach this index */69#endif70} my_prep_controller;7172typedef my_prep_controller *my_prep_ptr;737475/*76* Initialize for a processing pass.77*/7879METHODDEF(void)80start_pass_prep (j_compress_ptr cinfo, J_BUF_MODE pass_mode)81{82my_prep_ptr prep = (my_prep_ptr) cinfo->prep;8384if (pass_mode != JBUF_PASS_THRU)85ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);8687/* Initialize total-height counter for detecting bottom of image */88prep->rows_to_go = cinfo->image_height;89/* Mark the conversion buffer empty */90prep->next_buf_row = 0;91#ifdef CONTEXT_ROWS_SUPPORTED92/* Preset additional state variables for context mode.93* These aren't used in non-context mode, so we needn't test which mode.94*/95prep->this_row_group = 0;96/* Set next_buf_stop to stop after two row groups have been read in. */97prep->next_buf_stop = 2 * cinfo->max_v_samp_factor;98#endif99}100101102/*103* Expand an image vertically from height input_rows to height output_rows,104* by duplicating the bottom row.105*/106107LOCAL(void)108expand_bottom_edge (JSAMPARRAY image_data, JDIMENSION num_cols,109int input_rows, int output_rows)110{111register int row;112113for (row = input_rows; row < output_rows; row++) {114jcopy_sample_rows(image_data, input_rows-1, image_data, row,1151, num_cols);116}117}118119120/*121* Process some data in the simple no-context case.122*123* Preprocessor output data is counted in "row groups". A row group124* is defined to be v_samp_factor sample rows of each component.125* Downsampling will produce this much data from each max_v_samp_factor126* input rows.127*/128129METHODDEF(void)130pre_process_data (j_compress_ptr cinfo,131JSAMPARRAY input_buf, JDIMENSION *in_row_ctr,132JDIMENSION in_rows_avail,133JSAMPIMAGE output_buf, JDIMENSION *out_row_group_ctr,134JDIMENSION out_row_groups_avail)135{136my_prep_ptr prep = (my_prep_ptr) cinfo->prep;137int numrows, ci;138JDIMENSION inrows;139jpeg_component_info *compptr;140141while (*in_row_ctr < in_rows_avail &&142*out_row_group_ctr < out_row_groups_avail) {143/* Do color conversion to fill the conversion buffer. */144inrows = in_rows_avail - *in_row_ctr;145numrows = cinfo->max_v_samp_factor - prep->next_buf_row;146numrows = (int) MIN((JDIMENSION) numrows, inrows);147(*cinfo->cconvert->color_convert) (cinfo, input_buf + *in_row_ctr,148prep->color_buf,149(JDIMENSION) prep->next_buf_row,150numrows);151*in_row_ctr += numrows;152prep->next_buf_row += numrows;153prep->rows_to_go -= numrows;154/* If at bottom of image, pad to fill the conversion buffer. */155if (prep->rows_to_go == 0 &&156prep->next_buf_row < cinfo->max_v_samp_factor) {157for (ci = 0; ci < cinfo->num_components; ci++) {158expand_bottom_edge(prep->color_buf[ci], cinfo->image_width,159prep->next_buf_row, cinfo->max_v_samp_factor);160}161prep->next_buf_row = cinfo->max_v_samp_factor;162}163/* If we've filled the conversion buffer, empty it. */164if (prep->next_buf_row == cinfo->max_v_samp_factor) {165(*cinfo->downsample->downsample) (cinfo,166prep->color_buf, (JDIMENSION) 0,167output_buf, *out_row_group_ctr);168prep->next_buf_row = 0;169(*out_row_group_ctr)++;170}171/* If at bottom of image, pad the output to a full iMCU height.172* Note we assume the caller is providing a one-iMCU-height output buffer!173*/174if (prep->rows_to_go == 0 &&175*out_row_group_ctr < out_row_groups_avail) {176for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;177ci++, compptr++) {178expand_bottom_edge(output_buf[ci],179compptr->width_in_blocks * DCTSIZE,180(int) (*out_row_group_ctr * compptr->v_samp_factor),181(int) (out_row_groups_avail * compptr->v_samp_factor));182}183*out_row_group_ctr = out_row_groups_avail;184break; /* can exit outer loop without test */185}186}187}188189190#ifdef CONTEXT_ROWS_SUPPORTED191192/*193* Process some data in the context case.194*/195196METHODDEF(void)197pre_process_context (j_compress_ptr cinfo,198JSAMPARRAY input_buf, JDIMENSION *in_row_ctr,199JDIMENSION in_rows_avail,200JSAMPIMAGE output_buf, JDIMENSION *out_row_group_ctr,201JDIMENSION out_row_groups_avail)202{203my_prep_ptr prep = (my_prep_ptr) cinfo->prep;204int numrows, ci;205int buf_height = cinfo->max_v_samp_factor * 3;206JDIMENSION inrows;207208while (*out_row_group_ctr < out_row_groups_avail) {209if (*in_row_ctr < in_rows_avail) {210/* Do color conversion to fill the conversion buffer. */211inrows = in_rows_avail - *in_row_ctr;212numrows = prep->next_buf_stop - prep->next_buf_row;213numrows = (int) MIN((JDIMENSION) numrows, inrows);214(*cinfo->cconvert->color_convert) (cinfo, input_buf + *in_row_ctr,215prep->color_buf,216(JDIMENSION) prep->next_buf_row,217numrows);218/* Pad at top of image, if first time through */219if (prep->rows_to_go == cinfo->image_height) {220for (ci = 0; ci < cinfo->num_components; ci++) {221int row;222for (row = 1; row <= cinfo->max_v_samp_factor; row++) {223jcopy_sample_rows(prep->color_buf[ci], 0,224prep->color_buf[ci], -row,2251, cinfo->image_width);226}227}228}229*in_row_ctr += numrows;230prep->next_buf_row += numrows;231prep->rows_to_go -= numrows;232} else {233/* Return for more data, unless we are at the bottom of the image. */234if (prep->rows_to_go != 0)235break;236/* When at bottom of image, pad to fill the conversion buffer. */237if (prep->next_buf_row < prep->next_buf_stop) {238for (ci = 0; ci < cinfo->num_components; ci++) {239expand_bottom_edge(prep->color_buf[ci], cinfo->image_width,240prep->next_buf_row, prep->next_buf_stop);241}242prep->next_buf_row = prep->next_buf_stop;243}244}245/* If we've gotten enough data, downsample a row group. */246if (prep->next_buf_row == prep->next_buf_stop) {247(*cinfo->downsample->downsample) (cinfo,248prep->color_buf,249(JDIMENSION) prep->this_row_group,250output_buf, *out_row_group_ctr);251(*out_row_group_ctr)++;252/* Advance pointers with wraparound as necessary. */253prep->this_row_group += cinfo->max_v_samp_factor;254if (prep->this_row_group >= buf_height)255prep->this_row_group = 0;256if (prep->next_buf_row >= buf_height)257prep->next_buf_row = 0;258prep->next_buf_stop = prep->next_buf_row + cinfo->max_v_samp_factor;259}260}261}262263264/*265* Create the wrapped-around downsampling input buffer needed for context mode.266*/267268LOCAL(void)269create_context_buffer (j_compress_ptr cinfo)270{271my_prep_ptr prep = (my_prep_ptr) cinfo->prep;272int rgroup_height = cinfo->max_v_samp_factor;273int ci, i;274jpeg_component_info *compptr;275JSAMPARRAY true_buffer, fake_buffer;276277/* Grab enough space for fake row pointers for all the components;278* we need five row groups' worth of pointers for each component.279*/280fake_buffer = (JSAMPARRAY)281(*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,282(cinfo->num_components * 5 * rgroup_height) *283sizeof(JSAMPROW));284285for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;286ci++, compptr++) {287/* Allocate the actual buffer space (3 row groups) for this component.288* We make the buffer wide enough to allow the downsampler to edge-expand289* horizontally within the buffer, if it so chooses.290*/291true_buffer = (*cinfo->mem->alloc_sarray)292((j_common_ptr) cinfo, JPOOL_IMAGE,293(JDIMENSION) (((long) compptr->width_in_blocks * DCTSIZE *294cinfo->max_h_samp_factor) / compptr->h_samp_factor),295(JDIMENSION) (3 * rgroup_height));296/* Copy true buffer row pointers into the middle of the fake row array */297MEMCOPY(fake_buffer + rgroup_height, true_buffer,2983 * rgroup_height * sizeof(JSAMPROW));299/* Fill in the above and below wraparound pointers */300for (i = 0; i < rgroup_height; i++) {301fake_buffer[i] = true_buffer[2 * rgroup_height + i];302fake_buffer[4 * rgroup_height + i] = true_buffer[i];303}304prep->color_buf[ci] = fake_buffer + rgroup_height;305fake_buffer += 5 * rgroup_height; /* point to space for next component */306}307}308309#endif /* CONTEXT_ROWS_SUPPORTED */310311312/*313* Initialize preprocessing controller.314*/315316GLOBAL(void)317jinit_c_prep_controller (j_compress_ptr cinfo, boolean need_full_buffer)318{319my_prep_ptr prep;320int ci;321jpeg_component_info *compptr;322323if (need_full_buffer) /* safety check */324ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);325326prep = (my_prep_ptr)327(*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,328sizeof(my_prep_controller));329cinfo->prep = (struct jpeg_c_prep_controller *) prep;330prep->pub.start_pass = start_pass_prep;331332/* Allocate the color conversion buffer.333* We make the buffer wide enough to allow the downsampler to edge-expand334* horizontally within the buffer, if it so chooses.335*/336if (cinfo->downsample->need_context_rows) {337/* Set up to provide context rows */338#ifdef CONTEXT_ROWS_SUPPORTED339prep->pub.pre_process_data = pre_process_context;340create_context_buffer(cinfo);341#else342ERREXIT(cinfo, JERR_NOT_COMPILED);343#endif344} else {345/* No context, just make it tall enough for one row group */346prep->pub.pre_process_data = pre_process_data;347for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;348ci++, compptr++) {349prep->color_buf[ci] = (*cinfo->mem->alloc_sarray)350((j_common_ptr) cinfo, JPOOL_IMAGE,351(JDIMENSION) (((long) compptr->width_in_blocks * DCTSIZE *352cinfo->max_h_samp_factor) / compptr->h_samp_factor),353(JDIMENSION) cinfo->max_v_samp_factor);354}355}356}357358359