Path: blob/master/3rdparty/libjpeg-turbo/src/jcparam.c
16337 views
/*1* jcparam.c2*3* This file was part of the Independent JPEG Group's software:4* Copyright (C) 1991-1998, Thomas G. Lane.5* Modified 2003-2008 by Guido Vollbeding.6* libjpeg-turbo Modifications:7* Copyright (C) 2009-2011, D. R. Commander.8* For conditions of distribution and use, see the accompanying README.ijg9* file.10*11* This file contains optional default-setting code for the JPEG compressor.12* Applications do not have to use this file, but those that don't use it13* must know a lot more about the innards of the JPEG code.14*/1516#define JPEG_INTERNALS17#include "jinclude.h"18#include "jpeglib.h"19#include "jstdhuff.c"202122/*23* Quantization table setup routines24*/2526GLOBAL(void)27jpeg_add_quant_table (j_compress_ptr cinfo, int which_tbl,28const unsigned int *basic_table,29int scale_factor, boolean force_baseline)30/* Define a quantization table equal to the basic_table times31* a scale factor (given as a percentage).32* If force_baseline is TRUE, the computed quantization table entries33* are limited to 1..255 for JPEG baseline compatibility.34*/35{36JQUANT_TBL **qtblptr;37int i;38long temp;3940/* Safety check to ensure start_compress not called yet. */41if (cinfo->global_state != CSTATE_START)42ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);4344if (which_tbl < 0 || which_tbl >= NUM_QUANT_TBLS)45ERREXIT1(cinfo, JERR_DQT_INDEX, which_tbl);4647qtblptr = & cinfo->quant_tbl_ptrs[which_tbl];4849if (*qtblptr == NULL)50*qtblptr = jpeg_alloc_quant_table((j_common_ptr) cinfo);5152for (i = 0; i < DCTSIZE2; i++) {53temp = ((long) basic_table[i] * scale_factor + 50L) / 100L;54/* limit the values to the valid range */55if (temp <= 0L) temp = 1L;56if (temp > 32767L) temp = 32767L; /* max quantizer needed for 12 bits */57if (force_baseline && temp > 255L)58temp = 255L; /* limit to baseline range if requested */59(*qtblptr)->quantval[i] = (UINT16) temp;60}6162/* Initialize sent_table FALSE so table will be written to JPEG file. */63(*qtblptr)->sent_table = FALSE;64}656667/* These are the sample quantization tables given in JPEG spec section K.1.68* The spec says that the values given produce "good" quality, and69* when divided by 2, "very good" quality.70*/71static const unsigned int std_luminance_quant_tbl[DCTSIZE2] = {7216, 11, 10, 16, 24, 40, 51, 61,7312, 12, 14, 19, 26, 58, 60, 55,7414, 13, 16, 24, 40, 57, 69, 56,7514, 17, 22, 29, 51, 87, 80, 62,7618, 22, 37, 56, 68, 109, 103, 77,7724, 35, 55, 64, 81, 104, 113, 92,7849, 64, 78, 87, 103, 121, 120, 101,7972, 92, 95, 98, 112, 100, 103, 9980};81static const unsigned int std_chrominance_quant_tbl[DCTSIZE2] = {8217, 18, 24, 47, 99, 99, 99, 99,8318, 21, 26, 66, 99, 99, 99, 99,8424, 26, 56, 99, 99, 99, 99, 99,8547, 66, 99, 99, 99, 99, 99, 99,8699, 99, 99, 99, 99, 99, 99, 99,8799, 99, 99, 99, 99, 99, 99, 99,8899, 99, 99, 99, 99, 99, 99, 99,8999, 99, 99, 99, 99, 99, 99, 9990};919293#if JPEG_LIB_VERSION >= 7094GLOBAL(void)95jpeg_default_qtables (j_compress_ptr cinfo, boolean force_baseline)96/* Set or change the 'quality' (quantization) setting, using default tables97* and straight percentage-scaling quality scales.98* This entry point allows different scalings for luminance and chrominance.99*/100{101/* Set up two quantization tables using the specified scaling */102jpeg_add_quant_table(cinfo, 0, std_luminance_quant_tbl,103cinfo->q_scale_factor[0], force_baseline);104jpeg_add_quant_table(cinfo, 1, std_chrominance_quant_tbl,105cinfo->q_scale_factor[1], force_baseline);106}107#endif108109110GLOBAL(void)111jpeg_set_linear_quality (j_compress_ptr cinfo, int scale_factor,112boolean force_baseline)113/* Set or change the 'quality' (quantization) setting, using default tables114* and a straight percentage-scaling quality scale. In most cases it's better115* to use jpeg_set_quality (below); this entry point is provided for116* applications that insist on a linear percentage scaling.117*/118{119/* Set up two quantization tables using the specified scaling */120jpeg_add_quant_table(cinfo, 0, std_luminance_quant_tbl,121scale_factor, force_baseline);122jpeg_add_quant_table(cinfo, 1, std_chrominance_quant_tbl,123scale_factor, force_baseline);124}125126127GLOBAL(int)128jpeg_quality_scaling (int quality)129/* Convert a user-specified quality rating to a percentage scaling factor130* for an underlying quantization table, using our recommended scaling curve.131* The input 'quality' factor should be 0 (terrible) to 100 (very good).132*/133{134/* Safety limit on quality factor. Convert 0 to 1 to avoid zero divide. */135if (quality <= 0) quality = 1;136if (quality > 100) quality = 100;137138/* The basic table is used as-is (scaling 100) for a quality of 50.139* Qualities 50..100 are converted to scaling percentage 200 - 2*Q;140* note that at Q=100 the scaling is 0, which will cause jpeg_add_quant_table141* to make all the table entries 1 (hence, minimum quantization loss).142* Qualities 1..50 are converted to scaling percentage 5000/Q.143*/144if (quality < 50)145quality = 5000 / quality;146else147quality = 200 - quality*2;148149return quality;150}151152153GLOBAL(void)154jpeg_set_quality (j_compress_ptr cinfo, int quality, boolean force_baseline)155/* Set or change the 'quality' (quantization) setting, using default tables.156* This is the standard quality-adjusting entry point for typical user157* interfaces; only those who want detailed control over quantization tables158* would use the preceding three routines directly.159*/160{161/* Convert user 0-100 rating to percentage scaling */162quality = jpeg_quality_scaling(quality);163164/* Set up standard quality tables */165jpeg_set_linear_quality(cinfo, quality, force_baseline);166}167168169/*170* Default parameter setup for compression.171*172* Applications that don't choose to use this routine must do their173* own setup of all these parameters. Alternately, you can call this174* to establish defaults and then alter parameters selectively. This175* is the recommended approach since, if we add any new parameters,176* your code will still work (they'll be set to reasonable defaults).177*/178179GLOBAL(void)180jpeg_set_defaults (j_compress_ptr cinfo)181{182int i;183184/* Safety check to ensure start_compress not called yet. */185if (cinfo->global_state != CSTATE_START)186ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);187188/* Allocate comp_info array large enough for maximum component count.189* Array is made permanent in case application wants to compress190* multiple images at same param settings.191*/192if (cinfo->comp_info == NULL)193cinfo->comp_info = (jpeg_component_info *)194(*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,195MAX_COMPONENTS * sizeof(jpeg_component_info));196197/* Initialize everything not dependent on the color space */198199#if JPEG_LIB_VERSION >= 70200cinfo->scale_num = 1; /* 1:1 scaling */201cinfo->scale_denom = 1;202#endif203cinfo->data_precision = BITS_IN_JSAMPLE;204/* Set up two quantization tables using default quality of 75 */205jpeg_set_quality(cinfo, 75, TRUE);206/* Set up two Huffman tables */207std_huff_tables((j_common_ptr) cinfo);208209/* Initialize default arithmetic coding conditioning */210for (i = 0; i < NUM_ARITH_TBLS; i++) {211cinfo->arith_dc_L[i] = 0;212cinfo->arith_dc_U[i] = 1;213cinfo->arith_ac_K[i] = 5;214}215216/* Default is no multiple-scan output */217cinfo->scan_info = NULL;218cinfo->num_scans = 0;219220/* Expect normal source image, not raw downsampled data */221cinfo->raw_data_in = FALSE;222223/* Use Huffman coding, not arithmetic coding, by default */224cinfo->arith_code = FALSE;225226/* By default, don't do extra passes to optimize entropy coding */227cinfo->optimize_coding = FALSE;228/* The standard Huffman tables are only valid for 8-bit data precision.229* If the precision is higher, force optimization on so that usable230* tables will be computed. This test can be removed if default tables231* are supplied that are valid for the desired precision.232*/233if (cinfo->data_precision > 8)234cinfo->optimize_coding = TRUE;235236/* By default, use the simpler non-cosited sampling alignment */237cinfo->CCIR601_sampling = FALSE;238239#if JPEG_LIB_VERSION >= 70240/* By default, apply fancy downsampling */241cinfo->do_fancy_downsampling = TRUE;242#endif243244/* No input smoothing */245cinfo->smoothing_factor = 0;246247/* DCT algorithm preference */248cinfo->dct_method = JDCT_DEFAULT;249250/* No restart markers */251cinfo->restart_interval = 0;252cinfo->restart_in_rows = 0;253254/* Fill in default JFIF marker parameters. Note that whether the marker255* will actually be written is determined by jpeg_set_colorspace.256*257* By default, the library emits JFIF version code 1.01.258* An application that wants to emit JFIF 1.02 extension markers should set259* JFIF_minor_version to 2. We could probably get away with just defaulting260* to 1.02, but there may still be some decoders in use that will complain261* about that; saying 1.01 should minimize compatibility problems.262*/263cinfo->JFIF_major_version = 1; /* Default JFIF version = 1.01 */264cinfo->JFIF_minor_version = 1;265cinfo->density_unit = 0; /* Pixel size is unknown by default */266cinfo->X_density = 1; /* Pixel aspect ratio is square by default */267cinfo->Y_density = 1;268269/* Choose JPEG colorspace based on input space, set defaults accordingly */270271jpeg_default_colorspace(cinfo);272}273274275/*276* Select an appropriate JPEG colorspace for in_color_space.277*/278279GLOBAL(void)280jpeg_default_colorspace (j_compress_ptr cinfo)281{282switch (cinfo->in_color_space) {283case JCS_GRAYSCALE:284jpeg_set_colorspace(cinfo, JCS_GRAYSCALE);285break;286case JCS_RGB:287case JCS_EXT_RGB:288case JCS_EXT_RGBX:289case JCS_EXT_BGR:290case JCS_EXT_BGRX:291case JCS_EXT_XBGR:292case JCS_EXT_XRGB:293case JCS_EXT_RGBA:294case JCS_EXT_BGRA:295case JCS_EXT_ABGR:296case JCS_EXT_ARGB:297jpeg_set_colorspace(cinfo, JCS_YCbCr);298break;299case JCS_YCbCr:300jpeg_set_colorspace(cinfo, JCS_YCbCr);301break;302case JCS_CMYK:303jpeg_set_colorspace(cinfo, JCS_CMYK); /* By default, no translation */304break;305case JCS_YCCK:306jpeg_set_colorspace(cinfo, JCS_YCCK);307break;308case JCS_UNKNOWN:309jpeg_set_colorspace(cinfo, JCS_UNKNOWN);310break;311default:312ERREXIT(cinfo, JERR_BAD_IN_COLORSPACE);313}314}315316317/*318* Set the JPEG colorspace, and choose colorspace-dependent default values.319*/320321GLOBAL(void)322jpeg_set_colorspace (j_compress_ptr cinfo, J_COLOR_SPACE colorspace)323{324jpeg_component_info *compptr;325int ci;326327#define SET_COMP(index,id,hsamp,vsamp,quant,dctbl,actbl) \328(compptr = &cinfo->comp_info[index], \329compptr->component_id = (id), \330compptr->h_samp_factor = (hsamp), \331compptr->v_samp_factor = (vsamp), \332compptr->quant_tbl_no = (quant), \333compptr->dc_tbl_no = (dctbl), \334compptr->ac_tbl_no = (actbl) )335336/* Safety check to ensure start_compress not called yet. */337if (cinfo->global_state != CSTATE_START)338ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);339340/* For all colorspaces, we use Q and Huff tables 0 for luminance components,341* tables 1 for chrominance components.342*/343344cinfo->jpeg_color_space = colorspace;345346cinfo->write_JFIF_header = FALSE; /* No marker for non-JFIF colorspaces */347cinfo->write_Adobe_marker = FALSE; /* write no Adobe marker by default */348349switch (colorspace) {350case JCS_GRAYSCALE:351cinfo->write_JFIF_header = TRUE; /* Write a JFIF marker */352cinfo->num_components = 1;353/* JFIF specifies component ID 1 */354SET_COMP(0, 1, 1,1, 0, 0,0);355break;356case JCS_RGB:357cinfo->write_Adobe_marker = TRUE; /* write Adobe marker to flag RGB */358cinfo->num_components = 3;359SET_COMP(0, 0x52 /* 'R' */, 1,1, 0, 0,0);360SET_COMP(1, 0x47 /* 'G' */, 1,1, 0, 0,0);361SET_COMP(2, 0x42 /* 'B' */, 1,1, 0, 0,0);362break;363case JCS_YCbCr:364cinfo->write_JFIF_header = TRUE; /* Write a JFIF marker */365cinfo->num_components = 3;366/* JFIF specifies component IDs 1,2,3 */367/* We default to 2x2 subsamples of chrominance */368SET_COMP(0, 1, 2,2, 0, 0,0);369SET_COMP(1, 2, 1,1, 1, 1,1);370SET_COMP(2, 3, 1,1, 1, 1,1);371break;372case JCS_CMYK:373cinfo->write_Adobe_marker = TRUE; /* write Adobe marker to flag CMYK */374cinfo->num_components = 4;375SET_COMP(0, 0x43 /* 'C' */, 1,1, 0, 0,0);376SET_COMP(1, 0x4D /* 'M' */, 1,1, 0, 0,0);377SET_COMP(2, 0x59 /* 'Y' */, 1,1, 0, 0,0);378SET_COMP(3, 0x4B /* 'K' */, 1,1, 0, 0,0);379break;380case JCS_YCCK:381cinfo->write_Adobe_marker = TRUE; /* write Adobe marker to flag YCCK */382cinfo->num_components = 4;383SET_COMP(0, 1, 2,2, 0, 0,0);384SET_COMP(1, 2, 1,1, 1, 1,1);385SET_COMP(2, 3, 1,1, 1, 1,1);386SET_COMP(3, 4, 2,2, 0, 0,0);387break;388case JCS_UNKNOWN:389cinfo->num_components = cinfo->input_components;390if (cinfo->num_components < 1 || cinfo->num_components > MAX_COMPONENTS)391ERREXIT2(cinfo, JERR_COMPONENT_COUNT, cinfo->num_components,392MAX_COMPONENTS);393for (ci = 0; ci < cinfo->num_components; ci++) {394SET_COMP(ci, ci, 1,1, 0, 0,0);395}396break;397default:398ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);399}400}401402403#ifdef C_PROGRESSIVE_SUPPORTED404405LOCAL(jpeg_scan_info *)406fill_a_scan (jpeg_scan_info *scanptr, int ci,407int Ss, int Se, int Ah, int Al)408/* Support routine: generate one scan for specified component */409{410scanptr->comps_in_scan = 1;411scanptr->component_index[0] = ci;412scanptr->Ss = Ss;413scanptr->Se = Se;414scanptr->Ah = Ah;415scanptr->Al = Al;416scanptr++;417return scanptr;418}419420LOCAL(jpeg_scan_info *)421fill_scans (jpeg_scan_info *scanptr, int ncomps,422int Ss, int Se, int Ah, int Al)423/* Support routine: generate one scan for each component */424{425int ci;426427for (ci = 0; ci < ncomps; ci++) {428scanptr->comps_in_scan = 1;429scanptr->component_index[0] = ci;430scanptr->Ss = Ss;431scanptr->Se = Se;432scanptr->Ah = Ah;433scanptr->Al = Al;434scanptr++;435}436return scanptr;437}438439LOCAL(jpeg_scan_info *)440fill_dc_scans (jpeg_scan_info *scanptr, int ncomps, int Ah, int Al)441/* Support routine: generate interleaved DC scan if possible, else N scans */442{443int ci;444445if (ncomps <= MAX_COMPS_IN_SCAN) {446/* Single interleaved DC scan */447scanptr->comps_in_scan = ncomps;448for (ci = 0; ci < ncomps; ci++)449scanptr->component_index[ci] = ci;450scanptr->Ss = scanptr->Se = 0;451scanptr->Ah = Ah;452scanptr->Al = Al;453scanptr++;454} else {455/* Noninterleaved DC scan for each component */456scanptr = fill_scans(scanptr, ncomps, 0, 0, Ah, Al);457}458return scanptr;459}460461462/*463* Create a recommended progressive-JPEG script.464* cinfo->num_components and cinfo->jpeg_color_space must be correct.465*/466467GLOBAL(void)468jpeg_simple_progression (j_compress_ptr cinfo)469{470int ncomps = cinfo->num_components;471int nscans;472jpeg_scan_info *scanptr;473474/* Safety check to ensure start_compress not called yet. */475if (cinfo->global_state != CSTATE_START)476ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);477478/* Figure space needed for script. Calculation must match code below! */479if (ncomps == 3 && cinfo->jpeg_color_space == JCS_YCbCr) {480/* Custom script for YCbCr color images. */481nscans = 10;482} else {483/* All-purpose script for other color spaces. */484if (ncomps > MAX_COMPS_IN_SCAN)485nscans = 6 * ncomps; /* 2 DC + 4 AC scans per component */486else487nscans = 2 + 4 * ncomps; /* 2 DC scans; 4 AC scans per component */488}489490/* Allocate space for script.491* We need to put it in the permanent pool in case the application performs492* multiple compressions without changing the settings. To avoid a memory493* leak if jpeg_simple_progression is called repeatedly for the same JPEG494* object, we try to re-use previously allocated space, and we allocate495* enough space to handle YCbCr even if initially asked for grayscale.496*/497if (cinfo->script_space == NULL || cinfo->script_space_size < nscans) {498cinfo->script_space_size = MAX(nscans, 10);499cinfo->script_space = (jpeg_scan_info *)500(*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,501cinfo->script_space_size * sizeof(jpeg_scan_info));502}503scanptr = cinfo->script_space;504cinfo->scan_info = scanptr;505cinfo->num_scans = nscans;506507if (ncomps == 3 && cinfo->jpeg_color_space == JCS_YCbCr) {508/* Custom script for YCbCr color images. */509/* Initial DC scan */510scanptr = fill_dc_scans(scanptr, ncomps, 0, 1);511/* Initial AC scan: get some luma data out in a hurry */512scanptr = fill_a_scan(scanptr, 0, 1, 5, 0, 2);513/* Chroma data is too small to be worth expending many scans on */514scanptr = fill_a_scan(scanptr, 2, 1, 63, 0, 1);515scanptr = fill_a_scan(scanptr, 1, 1, 63, 0, 1);516/* Complete spectral selection for luma AC */517scanptr = fill_a_scan(scanptr, 0, 6, 63, 0, 2);518/* Refine next bit of luma AC */519scanptr = fill_a_scan(scanptr, 0, 1, 63, 2, 1);520/* Finish DC successive approximation */521scanptr = fill_dc_scans(scanptr, ncomps, 1, 0);522/* Finish AC successive approximation */523scanptr = fill_a_scan(scanptr, 2, 1, 63, 1, 0);524scanptr = fill_a_scan(scanptr, 1, 1, 63, 1, 0);525/* Luma bottom bit comes last since it's usually largest scan */526scanptr = fill_a_scan(scanptr, 0, 1, 63, 1, 0);527} else {528/* All-purpose script for other color spaces. */529/* Successive approximation first pass */530scanptr = fill_dc_scans(scanptr, ncomps, 0, 1);531scanptr = fill_scans(scanptr, ncomps, 1, 5, 0, 2);532scanptr = fill_scans(scanptr, ncomps, 6, 63, 0, 2);533/* Successive approximation second pass */534scanptr = fill_scans(scanptr, ncomps, 1, 63, 2, 1);535/* Successive approximation final pass */536scanptr = fill_dc_scans(scanptr, ncomps, 1, 0);537scanptr = fill_scans(scanptr, ncomps, 1, 63, 1, 0);538}539}540541#endif /* C_PROGRESSIVE_SUPPORTED */542543544