Path: blob/master/3rdparty/libjpeg-turbo/src/jdcoefct.h
16337 views
/*1* jdcoefct.h2*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 2009 Pierre Ossman <[email protected]> for Cendio AB7* For conditions of distribution and use, see the accompanying README.ijg8* file.9*/1011#define JPEG_INTERNALS12#include "jpeglib.h"131415/* Block smoothing is only applicable for progressive JPEG, so: */16#ifndef D_PROGRESSIVE_SUPPORTED17#undef BLOCK_SMOOTHING_SUPPORTED18#endif192021/* Private buffer controller object */2223typedef struct {24struct jpeg_d_coef_controller pub; /* public fields */2526/* These variables keep track of the current location of the input side. */27/* cinfo->input_iMCU_row is also used for this. */28JDIMENSION MCU_ctr; /* counts MCUs processed in current row */29int MCU_vert_offset; /* counts MCU rows within iMCU row */30int MCU_rows_per_iMCU_row; /* number of such rows needed */3132/* The output side's location is represented by cinfo->output_iMCU_row. */3334/* In single-pass modes, it's sufficient to buffer just one MCU.35* We allocate a workspace of D_MAX_BLOCKS_IN_MCU coefficient blocks,36* and let the entropy decoder write into that workspace each time.37* In multi-pass modes, this array points to the current MCU's blocks38* within the virtual arrays; it is used only by the input side.39*/40JBLOCKROW MCU_buffer[D_MAX_BLOCKS_IN_MCU];4142/* Temporary workspace for one MCU */43JCOEF *workspace;4445#ifdef D_MULTISCAN_FILES_SUPPORTED46/* In multi-pass modes, we need a virtual block array for each component. */47jvirt_barray_ptr whole_image[MAX_COMPONENTS];48#endif4950#ifdef BLOCK_SMOOTHING_SUPPORTED51/* When doing block smoothing, we latch coefficient Al values here */52int *coef_bits_latch;53#define SAVED_COEFS 6 /* we save coef_bits[0..5] */54#endif55} my_coef_controller;5657typedef my_coef_controller *my_coef_ptr;585960LOCAL(void)61start_iMCU_row (j_decompress_ptr cinfo)62/* Reset within-iMCU-row counters for a new row (input side) */63{64my_coef_ptr coef = (my_coef_ptr) cinfo->coef;6566/* In an interleaved scan, an MCU row is the same as an iMCU row.67* In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.68* But at the bottom of the image, process only what's left.69*/70if (cinfo->comps_in_scan > 1) {71coef->MCU_rows_per_iMCU_row = 1;72} else {73if (cinfo->input_iMCU_row < (cinfo->total_iMCU_rows-1))74coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;75else76coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;77}7879coef->MCU_ctr = 0;80coef->MCU_vert_offset = 0;81}828384