Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | 03-May-2024 | - | 5,638 | 3,895 | ||
BUILD.gn | D | 03-May-2024 | 1.2 KiB | 45 | 39 | |
README.chromium | D | 03-May-2024 | 2 KiB | 46 | 43 | |
google.patch | D | 03-May-2024 | 42.7 KiB | 1,152 | 1,043 | |
qcms.gyp | D | 03-May-2024 | 1.8 KiB | 66 | 62 | |
qcms.target.darwin-arm.mk | D | 03-May-2024 | 6.6 KiB | 260 | 219 | |
qcms.target.darwin-arm64.mk | D | 03-May-2024 | 6.1 KiB | 236 | 195 | |
qcms.target.darwin-mips.mk | D | 03-May-2024 | 6.3 KiB | 246 | 205 | |
qcms.target.darwin-mips64.mk | D | 03-May-2024 | 6.3 KiB | 246 | 205 | |
qcms.target.darwin-x86.mk | D | 03-May-2024 | 6.4 KiB | 252 | 211 | |
qcms.target.darwin-x86_64.mk | D | 03-May-2024 | 6.4 KiB | 250 | 209 | |
qcms.target.linux-arm.mk | D | 03-May-2024 | 6.6 KiB | 260 | 219 | |
qcms.target.linux-arm64.mk | D | 03-May-2024 | 6.1 KiB | 236 | 195 | |
qcms.target.linux-mips.mk | D | 03-May-2024 | 6.3 KiB | 246 | 205 | |
qcms.target.linux-mips64.mk | D | 03-May-2024 | 6.3 KiB | 246 | 205 | |
qcms.target.linux-x86.mk | D | 03-May-2024 | 6.4 KiB | 252 | 211 | |
qcms.target.linux-x86_64.mk | D | 03-May-2024 | 6.4 KiB | 250 | 209 |
README.chromium
1Name: Quick Color Management System 2Short Name: qcms 3URL: https://github.com/jrmuizel/qcms/tree/v4 4Version: v4 5Date: 2012-03-13 6License: MIT 7License File: src/COPYING 8Security Critical: yes 9 10Description: 11Contains support for applying an ICC color profile to an image. The code is 12originally based on tinycms, re-written by Mozilla for better security and 13performance. This copy is a source-drop from Mozilla on March 13, 2012. 14 15Local Modifications: 16Some files only have license headers in the master branch. 17 - Added the same license headers to the versions brought down from the 'v4' 18 branch src URL qcms/tree/v4 19google.patch contains the following modifications. Apply with 20 patch -p1 < google.patch. 21 - Add bgra output support. 22 - Use HAVE_POSIX_MEMALIGN instead of HAS_POSIX_MEMALIG 23 (https://bugzilla.mozilla.org/show_bug.cgi?id=692922) 24 - Applied upstream patch: 25 - https://bug752254.bugzilla.mozilla.org/attachment.cgi?id=626102 26 - Applied upstream patch for sanitizing gamma table: 27 - Expanded gamma clamp range to allow 1.0. 28 - Do not short-circuit bogus profile check for A2B0 or B2A0 unless v4 enabled. 29 - Only reference code from transform-sse1.c and transform-sse2.c when SSE is 30 enabled. 31 - Do not use an x86-only attribute on ARM or MIPS. 32 - Fix integer truncation warning/errors on Win64 build. 33 - Apply upstream thread safety (fix) patch from 34 - https://bugzilla.mozilla.org/show_bug.cgi?id=853169 35 - Apply upstream fix for qcms_profile_from_memory from 36 - https://bugzilla.mozilla.org/show_bug.cgi?id=969226 37 - Apply upstream simplification of qcmstypes.h 38 - https://hg.mozilla.org/mozilla-central/rev/b5be94737a83 39 - Check for unused tag_len in read_nested_curveType() 40 - Apply qcms_transform_precacheLUT_float does not properly free dest buffer 41 - https://bugzilla.mozilla.org/show_bug.cgi?id=701348 42 - Add qcms_profile_match api 43 - https://code.google.com/p/chromium/issues/detail?id=401971 44To regenerate google.patch: 45 git diff b8456f38 src > google.patch 46