// qcms // Copyright (C) 2009 Mozilla Foundation // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the Software // is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #define _ISOC99_SOURCE … #include <math.h> #include <assert.h> #include <string.h> //memcpy #include "qcmsint.h" #include "transform_util.h" #include "matrix.h" #if !defined(INFINITY) #define INFINITY … #endif #ifdef USE_LIBFUZZER #define ASSERT … #else #define ASSERT(x) … #endif #define PARAMETRIC_CURVE_TYPE … /* value must be a value between 0 and 1 */ //XXX: is the above a good restriction to have? // the output range of this function is 0..1 float lut_interp_linear(double input_value, uint16_t *table, size_t length) { … } /* same as above but takes and returns a uint16_t value representing a range from 0..1 */ uint16_t lut_interp_linear16(uint16_t input_value, uint16_t *table, size_t length) { … } /* same as above but takes an input_value from 0..PRECACHE_OUTPUT_MAX * and returns a uint8_t value representing a range from 0..1 */ static uint8_t lut_interp_linear_precache_output(uint32_t input_value, uint16_t *table, size_t length) { … } /* value must be a value between 0 and 1 */ //XXX: is the above a good restriction to have? float lut_interp_linear_float(float value, float *table, size_t length) { … } #if 0 /* if we use a different representation i.e. one that goes from 0 to 0x1000 we can be more efficient * because we can avoid the divisions and use a shifting instead */ /* same as above but takes and returns a uint16_t value representing a range from 0..1 */ uint16_t lut_interp_linear16(uint16_t input_value, uint16_t *table, int length) { uint32_t value = (input_value * (length - 1)); uint32_t upper = (value + 4095) / 4096; /* equivalent to ceil(value/4096) */ uint32_t lower = value / 4096; /* equivalent to floor(value/4096) */ uint32_t interp = value % 4096; value = (table[upper]*(interp) + table[lower]*(4096 - interp))/4096; // 0..4096*4096 return value; } #endif void compute_curve_gamma_table_type1(float gamma_table[256], uint16_t gamma) { … } void compute_curve_gamma_table_type2(float gamma_table[256], uint16_t *table, size_t length) { … } void compute_curve_gamma_table_type_parametric(float gamma_table[256], float parameter[7], int count) { … } void compute_curve_gamma_table_type0(float gamma_table[256]) { … } float clamp_float(float a) { … } unsigned char clamp_u8(float v) { … } float u8Fixed8Number_to_float(uint16_t x) { … } /* The SSE2 code uses min & max which let NaNs pass through. We want to try to prevent that here by ensuring that gamma table is within expected values. */ void validate_gamma_table(float gamma_table[256]) { … } float *build_input_gamma_table(struct curveType *TRC) { … } struct matrix build_colorant_matrix(qcms_profile *p) { … } /* The following code is copied nearly directly from lcms. * I think it could be much better. For example, Argyll seems to have better code in * icmTable_lookup_bwd and icmTable_setup_bwd. However, for now this is a quick way * to a working solution and allows for easy comparing with lcms. */ uint16_fract_t lut_inverse_interp16(uint16_t Value, uint16_t LutTable[], int length, int NumZeroes, int NumPoles) { … } // December/16 2015 - Moved this code out of lut_inverse_interp16 // in order to save computation in invert_lut loop. static void count_zeroes_and_poles(uint16_t *LutTable, int length, int *NumZeroes, int *NumPoles) { … } /* The number of entries needed to invert a lookup table should not necessarily be the same as the original number of entries. This is especially true of lookup tables that have a small number of entries. For example: Using a table like: {0, 3104, 14263, 34802, 65535} invert_lut will produce an inverse of: {3, 34459, 47529, 56801, 65535} which has an maximum error of about 9855 (pixel difference of ~38.346) For now, we punt the decision of output size to the caller. */ static uint16_t *invert_lut(uint16_t *table, int length, size_t out_length) { … } static void compute_precache_pow(uint8_t *output, float gamma) { … } void compute_precache_lut(uint8_t *output, uint16_t *table, int length) { … } void compute_precache_linear(uint8_t *output) { … } qcms_bool compute_precache(struct curveType *trc, uint8_t *output) { … } static uint16_t *build_linear_table(int length) { … } static uint16_t *build_pow_table(float gamma, int length) { … } void build_output_lut(struct curveType *trc, uint16_t **output_gamma_lut, size_t *output_gamma_lut_length) { … } size_t qcms_profile_get_parametric_curve(qcms_profile *profile, qcms_trc_channel channel, float data[7]) { … }