Path: blob/master/thirdparty/libjpeg-turbo/src/jccoefct.c
9904 views
/*1* jccoefct.c2*3* This file was part of the Independent JPEG Group's software:4* Copyright (C) 1994-1997, Thomas G. Lane.5* libjpeg-turbo Modifications:6* Copyright (C) 2022, D. R. Commander.7* For conditions of distribution and use, see the accompanying README.ijg8* file.9*10* This file contains the coefficient buffer controller for compression.11* This controller is the top level of the lossy JPEG compressor proper.12* The coefficient buffer lies between forward-DCT and entropy encoding steps.13*/1415#define JPEG_INTERNALS16#include "jinclude.h"17#include "jpeglib.h"18#include "jsamplecomp.h"192021/* We use a full-image coefficient buffer when doing Huffman optimization,22* and also for writing multiple-scan JPEG files. In all cases, the DCT23* step is run during the first pass, and subsequent passes need only read24* the buffered coefficients.25*/26#ifdef ENTROPY_OPT_SUPPORTED27#define FULL_COEF_BUFFER_SUPPORTED28#else29#ifdef C_MULTISCAN_FILES_SUPPORTED30#define FULL_COEF_BUFFER_SUPPORTED31#endif32#endif333435/* Private buffer controller object */3637typedef struct {38struct jpeg_c_coef_controller pub; /* public fields */3940JDIMENSION iMCU_row_num; /* iMCU row # within image */41JDIMENSION mcu_ctr; /* counts MCUs processed in current row */42int MCU_vert_offset; /* counts MCU rows within iMCU row */43int MCU_rows_per_iMCU_row; /* number of such rows needed */4445/* For single-pass compression, it's sufficient to buffer just one MCU46* (although this may prove a bit slow in practice). We allocate a47* workspace of C_MAX_BLOCKS_IN_MCU coefficient blocks, and reuse it for each48* MCU constructed and sent. In multi-pass modes, this array points to the49* current MCU's blocks within the virtual arrays.50*/51JBLOCKROW MCU_buffer[C_MAX_BLOCKS_IN_MCU];5253/* In multi-pass modes, we need a virtual block array for each component. */54jvirt_barray_ptr whole_image[MAX_COMPONENTS];55} my_coef_controller;5657typedef my_coef_controller *my_coef_ptr;585960/* Forward declarations */61METHODDEF(boolean) compress_data(j_compress_ptr cinfo, _JSAMPIMAGE input_buf);62#ifdef FULL_COEF_BUFFER_SUPPORTED63METHODDEF(boolean) compress_first_pass(j_compress_ptr cinfo,64_JSAMPIMAGE input_buf);65METHODDEF(boolean) compress_output(j_compress_ptr cinfo,66_JSAMPIMAGE input_buf);67#endif686970LOCAL(void)71start_iMCU_row(j_compress_ptr cinfo)72/* Reset within-iMCU-row counters for a new row */73{74my_coef_ptr coef = (my_coef_ptr)cinfo->coef;7576/* In an interleaved scan, an MCU row is the same as an iMCU row.77* In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.78* But at the bottom of the image, process only what's left.79*/80if (cinfo->comps_in_scan > 1) {81coef->MCU_rows_per_iMCU_row = 1;82} else {83if (coef->iMCU_row_num < (cinfo->total_iMCU_rows - 1))84coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;85else86coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;87}8889coef->mcu_ctr = 0;90coef->MCU_vert_offset = 0;91}929394/*95* Initialize for a processing pass.96*/9798METHODDEF(void)99start_pass_coef(j_compress_ptr cinfo, J_BUF_MODE pass_mode)100{101my_coef_ptr coef = (my_coef_ptr)cinfo->coef;102103coef->iMCU_row_num = 0;104start_iMCU_row(cinfo);105106switch (pass_mode) {107case JBUF_PASS_THRU:108if (coef->whole_image[0] != NULL)109ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);110coef->pub._compress_data = compress_data;111break;112#ifdef FULL_COEF_BUFFER_SUPPORTED113case JBUF_SAVE_AND_PASS:114if (coef->whole_image[0] == NULL)115ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);116coef->pub._compress_data = compress_first_pass;117break;118case JBUF_CRANK_DEST:119if (coef->whole_image[0] == NULL)120ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);121coef->pub._compress_data = compress_output;122break;123#endif124default:125ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);126break;127}128}129130131/*132* Process some data in the single-pass case.133* We process the equivalent of one fully interleaved MCU row ("iMCU" row)134* per call, ie, v_samp_factor block rows for each component in the image.135* Returns TRUE if the iMCU row is completed, FALSE if suspended.136*137* NB: input_buf contains a plane for each component in image,138* which we index according to the component's SOF position.139*/140141METHODDEF(boolean)142compress_data(j_compress_ptr cinfo, _JSAMPIMAGE input_buf)143{144my_coef_ptr coef = (my_coef_ptr)cinfo->coef;145JDIMENSION MCU_col_num; /* index of current MCU within row */146JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;147JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;148int blkn, bi, ci, yindex, yoffset, blockcnt;149JDIMENSION ypos, xpos;150jpeg_component_info *compptr;151152/* Loop to write as much as one whole iMCU row */153for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;154yoffset++) {155for (MCU_col_num = coef->mcu_ctr; MCU_col_num <= last_MCU_col;156MCU_col_num++) {157/* Determine where data comes from in input_buf and do the DCT thing.158* Each call on forward_DCT processes a horizontal row of DCT blocks159* as wide as an MCU; we rely on having allocated the MCU_buffer[] blocks160* sequentially. Dummy blocks at the right or bottom edge are filled in161* specially. The data in them does not matter for image reconstruction,162* so we fill them with values that will encode to the smallest amount of163* data, viz: all zeroes in the AC entries, DC entries equal to previous164* block's DC value. (Thanks to Thomas Kinsman for this idea.)165*/166blkn = 0;167for (ci = 0; ci < cinfo->comps_in_scan; ci++) {168compptr = cinfo->cur_comp_info[ci];169blockcnt = (MCU_col_num < last_MCU_col) ? compptr->MCU_width :170compptr->last_col_width;171xpos = MCU_col_num * compptr->MCU_sample_width;172ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */173for (yindex = 0; yindex < compptr->MCU_height; yindex++) {174if (coef->iMCU_row_num < last_iMCU_row ||175yoffset + yindex < compptr->last_row_height) {176(*cinfo->fdct->_forward_DCT) (cinfo, compptr,177input_buf[compptr->component_index],178coef->MCU_buffer[blkn],179ypos, xpos, (JDIMENSION)blockcnt);180if (blockcnt < compptr->MCU_width) {181/* Create some dummy blocks at the right edge of the image. */182jzero_far((void *)coef->MCU_buffer[blkn + blockcnt],183(compptr->MCU_width - blockcnt) * sizeof(JBLOCK));184for (bi = blockcnt; bi < compptr->MCU_width; bi++) {185coef->MCU_buffer[blkn + bi][0][0] =186coef->MCU_buffer[blkn + bi - 1][0][0];187}188}189} else {190/* Create a row of dummy blocks at the bottom of the image. */191jzero_far((void *)coef->MCU_buffer[blkn],192compptr->MCU_width * sizeof(JBLOCK));193for (bi = 0; bi < compptr->MCU_width; bi++) {194coef->MCU_buffer[blkn + bi][0][0] =195coef->MCU_buffer[blkn - 1][0][0];196}197}198blkn += compptr->MCU_width;199ypos += DCTSIZE;200}201}202/* Try to write the MCU. In event of a suspension failure, we will203* re-DCT the MCU on restart (a bit inefficient, could be fixed...)204*/205if (!(*cinfo->entropy->encode_mcu) (cinfo, coef->MCU_buffer)) {206/* Suspension forced; update state counters and exit */207coef->MCU_vert_offset = yoffset;208coef->mcu_ctr = MCU_col_num;209return FALSE;210}211}212/* Completed an MCU row, but perhaps not an iMCU row */213coef->mcu_ctr = 0;214}215/* Completed the iMCU row, advance counters for next one */216coef->iMCU_row_num++;217start_iMCU_row(cinfo);218return TRUE;219}220221222#ifdef FULL_COEF_BUFFER_SUPPORTED223224/*225* Process some data in the first pass of a multi-pass case.226* We process the equivalent of one fully interleaved MCU row ("iMCU" row)227* per call, ie, v_samp_factor block rows for each component in the image.228* This amount of data is read from the source buffer, DCT'd and quantized,229* and saved into the virtual arrays. We also generate suitable dummy blocks230* as needed at the right and lower edges. (The dummy blocks are constructed231* in the virtual arrays, which have been padded appropriately.) This makes232* it possible for subsequent passes not to worry about real vs. dummy blocks.233*234* We must also emit the data to the entropy encoder. This is conveniently235* done by calling compress_output() after we've loaded the current strip236* of the virtual arrays.237*238* NB: input_buf contains a plane for each component in image. All239* components are DCT'd and loaded into the virtual arrays in this pass.240* However, it may be that only a subset of the components are emitted to241* the entropy encoder during this first pass; be careful about looking242* at the scan-dependent variables (MCU dimensions, etc).243*/244245METHODDEF(boolean)246compress_first_pass(j_compress_ptr cinfo, _JSAMPIMAGE input_buf)247{248my_coef_ptr coef = (my_coef_ptr)cinfo->coef;249JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;250JDIMENSION blocks_across, MCUs_across, MCUindex;251int bi, ci, h_samp_factor, block_row, block_rows, ndummy;252JCOEF lastDC;253jpeg_component_info *compptr;254JBLOCKARRAY buffer;255JBLOCKROW thisblockrow, lastblockrow;256257for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;258ci++, compptr++) {259/* Align the virtual buffer for this component. */260buffer = (*cinfo->mem->access_virt_barray)261((j_common_ptr)cinfo, coef->whole_image[ci],262coef->iMCU_row_num * compptr->v_samp_factor,263(JDIMENSION)compptr->v_samp_factor, TRUE);264/* Count non-dummy DCT block rows in this iMCU row. */265if (coef->iMCU_row_num < last_iMCU_row)266block_rows = compptr->v_samp_factor;267else {268/* NB: can't use last_row_height here, since may not be set! */269block_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor);270if (block_rows == 0) block_rows = compptr->v_samp_factor;271}272blocks_across = compptr->width_in_blocks;273h_samp_factor = compptr->h_samp_factor;274/* Count number of dummy blocks to be added at the right margin. */275ndummy = (int)(blocks_across % h_samp_factor);276if (ndummy > 0)277ndummy = h_samp_factor - ndummy;278/* Perform DCT for all non-dummy blocks in this iMCU row. Each call279* on forward_DCT processes a complete horizontal row of DCT blocks.280*/281for (block_row = 0; block_row < block_rows; block_row++) {282thisblockrow = buffer[block_row];283(*cinfo->fdct->_forward_DCT) (cinfo, compptr,284input_buf[ci], thisblockrow,285(JDIMENSION)(block_row * DCTSIZE),286(JDIMENSION)0, blocks_across);287if (ndummy > 0) {288/* Create dummy blocks at the right edge of the image. */289thisblockrow += blocks_across; /* => first dummy block */290jzero_far((void *)thisblockrow, ndummy * sizeof(JBLOCK));291lastDC = thisblockrow[-1][0];292for (bi = 0; bi < ndummy; bi++) {293thisblockrow[bi][0] = lastDC;294}295}296}297/* If at end of image, create dummy block rows as needed.298* The tricky part here is that within each MCU, we want the DC values299* of the dummy blocks to match the last real block's DC value.300* This squeezes a few more bytes out of the resulting file...301*/302if (coef->iMCU_row_num == last_iMCU_row) {303blocks_across += ndummy; /* include lower right corner */304MCUs_across = blocks_across / h_samp_factor;305for (block_row = block_rows; block_row < compptr->v_samp_factor;306block_row++) {307thisblockrow = buffer[block_row];308lastblockrow = buffer[block_row - 1];309jzero_far((void *)thisblockrow,310(size_t)(blocks_across * sizeof(JBLOCK)));311for (MCUindex = 0; MCUindex < MCUs_across; MCUindex++) {312lastDC = lastblockrow[h_samp_factor - 1][0];313for (bi = 0; bi < h_samp_factor; bi++) {314thisblockrow[bi][0] = lastDC;315}316thisblockrow += h_samp_factor; /* advance to next MCU in row */317lastblockrow += h_samp_factor;318}319}320}321}322/* NB: compress_output will increment iMCU_row_num if successful.323* A suspension return will result in redoing all the work above next time.324*/325326/* Emit data to the entropy encoder, sharing code with subsequent passes */327return compress_output(cinfo, input_buf);328}329330331/*332* Process some data in subsequent passes of a multi-pass case.333* We process the equivalent of one fully interleaved MCU row ("iMCU" row)334* per call, ie, v_samp_factor block rows for each component in the scan.335* The data is obtained from the virtual arrays and fed to the entropy coder.336* Returns TRUE if the iMCU row is completed, FALSE if suspended.337*338* NB: input_buf is ignored; it is likely to be a NULL pointer.339*/340341METHODDEF(boolean)342compress_output(j_compress_ptr cinfo, _JSAMPIMAGE input_buf)343{344my_coef_ptr coef = (my_coef_ptr)cinfo->coef;345JDIMENSION MCU_col_num; /* index of current MCU within row */346int blkn, ci, xindex, yindex, yoffset;347JDIMENSION start_col;348JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];349JBLOCKROW buffer_ptr;350jpeg_component_info *compptr;351352/* Align the virtual buffers for the components used in this scan.353* NB: during first pass, this is safe only because the buffers will354* already be aligned properly, so jmemmgr.c won't need to do any I/O.355*/356for (ci = 0; ci < cinfo->comps_in_scan; ci++) {357compptr = cinfo->cur_comp_info[ci];358buffer[ci] = (*cinfo->mem->access_virt_barray)359((j_common_ptr)cinfo, coef->whole_image[compptr->component_index],360coef->iMCU_row_num * compptr->v_samp_factor,361(JDIMENSION)compptr->v_samp_factor, FALSE);362}363364/* Loop to process one whole iMCU row */365for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;366yoffset++) {367for (MCU_col_num = coef->mcu_ctr; MCU_col_num < cinfo->MCUs_per_row;368MCU_col_num++) {369/* Construct list of pointers to DCT blocks belonging to this MCU */370blkn = 0; /* index of current DCT block within MCU */371for (ci = 0; ci < cinfo->comps_in_scan; ci++) {372compptr = cinfo->cur_comp_info[ci];373start_col = MCU_col_num * compptr->MCU_width;374for (yindex = 0; yindex < compptr->MCU_height; yindex++) {375buffer_ptr = buffer[ci][yindex + yoffset] + start_col;376for (xindex = 0; xindex < compptr->MCU_width; xindex++) {377coef->MCU_buffer[blkn++] = buffer_ptr++;378}379}380}381/* Try to write the MCU. */382if (!(*cinfo->entropy->encode_mcu) (cinfo, coef->MCU_buffer)) {383/* Suspension forced; update state counters and exit */384coef->MCU_vert_offset = yoffset;385coef->mcu_ctr = MCU_col_num;386return FALSE;387}388}389/* Completed an MCU row, but perhaps not an iMCU row */390coef->mcu_ctr = 0;391}392/* Completed the iMCU row, advance counters for next one */393coef->iMCU_row_num++;394start_iMCU_row(cinfo);395return TRUE;396}397398#endif /* FULL_COEF_BUFFER_SUPPORTED */399400401/*402* Initialize coefficient buffer controller.403*/404405GLOBAL(void)406_jinit_c_coef_controller(j_compress_ptr cinfo, boolean need_full_buffer)407{408my_coef_ptr coef;409410if (cinfo->data_precision != BITS_IN_JSAMPLE)411ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);412413coef = (my_coef_ptr)414(*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,415sizeof(my_coef_controller));416cinfo->coef = (struct jpeg_c_coef_controller *)coef;417coef->pub.start_pass = start_pass_coef;418419/* Create the coefficient buffer. */420if (need_full_buffer) {421#ifdef FULL_COEF_BUFFER_SUPPORTED422/* Allocate a full-image virtual array for each component, */423/* padded to a multiple of samp_factor DCT blocks in each direction. */424int ci;425jpeg_component_info *compptr;426427for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;428ci++, compptr++) {429coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)430((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,431(JDIMENSION)jround_up((long)compptr->width_in_blocks,432(long)compptr->h_samp_factor),433(JDIMENSION)jround_up((long)compptr->height_in_blocks,434(long)compptr->v_samp_factor),435(JDIMENSION)compptr->v_samp_factor);436}437#else438ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);439#endif440} else {441/* We only need a single-MCU buffer. */442JBLOCKROW buffer;443int i;444445buffer = (JBLOCKROW)446(*cinfo->mem->alloc_large) ((j_common_ptr)cinfo, JPOOL_IMAGE,447C_MAX_BLOCKS_IN_MCU * sizeof(JBLOCK));448for (i = 0; i < C_MAX_BLOCKS_IN_MCU; i++) {449coef->MCU_buffer[i] = buffer + i;450}451coef->whole_image[0] = NULL; /* flag for no virtual arrays */452}453}454455456