leanjpeg-simple 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- leanjpeg_simple-0.1.0/LICENSE +453 -0
- leanjpeg_simple-0.1.0/LICENSE.simplejpeg +24 -0
- leanjpeg_simple-0.1.0/MANIFEST.in +20 -0
- leanjpeg_simple-0.1.0/PKG-INFO +85 -0
- leanjpeg_simple-0.1.0/README.md +49 -0
- leanjpeg_simple-0.1.0/UPSTREAM.json +20 -0
- leanjpeg_simple-0.1.0/UPSTREAM.md +58 -0
- leanjpeg_simple-0.1.0/custom_build_backend/custom_build_meta.py +48 -0
- leanjpeg_simple-0.1.0/pyproject.toml +86 -0
- leanjpeg_simple-0.1.0/requirements.txt +1 -0
- leanjpeg_simple-0.1.0/setup.cfg +4 -0
- leanjpeg_simple-0.1.0/setup.py +422 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple/__init__.py +60 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple/__pyinstaller/__init__.py +13 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple/__pyinstaller/hook-leanjpeg_simple.py +19 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple/_color.c +29 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple/_color.h +5 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple/_handles.c +250 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple/_handles.h +75 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple/_jpeg.c +32357 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple/_jpeg.pyi +168 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple/_jpeg.pyx +887 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple/py.typed +0 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple.egg-info/PKG-INFO +85 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple.egg-info/SOURCES.txt +621 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple.egg-info/dependency_links.txt +1 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple.egg-info/entry_points.txt +2 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple.egg-info/not-zip-safe +1 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple.egg-info/requires.txt +1 -0
- leanjpeg_simple-0.1.0/src/leanjpeg_simple.egg-info/top_level.txt +1 -0
- leanjpeg_simple-0.1.0/tests/lj_simple_images.py +79 -0
- leanjpeg_simple-0.1.0/tests/test_simple_cmyk.py +107 -0
- leanjpeg_simple-0.1.0/tests/test_simple_decode.py +135 -0
- leanjpeg_simple-0.1.0/tests/test_simple_edge_cases.py +194 -0
- leanjpeg_simple-0.1.0/tests/test_simple_encode.py +164 -0
- leanjpeg_simple-0.1.0/tests/test_simple_encode_yuv.py +289 -0
- leanjpeg_simple-0.1.0/tests/test_simple_freethreading.py +68 -0
- leanjpeg_simple-0.1.0/tests/test_simple_util.py +19 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/.git +1 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/.gitattributes +5 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/BUILDING.md +705 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/CMakeLists.txt +2076 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/ChangeLog.md +2740 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/LICENSE.md +147 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/README.ijg +260 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/README.md +375 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/cmakescripts/BuildPackages.cmake +190 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/cmakescripts/GNUInstallDirs.cmake +424 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/cmakescripts/GenerateWrappers.cmake +37 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/cmakescripts/PackageInfo.cmake +13 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/cmakescripts/cmake_uninstall.cmake.in +24 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/cmakescripts/testclean.cmake +64 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/cmakescripts/tjbenchtest.cmake +70 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/cmakescripts/tjexampletest.cmake +22 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/change.log +336 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/cjpeg.1 +448 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/coderules.txt +78 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/djpeg.1 +337 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/doxygen-extra.css +7 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/doxygen.config +18 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/jpegtran.1 +386 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/libjpeg.txt +3305 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/rdjpgcom.1 +63 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/structure.txt +981 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/annotated.html +89 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/bc_s.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/bc_sd.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/classes.html +88 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/closed.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/doc.svg +12 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/docd.svg +12 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/doxygen-extra.css +7 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/doxygen.css +2027 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/doxygen.svg +28 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/dynsections.js +192 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/folderclosed.svg +11 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/folderclosedd.svg +11 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/folderopen.svg +17 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/folderopend.svg +12 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/functions.html +92 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/functions_vars.html +92 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/group___turbo_j_p_e_g.html +3833 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/index.html +82 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/jquery.js +34 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/menu.js +136 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/menudata.js +33 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/minus.svg +8 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/minusd.svg +8 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/nav_f.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/nav_fd.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/nav_g.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/nav_h.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/nav_hd.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/open.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/plus.svg +9 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/plusd.svg +9 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/all_0.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/all_1.js +5 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/all_2.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/all_3.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/all_4.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/all_5.js +5 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/all_6.js +5 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/all_7.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/all_8.js +149 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/all_9.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/all_a.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/all_b.js +5 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/classes_0.js +6 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/close.svg +18 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/enums_0.js +10 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/enumvalues_0.js +71 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/functions_0.js +44 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/groups_0.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/mag.svg +24 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/mag_d.svg +24 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/mag_sel.svg +31 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/mag_seld.svg +31 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/search.css +291 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/search.js +840 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/searchdata.js +36 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/typedefs_0.js +5 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/variables_0.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/variables_1.js +5 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/variables_2.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/variables_3.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/variables_4.js +5 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/variables_5.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/variables_6.js +12 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/variables_7.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/variables_8.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/search/variables_9.js +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/splitbar.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/splitbard.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/structtjregion.html +179 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/structtjscalingfactor.html +137 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/structtjtransform.html +207 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/sync_off.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/sync_on.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/tab_a.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/tab_ad.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/tab_b.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/tab_bd.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/tab_h.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/tab_hd.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/tab_s.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/tab_sd.png +0 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/tabs.css +1 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/turbojpeg/topics.html +87 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/usage.txt +881 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/wizard.txt +231 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/doc/wrjpgcom.1 +103 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/jna/CMakeLists.txt +52 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/jna/README.md +235 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/jna/TJ.java +939 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/jna/TJBench.java +1483 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/jna/TJComp.java +351 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/jna/TJDecomp.java +403 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/jna/TJTran.java +387 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/jna/TJUnitTest.java +1427 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/Config.cmake.in +4 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/Distribution.xml.in +24 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/License.rtf +20 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/ReadMe.txt +5 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/Welcome.rtf.in +17 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/deb-control.in +31 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/installer.nsi.in +214 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/libjpeg.pc.in +10 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/libturbojpeg.pc.in +10 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/makedpkg.in +124 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/makemacpkg.in +188 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/makerpm.in +30 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/makesrpm.in +48 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/maketarball.in +51 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/rpm.spec.in +240 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/release/uninstall.in +120 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/sharedlib/CMakeLists.txt +179 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/sharedlib/spng/CMakeLists.txt +29 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/CMakeLists.txt +571 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/README.md +198 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/aarch32/jccolext-neon.c +149 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/aarch32/jchuff-neon.c +330 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/aarch32/jsimdcpu.c +137 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/aarch64/jccolext-neon.c +318 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/aarch64/jchuff-neon.c +406 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/aarch64/jsimdcpu.c +34 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/align.h +28 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jccolor-neon.c +152 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jcgray-neon.c +114 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jcgryext-neon.c +108 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jchuff.h +131 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jcphuff-neon.c +619 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jcsample-neon.c +196 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jdcolext-neon.c +375 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jdcolor-neon.c +135 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jdmerge-neon.c +138 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jdmrgext-neon.c +723 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jdsample-neon.c +563 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jfdctfst-neon.c +209 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jfdctint-neon.c +369 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jidctfst-neon.c +467 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jidctint-neon.c +794 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jidctred-neon.c +480 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/jquanti-neon.c +188 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/arm/neon-compat.h.in +53 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/common/jcsample.h +28 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jccolext-avx2.asm +659 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jccolext-mmx.asm +500 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jccolext-sse2.asm +562 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jccolor-avx2.asm +117 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jccolor-mmx.asm +117 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jccolor-sse2.asm +116 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jcgray-avx2.asm +109 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jcgray-mmx.asm +109 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jcgray-sse2.asm +108 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jcgryext-avx2.asm +525 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jcgryext-mmx.asm +370 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jcgryext-sse2.asm +428 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jchuff-sse2.asm +837 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jcphuff-sse2.asm +657 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jcsample-avx2.asm +382 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jcsample-mmx.asm +318 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jcsample-sse2.asm +345 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdcolext-avx2.asm +585 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdcolext-mmx.asm +422 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdcolext-sse2.asm +512 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdcolor-avx2.asm +114 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdcolor-mmx.asm +113 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdcolor-sse2.asm +113 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdmerge-avx2.asm +132 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdmerge-mmx.asm +119 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdmerge-sse2.asm +131 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdmrgext-avx2.asm +639 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdmrgext-mmx.asm +472 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdmrgext-sse2.asm +568 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdsample-avx2.asm +850 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdsample-mmx.asm +731 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jdsample-sse2.asm +720 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jfdctflt-3dn.asm +329 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jfdctflt-sse.asm +376 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jfdctfst-mmx.asm +401 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jfdctfst-sse2.asm +409 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jfdctint-avx2.asm +327 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jfdctint-mmx.asm +622 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jfdctint-sse2.asm +635 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jidctflt-3dn.asm +446 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jidctflt-sse.asm +566 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jidctflt-sse2.asm +512 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jidctfst-mmx.asm +493 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jidctfst-sse2.asm +518 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jidctint-avx2.asm +463 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jidctint-mmx.asm +853 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jidctint-sse2.asm +887 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jidctred-mmx.asm +706 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jidctred-sse2.asm +600 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jquantf-3dn.asm +224 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jquantf-sse.asm +202 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jquantf-sse2.asm +162 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jquanti-avx2.asm +183 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jquanti-mmx.asm +265 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jquanti-sse2.asm +200 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/i386/jsimdcpu.asm +130 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/jsimd.c +1512 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/jsimd.h +121 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/jsimdconst.h +49 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/jsimddct.h +82 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/jsimdint.h +666 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jccolext-mmi.c +455 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jccolor-mmi.c +145 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jcgray-mmi.c +129 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jcgryext-mmi.c +374 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jcsample-mmi.c +95 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jdcolext-mmi.c +433 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jdcolor-mmi.c +136 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jdmerge-mmi.c +146 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jdmrgext-mmi.c +631 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jdsample-mmi.c +303 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jfdctfst-mmi.c +253 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jfdctint-mmi.c +396 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jidctfst-mmi.c +394 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jidctint-mmi.c +569 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jquanti-mmi.c +122 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jsimd_mmi.h +68 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/jsimdcpu.c +115 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/mips64/loongson-mmintrin.h +1333 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/nasm/jcolsamp.inc +135 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/nasm/jdct.inc +31 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/nasm/jsimdcfg.inc +92 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/nasm/jsimdcfg.inc.h +134 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/nasm/jsimdext.inc +545 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jccolext-altivec.c +270 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jccolor-altivec.c +114 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jcgray-altivec.c +109 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jcgryext-altivec.c +229 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jcsample-altivec.c +156 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jdcolext-altivec.c +277 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jdcolor-altivec.c +104 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jdmerge-altivec.c +128 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jdmrgext-altivec.c +331 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jdsample-altivec.c +398 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jfdctfst-altivec.c +153 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jfdctint-altivec.c +257 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jidctfst-altivec.c +254 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jidctint-altivec.c +356 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jquanti-altivec.c +249 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jsimd_altivec.h +97 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/powerpc/jsimdcpu.c +167 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jccolext-rvv.c +142 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jccolor-rvv.c +121 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jcgray-rvv.c +114 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jcgryext-rvv.c +108 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jcsample-rvv.c +157 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jdcolext-rvv.c +157 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jdcolor-rvv.c +126 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jdmerge-rvv.c +138 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jdmrgext-rvv.c +226 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jdsample-rvv.c +378 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jfdctfst-rvv.c +266 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jfdctint-rvv.c +354 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jidctfst-rvv.c +432 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jidctint-rvv.c +464 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jquanti-rvv.c +127 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jsimd_rvv.h +313 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jsimdcpu.S +49 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/riscv64/jsimdcpu.c +86 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/simdcoverage.c +155 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jccolext-avx2.asm +638 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jccolext-sse2.asm +541 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jccolor-avx2.asm +117 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jccolor-sse2.asm +116 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jcgray-avx2.asm +109 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jcgray-sse2.asm +108 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jcgryext-avx2.asm +508 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jcgryext-sse2.asm +411 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jchuff-sse2.asm +638 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jcphuff-sse2.asm +626 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jcsample-avx2.asm +361 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jcsample-sse2.asm +324 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jdcolext-avx2.asm +564 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jdcolext-sse2.asm +491 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jdcolor-avx2.asm +114 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jdcolor-sse2.asm +113 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jdmerge-avx2.asm +132 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jdmerge-sse2.asm +131 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jdmrgext-avx2.asm +658 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jdmrgext-sse2.asm +587 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jdsample-avx2.asm +788 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jdsample-sse2.asm +663 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jfdctflt-sse.asm +360 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jfdctfst-sse2.asm +393 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jfdctint-avx2.asm +314 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jfdctint-sse2.asm +623 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jidctflt-sse2.asm +494 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jidctfst-sse2.asm +508 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jidctint-avx2.asm +426 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jidctint-sse2.asm +876 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jidctred-sse2.asm +577 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jquantf-sse2.asm +149 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jquanti-avx2.asm +162 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jquanti-sse2.asm +187 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/simd/x86_64/jsimdcpu.asm +85 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/bmpsizetest.c +1002 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/cderror.h +124 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/cdjpeg.c +156 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/cdjpeg.h +204 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/cjpeg.c +903 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/cmyk.h +61 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/djpeg.c +1008 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/example.c +644 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jaricom.c +157 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcapimin.c +331 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcapistd.c +204 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcarith.c +932 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jccoefct.c +484 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jccolext.c +149 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jccolor.c +671 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcdctmgr.c +777 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcdiffct.c +419 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jchuff.c +1162 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jchuff.h +52 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcicc.c +105 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcinit.c +154 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jclhuff.c +589 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jclossls.c +330 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcmainct.c +187 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcmarker.c +670 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcmaster.c +808 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcmaster.h +43 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcomapi.c +243 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jconfig.h.in +60 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jconfig.txt +92 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jconfigint.h.in +80 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcparam.c +592 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcphuff.c +1099 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcprepct.c +413 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcsample.c +558 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jcstest.c +106 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jctrans.c +415 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdapimin.c +428 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdapistd.c +793 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdarith.c +782 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdatadst-tj.c +214 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdatadst.c +291 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdatasrc-tj.c +194 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdatasrc.c +289 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdcoefct.c +937 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdcoefct.h +88 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdcol565.c +392 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdcolext.c +142 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdcolor.c +889 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdct.h +248 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jddctmgr.c +362 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jddiffct.c +411 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdhuff.c +836 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdhuff.h +250 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdicc.c +167 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdinput.c +424 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdlhuff.c +302 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdlossls.c +300 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdmainct.c +483 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdmainct.h +78 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdmarker.c +1385 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdmaster.c +916 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdmaster.h +28 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdmerge.c +579 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdmerge.h +48 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdmrg565.c +355 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdmrgext.c +182 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdphuff.c +681 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdpostct.c +328 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdsample.c +568 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdsample.h +53 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jdtrans.c +162 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jerror.c +243 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jerror.h +336 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jfdctflt.c +169 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jfdctfst.c +227 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jfdctint.c +288 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jidctflt.c +263 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jidctfst.c +389 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jidctint.c +2662 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jidctred.c +434 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jinclude.h +147 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jlossls.h +101 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jmemmgr.c +1290 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jmemnobs.c +110 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jmemsys.h +147 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jmorecfg.h +389 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jpeg_nbits.c +4137 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jpeg_nbits.h +43 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jpegapicomp.h +32 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jpegint.h +668 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jpeglib.h +1223 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jpegtran.c +768 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jquant1.c +864 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jquant2.c +1293 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jsamplecomp.h +339 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jstdhuff.c +144 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jutils.c +148 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/jversion.h.in +30 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/libjpeg.map.in +11 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/md5/CMakeLists.txt +7 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/md5/md5.c +275 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/md5/md5.h +58 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/md5/md5cmp.c +59 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/md5/md5hl.c +129 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/md5/md5sum.c +60 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/rdbmp.c +684 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/rdcolmap.c +265 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/rdgif.c +724 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/rdjpgcom.c +493 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/rdpng.c +728 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/rdppm.c +949 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/rdswitch.c +428 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/rdtarga.c +515 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/CMakeLists.txt +26 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/LICENSE +25 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/libpng-LICENSE.txt +36 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/spng.c +6987 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/spng.h +537 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/LICENSE +22 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/adler32.c +164 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/compress.c +99 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/crc32.c +983 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/crc32.h +9446 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/deflate.c +2185 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/deflate.h +383 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/gzguts.h +216 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/inffast.c +321 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/inffast.h +11 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/inffixed.h +94 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/inflate.c +1413 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/inflate.h +126 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/inftrees.c +424 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/inftrees.h +64 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/trees.c +1119 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/trees.h +128 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/zconf.h +556 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/zlib.h +2057 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/zutil.c +313 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/spng/zlib/zutil.h +331 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/strtest.c +150 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/tjbench.c +1459 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/tjcomp.c +355 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/tjdecomp.c +387 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/tjtran.c +375 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/tjunittest.c +1462 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/tjutil.c +70 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/tjutil.h +53 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/transupp.c +2535 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/transupp.h +233 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/turbojpeg-mapfile +120 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/turbojpeg-mp.c +638 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/turbojpeg.c +3204 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/turbojpeg.h +2923 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcapistd-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcapistd-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcapistd-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jccoefct-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jccoefct-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jccolor-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jccolor-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jccolor-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcdctmgr-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcdctmgr-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcdiffct-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcdiffct-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcdiffct-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jclossls-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jclossls-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jclossls-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcmainct-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcmainct-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcmainct-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcprepct-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcprepct-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcprepct-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcsample-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcsample-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jcsample-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdapistd-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdapistd-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdapistd-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdcoefct-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdcoefct-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdcolor-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdcolor-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdcolor-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jddctmgr-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jddctmgr-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jddiffct-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jddiffct-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jddiffct-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdlossls-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdlossls-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdlossls-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdmainct-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdmainct-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdmainct-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdmerge-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdmerge-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdpostct-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdpostct-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdpostct-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdsample-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdsample-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jdsample-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jfdctfst-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jfdctfst-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jfdctint-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jfdctint-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jidctflt-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jidctflt-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jidctfst-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jidctfst-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jidctint-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jidctint-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jidctred-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jidctred-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jquant1-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jquant1-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jquant2-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jquant2-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jutils-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jutils-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/jutils-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/rdcolmap-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/rdcolmap-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/rdpng-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/rdpng-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/rdpng-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/rdppm-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/rdppm-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/rdppm-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/template.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/wrgif-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/wrgif-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/wrpng-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/wrpng-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/wrpng-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/wrppm-12.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/wrppm-16.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrapper/wrppm-8.c +14 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrbmp.c +570 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrgif.c +596 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrjpgcom.c +577 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrpng.c +546 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrppm.c +393 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/src/wrtarga.c +272 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/test/croptest.in +95 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/test/indexedcolortest.in +247 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/test/tjbenchtest.in +476 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/test/tjcomptest.in +211 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/test/tjdecomptest.in +347 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/test/tjtrantest.in +172 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/win/gcc/projectTargets-release.cmake.in +49 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/win/jpeg.rc.in +35 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/win/jpeg62.def +133 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/win/jpeg7.def +135 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/win/jpeg8.def +136 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/win/projectTargets.cmake.in +115 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/win/turbojpeg.rc.in +35 -0
- leanjpeg_simple-0.1.0/third_party/libjpeg-turbo/win/vc/projectTargets-release.cmake.in +49 -0
|
@@ -0,0 +1,453 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 leanjpeg contributors
|
|
4
|
+
Copyright (c) 2019 Joachim Folz (simplejpeg, https://github.com/jfolz/simplejpeg)
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
|
23
|
+
|
|
24
|
+
This package statically links libjpeg-turbo, which is covered by the IJG
|
|
25
|
+
License, the Modified (3-clause) BSD License and the zlib License. The
|
|
26
|
+
libjpeg-turbo license texts are appended to this file in built distributions.
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
================================================================================
|
|
33
|
+
Content of: third_party/libjpeg-turbo/LICENSE.md
|
|
34
|
+
================================================================================
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
libjpeg-turbo Licenses
|
|
38
|
+
======================
|
|
39
|
+
|
|
40
|
+
libjpeg-turbo is covered by two compatible BSD-style open source licenses:
|
|
41
|
+
|
|
42
|
+
- The IJG (Independent JPEG Group) License, which is listed in
|
|
43
|
+
[README.ijg](README.ijg)
|
|
44
|
+
|
|
45
|
+
This license applies to the libjpeg API library and associated programs,
|
|
46
|
+
including any code inherited from libjpeg and any modifications to that
|
|
47
|
+
code.
|
|
48
|
+
|
|
49
|
+
- The Modified (3-clause) BSD License, which is listed below
|
|
50
|
+
|
|
51
|
+
This license applies to the TurboJPEG API library and associated programs,
|
|
52
|
+
[libspng](https://libspng.org) (which is used by cjpeg and djpeg), and the
|
|
53
|
+
build/test system.
|
|
54
|
+
|
|
55
|
+
* The TurboJPEG API library wraps the libjpeg API library, so in the context
|
|
56
|
+
of the overall TurboJPEG API library, both the terms of the IJG License and
|
|
57
|
+
the terms of the Modified (3-clause) BSD License apply.
|
|
58
|
+
* cjpeg and djpeg use libspng, so in the context of those programs, both the
|
|
59
|
+
terms of the IJG License and the terms of the Modified (3-clause) BSD
|
|
60
|
+
License apply.
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
Component Licenses
|
|
64
|
+
==================
|
|
65
|
+
|
|
66
|
+
Some of libjpeg-turbo's modules and internal dependencies are covered by less
|
|
67
|
+
restrictive licenses, but in the context of libjpeg-turbo as a whole, the terms
|
|
68
|
+
of the less restrictive licenses are subsumed by either the IJG License or the
|
|
69
|
+
Modified BSD License. (In other words, the terms of the less restrictive
|
|
70
|
+
licenses are satisfied if the terms of the IJG and Modified BSD Licenses are
|
|
71
|
+
satisfied.)
|
|
72
|
+
|
|
73
|
+
- The libjpeg-turbo SIMD source code and zlib are covered by the
|
|
74
|
+
[zlib License](https://spdx.org/licenses/Zlib.html), which is subsumed by the
|
|
75
|
+
IJG License in the context of the cjpeg and djpeg programs and the libjpeg
|
|
76
|
+
API library.
|
|
77
|
+
|
|
78
|
+
- Some of the libspng source code is covered by the
|
|
79
|
+
[PNG Reference Library License v2](https://spdx.org/licenses/libpng-2.0.html),
|
|
80
|
+
which is subsumed by the IJG License in the context of the cjpeg and djpeg
|
|
81
|
+
programs and the TurboJPEG API library.
|
|
82
|
+
|
|
83
|
+
- Most of the libspng source code is covered by the
|
|
84
|
+
[Simplified (2-clause) BSD License](https://spdx.org/licenses/BSD-2-Clause.html),
|
|
85
|
+
which is subsumed by the Modified BSD License in the context of the cjpeg and
|
|
86
|
+
djpeg programs and the TurboJPEG API library.
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
Complying with the libjpeg-turbo Licenses
|
|
90
|
+
=========================================
|
|
91
|
+
|
|
92
|
+
This section provides a roll-up of the libjpeg-turbo licensing terms, to the
|
|
93
|
+
best of our understanding. This is not a license in and of itself. It is
|
|
94
|
+
intended solely for clarification.
|
|
95
|
+
|
|
96
|
+
1. If you are distributing a modified version of the libjpeg-turbo source,
|
|
97
|
+
then:
|
|
98
|
+
|
|
99
|
+
1. You cannot alter or remove any existing copyright or license notices
|
|
100
|
+
from the source.
|
|
101
|
+
|
|
102
|
+
**Origin**
|
|
103
|
+
- Clause 1 of the IJG License
|
|
104
|
+
- Clause 1 of the Modified BSD License
|
|
105
|
+
|
|
106
|
+
2. You must add your own copyright notice to the header of each source
|
|
107
|
+
file you modified, so others can tell that you modified that file. (If
|
|
108
|
+
there is not an existing copyright header in that file, then you can
|
|
109
|
+
simply add a notice stating that you modified the file.)
|
|
110
|
+
|
|
111
|
+
**Origin**
|
|
112
|
+
- Clause 1 of the IJG License
|
|
113
|
+
|
|
114
|
+
3. You must include the IJG README file, and you must not alter any of the
|
|
115
|
+
copyright or license text in that file.
|
|
116
|
+
|
|
117
|
+
**Origin**
|
|
118
|
+
- Clause 1 of the IJG License
|
|
119
|
+
|
|
120
|
+
2. If you are distributing only libjpeg-turbo binaries without the source, or
|
|
121
|
+
if you are distributing an application that statically links with
|
|
122
|
+
libjpeg-turbo, then:
|
|
123
|
+
|
|
124
|
+
1. Your product documentation must include a message stating:
|
|
125
|
+
|
|
126
|
+
This software is based in part on the work of the Independent JPEG
|
|
127
|
+
Group.
|
|
128
|
+
|
|
129
|
+
**Origin**
|
|
130
|
+
- Clause 2 of the IJG license
|
|
131
|
+
|
|
132
|
+
2. If your binary distribution includes or uses the TurboJPEG API or
|
|
133
|
+
associated programs, cjpeg, or djpeg, then your product documentation
|
|
134
|
+
must include the text of the Modified BSD License (see below.)
|
|
135
|
+
|
|
136
|
+
**Origin**
|
|
137
|
+
- Clause 2 of the Modified BSD License
|
|
138
|
+
|
|
139
|
+
3. You cannot use the name of the IJG or The libjpeg-turbo Project or the
|
|
140
|
+
contributors thereof in advertising, publicity, etc.
|
|
141
|
+
|
|
142
|
+
**Origin**
|
|
143
|
+
- IJG License
|
|
144
|
+
- Clause 3 of the Modified BSD License
|
|
145
|
+
|
|
146
|
+
4. The authors and distributors do not warrant libjpeg-turbo to be free of
|
|
147
|
+
defects, nor do we accept any liability for undesirable consequences
|
|
148
|
+
resulting from your use of the software.
|
|
149
|
+
|
|
150
|
+
**Origin**
|
|
151
|
+
- IJG License
|
|
152
|
+
- Modified BSD License
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
The Modified (3-clause) BSD License
|
|
156
|
+
===================================
|
|
157
|
+
|
|
158
|
+
Copyright (C) 2009-2026 D. R. Commander<br>
|
|
159
|
+
Copyright (C) 2018-2023 Randy <randy408@protonmail.com>
|
|
160
|
+
|
|
161
|
+
Redistribution and use in source and binary forms, with or without
|
|
162
|
+
modification, are permitted provided that the following conditions are met:
|
|
163
|
+
|
|
164
|
+
- Redistributions of source code must retain the above copyright notice,
|
|
165
|
+
this list of conditions and the following disclaimer.
|
|
166
|
+
- Redistributions in binary form must reproduce the above copyright notice,
|
|
167
|
+
this list of conditions and the following disclaimer in the documentation
|
|
168
|
+
and/or other materials provided with the distribution.
|
|
169
|
+
- Neither the name of the libjpeg-turbo Project nor the names of its
|
|
170
|
+
contributors may be used to endorse or promote products derived from this
|
|
171
|
+
software without specific prior written permission.
|
|
172
|
+
|
|
173
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
|
|
174
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
175
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
176
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
|
|
177
|
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
178
|
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
179
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
180
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
181
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
182
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
183
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
================================================================================
|
|
190
|
+
Content of: third_party/libjpeg-turbo/README.ijg
|
|
191
|
+
================================================================================
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
libjpeg-turbo note: This file has been modified by The libjpeg-turbo Project
|
|
195
|
+
to include only information relevant to libjpeg-turbo, to wordsmith certain
|
|
196
|
+
sections, and to remove impolitic language that existed in the libjpeg v8
|
|
197
|
+
README. It is included only for reference. Please see README.md for
|
|
198
|
+
information specific to libjpeg-turbo.
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
The Independent JPEG Group's JPEG software
|
|
202
|
+
==========================================
|
|
203
|
+
|
|
204
|
+
This distribution contains a release of the Independent JPEG Group's free JPEG
|
|
205
|
+
software. You are welcome to redistribute this software and to use it for any
|
|
206
|
+
purpose, subject to the conditions under LEGAL ISSUES, below.
|
|
207
|
+
|
|
208
|
+
This software is the work of Tom Lane, Guido Vollbeding, Philip Gladstone,
|
|
209
|
+
Bill Allombert, Jim Boucher, Lee Crocker, Bob Friesenhahn, Ben Jackson,
|
|
210
|
+
Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, Ge' Weijers,
|
|
211
|
+
and other members of the Independent JPEG Group.
|
|
212
|
+
|
|
213
|
+
IJG is not affiliated with the ISO/IEC JTC1/SC29/WG1 standards committee
|
|
214
|
+
(also known as JPEG, together with ITU-T SG16).
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
DOCUMENTATION ROADMAP
|
|
218
|
+
=====================
|
|
219
|
+
|
|
220
|
+
This file contains the following sections:
|
|
221
|
+
|
|
222
|
+
OVERVIEW General description of JPEG and the IJG software.
|
|
223
|
+
LEGAL ISSUES Copyright, lack of warranty, terms of distribution.
|
|
224
|
+
REFERENCES Where to learn more about JPEG.
|
|
225
|
+
ARCHIVE LOCATIONS Where to find newer versions of this software.
|
|
226
|
+
FILE FORMAT WARS Software *not* to get.
|
|
227
|
+
TO DO Plans for future IJG releases.
|
|
228
|
+
|
|
229
|
+
Other documentation files in the distribution are:
|
|
230
|
+
|
|
231
|
+
User documentation:
|
|
232
|
+
doc/usage.txt Usage instructions for cjpeg, djpeg, jpegtran,
|
|
233
|
+
rdjpgcom, and wrjpgcom.
|
|
234
|
+
doc/*.1 Unix-style man pages for programs (same info as
|
|
235
|
+
usage.txt).
|
|
236
|
+
doc/wizard.txt Advanced usage instructions for JPEG wizards only.
|
|
237
|
+
doc/change.log Version-to-version change highlights.
|
|
238
|
+
Programmer and internal documentation:
|
|
239
|
+
doc/libjpeg.txt How to use the JPEG library in your own programs.
|
|
240
|
+
src/example.c Sample code for calling the JPEG library.
|
|
241
|
+
doc/structure.txt Overview of the JPEG library's internal structure.
|
|
242
|
+
doc/coderules.txt Coding style rules --- please read if you contribute
|
|
243
|
+
code.
|
|
244
|
+
|
|
245
|
+
Please read at least usage.txt. Some information can also be found in the JPEG
|
|
246
|
+
FAQ (Frequently Asked Questions) article. See ARCHIVE LOCATIONS below to find
|
|
247
|
+
out where to obtain the FAQ article.
|
|
248
|
+
|
|
249
|
+
If you want to understand how the JPEG code works, we suggest reading one or
|
|
250
|
+
more of the REFERENCES, then looking at the documentation files (in roughly
|
|
251
|
+
the order listed) before diving into the code.
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
OVERVIEW
|
|
255
|
+
========
|
|
256
|
+
|
|
257
|
+
This package contains C software to implement JPEG image encoding, decoding,
|
|
258
|
+
and transcoding. JPEG (pronounced "jay-peg") is a standardized compression
|
|
259
|
+
method for full-color and grayscale images. JPEG's strong suit is compressing
|
|
260
|
+
photographic images or other types of images that have smooth color and
|
|
261
|
+
brightness transitions between neighboring pixels. Images with sharp lines or
|
|
262
|
+
other abrupt features may not compress well with JPEG, and a higher JPEG
|
|
263
|
+
quality may have to be used to avoid visible compression artifacts with such
|
|
264
|
+
images.
|
|
265
|
+
|
|
266
|
+
JPEG is normally lossy, meaning that the output pixels are not necessarily
|
|
267
|
+
identical to the input pixels. However, on photographic content and other
|
|
268
|
+
"smooth" images, very good compression ratios can be obtained with no visible
|
|
269
|
+
compression artifacts, and extremely high compression ratios are possible if
|
|
270
|
+
you are willing to sacrifice image quality (by reducing the "quality" setting
|
|
271
|
+
in the compressor.)
|
|
272
|
+
|
|
273
|
+
This software implements JPEG baseline, extended-sequential, progressive, and
|
|
274
|
+
lossless compression processes. Provision is made for supporting all variants
|
|
275
|
+
of these processes, although some uncommon parameter settings aren't
|
|
276
|
+
implemented yet. We have made no provision for supporting the hierarchical
|
|
277
|
+
processes defined in the standard.
|
|
278
|
+
|
|
279
|
+
We provide a set of library routines for reading and writing JPEG image files,
|
|
280
|
+
plus two sample applications "cjpeg" and "djpeg", which use the library to
|
|
281
|
+
perform conversion between JPEG and some other popular image file formats.
|
|
282
|
+
The library is intended to be reused in other applications.
|
|
283
|
+
|
|
284
|
+
In order to support file conversion and viewing software, we have included
|
|
285
|
+
considerable functionality beyond the bare JPEG coding/decoding capability;
|
|
286
|
+
for example, the color quantization modules are not strictly part of JPEG
|
|
287
|
+
decoding, but they are essential for output to colormapped file formats. These
|
|
288
|
+
extra functions can be compiled out of the library if not required for a
|
|
289
|
+
particular application.
|
|
290
|
+
|
|
291
|
+
We have also included "jpegtran", a utility for lossless transcoding between
|
|
292
|
+
different JPEG processes, and "rdjpgcom" and "wrjpgcom", two simple
|
|
293
|
+
applications for inserting and extracting textual comments in JFIF files.
|
|
294
|
+
|
|
295
|
+
The emphasis in designing this software has been on achieving portability and
|
|
296
|
+
flexibility, while also making it fast enough to be useful. In particular,
|
|
297
|
+
the software is not intended to be read as a tutorial on JPEG. (See the
|
|
298
|
+
REFERENCES section for introductory material.) Rather, it is intended to
|
|
299
|
+
be reliable, portable, industrial-strength code. We do not claim to have
|
|
300
|
+
achieved that goal in every aspect of the software, but we strive for it.
|
|
301
|
+
|
|
302
|
+
We welcome the use of this software as a component of commercial products.
|
|
303
|
+
No royalty is required, but we do ask for an acknowledgement in product
|
|
304
|
+
documentation, as described under LEGAL ISSUES.
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
LEGAL ISSUES
|
|
308
|
+
============
|
|
309
|
+
|
|
310
|
+
In plain English:
|
|
311
|
+
|
|
312
|
+
1. We don't promise that this software works. (But if you find any bugs,
|
|
313
|
+
please let us know!)
|
|
314
|
+
2. You can use this software for whatever you want. You don't have to pay us.
|
|
315
|
+
3. You may not pretend that you wrote this software. If you use it in a
|
|
316
|
+
program, you must acknowledge somewhere in your documentation that
|
|
317
|
+
you've used the IJG code.
|
|
318
|
+
|
|
319
|
+
In legalese:
|
|
320
|
+
|
|
321
|
+
The authors make NO WARRANTY or representation, either express or implied,
|
|
322
|
+
with respect to this software, its quality, accuracy, merchantability, or
|
|
323
|
+
fitness for a particular purpose. This software is provided "AS IS", and you,
|
|
324
|
+
its user, assume the entire risk as to its quality and accuracy.
|
|
325
|
+
|
|
326
|
+
This software is copyright (C) 1991-2020, Thomas G. Lane, Guido Vollbeding.
|
|
327
|
+
All Rights Reserved except as specified below.
|
|
328
|
+
|
|
329
|
+
Permission is hereby granted to use, copy, modify, and distribute this
|
|
330
|
+
software (or portions thereof) for any purpose, without fee, subject to these
|
|
331
|
+
conditions:
|
|
332
|
+
(1) If any part of the source code for this software is distributed, then this
|
|
333
|
+
README file must be included, with this copyright and no-warranty notice
|
|
334
|
+
unaltered; and any additions, deletions, or changes to the original files
|
|
335
|
+
must be clearly indicated in accompanying documentation.
|
|
336
|
+
(2) If only executable code is distributed, then the accompanying
|
|
337
|
+
documentation must state that "this software is based in part on the work of
|
|
338
|
+
the Independent JPEG Group".
|
|
339
|
+
(3) Permission for use of this software is granted only if the user accepts
|
|
340
|
+
full responsibility for any undesirable consequences; the authors accept
|
|
341
|
+
NO LIABILITY for damages of any kind.
|
|
342
|
+
|
|
343
|
+
These conditions apply to any software derived from or based on the IJG code,
|
|
344
|
+
not just to the unmodified library. If you use our work, you ought to
|
|
345
|
+
acknowledge us.
|
|
346
|
+
|
|
347
|
+
Permission is NOT granted for the use of any IJG author's name or company name
|
|
348
|
+
in advertising or publicity relating to this software or products derived from
|
|
349
|
+
it. This software may be referred to only as "the Independent JPEG Group's
|
|
350
|
+
software".
|
|
351
|
+
|
|
352
|
+
We specifically permit and encourage the use of this software as the basis of
|
|
353
|
+
commercial products, provided that all warranty or liability claims are
|
|
354
|
+
assumed by the product vendor.
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
REFERENCES
|
|
358
|
+
==========
|
|
359
|
+
|
|
360
|
+
We recommend reading one or more of these references before trying to
|
|
361
|
+
understand the innards of the JPEG software.
|
|
362
|
+
|
|
363
|
+
The best short technical introduction to the JPEG compression algorithm is
|
|
364
|
+
Wallace, Gregory K. "The JPEG Still Picture Compression Standard",
|
|
365
|
+
Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44.
|
|
366
|
+
(Adjacent articles in that issue discuss MPEG motion picture compression,
|
|
367
|
+
applications of JPEG, and related topics.) If you don't have the CACM issue
|
|
368
|
+
handy, a PDF file containing a revised version of Wallace's article is
|
|
369
|
+
available at http://www.ijg.org/files/Wallace.JPEG.pdf. The file (actually
|
|
370
|
+
a preprint for an article that appeared in IEEE Trans. Consumer Electronics)
|
|
371
|
+
omits the sample images that appeared in CACM, but it includes corrections
|
|
372
|
+
and some added material. Note: the Wallace article is copyright ACM and IEEE,
|
|
373
|
+
and it may not be used for commercial purposes.
|
|
374
|
+
|
|
375
|
+
A somewhat less technical, more leisurely introduction to JPEG can be found in
|
|
376
|
+
"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by
|
|
377
|
+
M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides
|
|
378
|
+
good explanations and example C code for a multitude of compression methods
|
|
379
|
+
including JPEG. It is an excellent source if you are comfortable reading C
|
|
380
|
+
code but don't know much about data compression in general. The book's JPEG
|
|
381
|
+
sample code is far from industrial-strength, but when you are ready to look
|
|
382
|
+
at a full implementation, you've got one here...
|
|
383
|
+
|
|
384
|
+
The best currently available description of JPEG is the textbook "JPEG Still
|
|
385
|
+
Image Data Compression Standard" by William B. Pennebaker and Joan L.
|
|
386
|
+
Mitchell, published by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1.
|
|
387
|
+
Price US$59.95, 638 pp. The book includes the complete text of the ISO JPEG
|
|
388
|
+
standards (DIS 10918-1 and draft DIS 10918-2).
|
|
389
|
+
|
|
390
|
+
The original JPEG standard is divided into two parts, Part 1 being the actual
|
|
391
|
+
specification, while Part 2 covers compliance testing methods. Part 1 is
|
|
392
|
+
titled "Digital Compression and Coding of Continuous-tone Still Images,
|
|
393
|
+
Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS
|
|
394
|
+
10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of
|
|
395
|
+
Continuous-tone Still Images, Part 2: Compliance testing" and has document
|
|
396
|
+
numbers ISO/IEC IS 10918-2, ITU-T T.83.
|
|
397
|
+
|
|
398
|
+
The JPEG standard does not specify all details of an interchangeable file
|
|
399
|
+
format. For the omitted details, we follow the "JFIF" conventions, revision
|
|
400
|
+
1.02. JFIF version 1 has been adopted as ISO/IEC 10918-5 (05/2013) and
|
|
401
|
+
Recommendation ITU-T T.871 (05/2011): Information technology - Digital
|
|
402
|
+
compression and coding of continuous-tone still images: JPEG File Interchange
|
|
403
|
+
Format (JFIF). It is available as a free download in PDF file format from
|
|
404
|
+
https://www.iso.org/standard/54989.html and http://www.itu.int/rec/T-REC-T.871.
|
|
405
|
+
A PDF file of the older JFIF 1.02 specification is available at
|
|
406
|
+
http://www.w3.org/Graphics/JPEG/jfif3.pdf.
|
|
407
|
+
|
|
408
|
+
The TIFF 6.0 file format specification can be obtained from
|
|
409
|
+
http://mirrors.ctan.org/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation
|
|
410
|
+
scheme found in the TIFF 6.0 spec of 3-June-92 has a number of serious
|
|
411
|
+
problems. IJG does not recommend use of the TIFF 6.0 design (TIFF Compression
|
|
412
|
+
tag 6). Instead, we recommend the JPEG design proposed by TIFF Technical Note
|
|
413
|
+
#2 (Compression tag 7). Copies of this Note can be obtained from
|
|
414
|
+
http://www.ijg.org/files/. It is expected that the next revision
|
|
415
|
+
of the TIFF spec will replace the 6.0 JPEG design with the Note's design.
|
|
416
|
+
Although IJG's own code does not support TIFF/JPEG, the free libtiff library
|
|
417
|
+
uses our library to implement TIFF/JPEG per the Note.
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
ARCHIVE LOCATIONS
|
|
421
|
+
=================
|
|
422
|
+
|
|
423
|
+
The "official" archive site for this software is www.ijg.org.
|
|
424
|
+
The most recent released version can always be found there in
|
|
425
|
+
directory "files".
|
|
426
|
+
|
|
427
|
+
The JPEG FAQ (Frequently Asked Questions) article is a source of some
|
|
428
|
+
general information about JPEG. It is available at
|
|
429
|
+
http://www.faqs.org/faqs/jpeg-faq.
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
FILE FORMAT COMPATIBILITY
|
|
433
|
+
=========================
|
|
434
|
+
|
|
435
|
+
This software implements ITU T.81 | ISO/IEC 10918 with some extensions from
|
|
436
|
+
ITU T.871 | ISO/IEC 10918-5 (JPEG File Interchange Format-- see REFERENCES).
|
|
437
|
+
Informally, the term "JPEG image" or "JPEG file" most often refers to JFIF or
|
|
438
|
+
a subset thereof, but there are other formats containing the name "JPEG" that
|
|
439
|
+
are incompatible with the original JPEG standard or with JFIF (for instance,
|
|
440
|
+
JPEG 2000 and JPEG XR). This software therefore does not support these
|
|
441
|
+
formats. Indeed, one of the original reasons for developing this free software
|
|
442
|
+
was to help force convergence on a common, interoperable format standard for
|
|
443
|
+
JPEG files.
|
|
444
|
+
|
|
445
|
+
JFIF is a minimal or "low end" representation. TIFF/JPEG (TIFF revision 6.0 as
|
|
446
|
+
modified by TIFF Technical Note #2) can be used for "high end" applications
|
|
447
|
+
that need to record a lot of additional data about an image.
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
TO DO
|
|
451
|
+
=====
|
|
452
|
+
|
|
453
|
+
Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 Joachim Folz
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
From hereon included are the license texts of all bundled software.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
recursive-include custom_build_backend *
|
|
2
|
+
recursive-include src/leanjpeg_simple *.py *.pyi *.h *.c *.pyx py.typed
|
|
3
|
+
recursive-include tests *.py
|
|
4
|
+
# libjpeg-turbo sources (git submodule) so sdists build offline.
|
|
5
|
+
#
|
|
6
|
+
# Prune carefully: anything cmake touches unconditionally has to stay, and the
|
|
7
|
+
# error when it does not ("file INSTALL cannot find .../doc/libjpeg.txt") comes
|
|
8
|
+
# from `cmake --install`, minutes into the build. doc/ is installed by an
|
|
9
|
+
# unguarded install(FILES ...) in libjpeg-turbo's CMakeLists.txt, so it stays.
|
|
10
|
+
# What is left out is only reachable through options this build turns off:
|
|
11
|
+
# testimages (WITH_TESTS=0), fuzz (WITH_FUZZ, default off), and CI config.
|
|
12
|
+
recursive-include third_party/libjpeg-turbo *
|
|
13
|
+
prune third_party/libjpeg-turbo/.git
|
|
14
|
+
prune third_party/libjpeg-turbo/testimages
|
|
15
|
+
prune third_party/libjpeg-turbo/fuzz
|
|
16
|
+
prune third_party/libjpeg-turbo/.github
|
|
17
|
+
prune build
|
|
18
|
+
prune lib
|
|
19
|
+
include LICENSE LICENSE.simplejpeg requirements.txt UPSTREAM.json UPSTREAM.md README.md pyproject.toml setup.py
|
|
20
|
+
global-exclude __pycache__ *.py[cod]
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: leanjpeg-simple
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: leanjpeg fast path: a fork of simplejpeg (libjpeg-turbo) with free-threaded CPython support and pooled, allocation-free codec handles.
|
|
5
|
+
Author: leanjpeg contributors
|
|
6
|
+
Maintainer: leanjpeg contributors
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/vxlk/leanjpeg
|
|
9
|
+
Project-URL: Source, https://github.com/vxlk/leanjpeg
|
|
10
|
+
Project-URL: Issues, https://github.com/vxlk/leanjpeg/issues
|
|
11
|
+
Project-URL: Upstream, https://github.com/jfolz/simplejpeg
|
|
12
|
+
Keywords: jpeg,libjpeg-turbo,turbojpeg,simplejpeg,numpy,free-threading,nogil
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
|
16
|
+
Classifier: Operating System :: MacOS
|
|
17
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
18
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
23
|
+
Classifier: Programming Language :: Python :: Free Threading :: 3 - Stable
|
|
24
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
25
|
+
Classifier: Programming Language :: Cython
|
|
26
|
+
Classifier: Topic :: Multimedia :: Graphics
|
|
27
|
+
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
|
|
28
|
+
Classifier: Typing :: Typed
|
|
29
|
+
Requires-Python: >=3.13
|
|
30
|
+
Description-Content-Type: text/markdown
|
|
31
|
+
License-File: LICENSE
|
|
32
|
+
License-File: LICENSE.simplejpeg
|
|
33
|
+
Requires-Dist: numpy>=2.1
|
|
34
|
+
Dynamic: license-file
|
|
35
|
+
Dynamic: requires-dist
|
|
36
|
+
|
|
37
|
+
# leanjpeg-simple
|
|
38
|
+
|
|
39
|
+
The **fast path** of [leanjpeg](https://github.com/vxlk/leanjpeg): a fork of
|
|
40
|
+
[simplejpeg](https://github.com/jfolz/simplejpeg) (libjpeg-turbo, statically
|
|
41
|
+
linked) with
|
|
42
|
+
|
|
43
|
+
* **free-threaded CPython support** (3.13t / 3.14t): the module declares
|
|
44
|
+
`Py_MOD_GIL_NOT_USED`, has no unprotected global state and releases the GIL
|
|
45
|
+
around all codec work, so concurrent calls scale across threads; and
|
|
46
|
+
* **reduced allocations for repeated calls**: TurboJPEG handles are pooled and
|
|
47
|
+
encoders reuse a high-water-mark output buffer, so steady-state
|
|
48
|
+
encode/decode calls only allocate the returned object.
|
|
49
|
+
|
|
50
|
+
The API is identical to simplejpeg 1.9.0 -- same functions, arguments,
|
|
51
|
+
defaults, return types and error messages -- so it is a drop-in
|
|
52
|
+
replacement:
|
|
53
|
+
|
|
54
|
+
```python
|
|
55
|
+
import leanjpeg_simple as sj # or: from leanjpeg import simple as sj
|
|
56
|
+
|
|
57
|
+
img = sj.decode_jpeg(data, colorspace='RGB') # -> uint8 (H, W, 3)
|
|
58
|
+
h, w, cs, sub = sj.decode_jpeg_header(data)
|
|
59
|
+
jpg = sj.encode_jpeg(img, quality=85, colorsubsampling='420')
|
|
60
|
+
jpg = sj.encode_jpeg_yuv_planes(Y, U, V, quality=85) # planar input (video decoders)
|
|
61
|
+
sj.is_jpeg(data)
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Extras added by the fork: `handle_pool_stats()`, `get_handle_pool_size()`,
|
|
65
|
+
`set_handle_pool_size(n)`, `clear_handle_pool()`, `libjpeg_turbo_version()`.
|
|
66
|
+
|
|
67
|
+
The fork also fixes two upstream error paths: a JPEG using one of the
|
|
68
|
+
subsamplings libjpeg-turbo 3.x added after 4:1:1 no longer raises `KeyError`
|
|
69
|
+
out of `decode_jpeg_header`, and empty input raises a `ValueError` that says
|
|
70
|
+
so instead of being indexed out of range. `UPSTREAM.md` has the details.
|
|
71
|
+
|
|
72
|
+
Install as part of leanjpeg with `pip install "leanjpeg[simple]"`, or on its
|
|
73
|
+
own with `pip install leanjpeg-simple`.
|
|
74
|
+
|
|
75
|
+
Wheels are published for **CPython 3.13+**, free-threaded builds included
|
|
76
|
+
(`cp313`, `cp313t`, `cp314`, `cp314t`), on manylinux and musllinux (x86_64,
|
|
77
|
+
aarch64), macOS (x86_64, arm64) and Windows (AMD64, ARM64). libjpeg-turbo is
|
|
78
|
+
linked statically, so there is nothing to install alongside. Building from
|
|
79
|
+
source needs CMake >= 3.16, a C compiler and, on x86, NASM for libjpeg-turbo's
|
|
80
|
+
SIMD kernels.
|
|
81
|
+
|
|
82
|
+
See `UPSTREAM.md` for the list of changes relative to simplejpeg and how
|
|
83
|
+
upstream updates are merged, and
|
|
84
|
+
[docs/PACKAGING.md](https://github.com/vxlk/leanjpeg/blob/main/docs/PACKAGING.md)
|
|
85
|
+
for the build and release process.
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# leanjpeg-simple
|
|
2
|
+
|
|
3
|
+
The **fast path** of [leanjpeg](https://github.com/vxlk/leanjpeg): a fork of
|
|
4
|
+
[simplejpeg](https://github.com/jfolz/simplejpeg) (libjpeg-turbo, statically
|
|
5
|
+
linked) with
|
|
6
|
+
|
|
7
|
+
* **free-threaded CPython support** (3.13t / 3.14t): the module declares
|
|
8
|
+
`Py_MOD_GIL_NOT_USED`, has no unprotected global state and releases the GIL
|
|
9
|
+
around all codec work, so concurrent calls scale across threads; and
|
|
10
|
+
* **reduced allocations for repeated calls**: TurboJPEG handles are pooled and
|
|
11
|
+
encoders reuse a high-water-mark output buffer, so steady-state
|
|
12
|
+
encode/decode calls only allocate the returned object.
|
|
13
|
+
|
|
14
|
+
The API is identical to simplejpeg 1.9.0 -- same functions, arguments,
|
|
15
|
+
defaults, return types and error messages -- so it is a drop-in
|
|
16
|
+
replacement:
|
|
17
|
+
|
|
18
|
+
```python
|
|
19
|
+
import leanjpeg_simple as sj # or: from leanjpeg import simple as sj
|
|
20
|
+
|
|
21
|
+
img = sj.decode_jpeg(data, colorspace='RGB') # -> uint8 (H, W, 3)
|
|
22
|
+
h, w, cs, sub = sj.decode_jpeg_header(data)
|
|
23
|
+
jpg = sj.encode_jpeg(img, quality=85, colorsubsampling='420')
|
|
24
|
+
jpg = sj.encode_jpeg_yuv_planes(Y, U, V, quality=85) # planar input (video decoders)
|
|
25
|
+
sj.is_jpeg(data)
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Extras added by the fork: `handle_pool_stats()`, `get_handle_pool_size()`,
|
|
29
|
+
`set_handle_pool_size(n)`, `clear_handle_pool()`, `libjpeg_turbo_version()`.
|
|
30
|
+
|
|
31
|
+
The fork also fixes two upstream error paths: a JPEG using one of the
|
|
32
|
+
subsamplings libjpeg-turbo 3.x added after 4:1:1 no longer raises `KeyError`
|
|
33
|
+
out of `decode_jpeg_header`, and empty input raises a `ValueError` that says
|
|
34
|
+
so instead of being indexed out of range. `UPSTREAM.md` has the details.
|
|
35
|
+
|
|
36
|
+
Install as part of leanjpeg with `pip install "leanjpeg[simple]"`, or on its
|
|
37
|
+
own with `pip install leanjpeg-simple`.
|
|
38
|
+
|
|
39
|
+
Wheels are published for **CPython 3.13+**, free-threaded builds included
|
|
40
|
+
(`cp313`, `cp313t`, `cp314`, `cp314t`), on manylinux and musllinux (x86_64,
|
|
41
|
+
aarch64), macOS (x86_64, arm64) and Windows (AMD64, ARM64). libjpeg-turbo is
|
|
42
|
+
linked statically, so there is nothing to install alongside. Building from
|
|
43
|
+
source needs CMake >= 3.16, a C compiler and, on x86, NASM for libjpeg-turbo's
|
|
44
|
+
SIMD kernels.
|
|
45
|
+
|
|
46
|
+
See `UPSTREAM.md` for the list of changes relative to simplejpeg and how
|
|
47
|
+
upstream updates are merged, and
|
|
48
|
+
[docs/PACKAGING.md](https://github.com/vxlk/leanjpeg/blob/main/docs/PACKAGING.md)
|
|
49
|
+
for the build and release process.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"upstream": "https://github.com/jfolz/simplejpeg",
|
|
3
|
+
"submodule": "third_party/simplejpeg",
|
|
4
|
+
"commit": "43c07cfccf7b8caf5b83453d4502f082f376cfa4",
|
|
5
|
+
"version": "1.9.0",
|
|
6
|
+
"files": {
|
|
7
|
+
"simplejpeg/_jpeg.pyx": "src/leanjpeg_simple/_jpeg.pyx",
|
|
8
|
+
"simplejpeg/_jpeg.pyi": "src/leanjpeg_simple/_jpeg.pyi",
|
|
9
|
+
"simplejpeg/_color.c": "src/leanjpeg_simple/_color.c",
|
|
10
|
+
"simplejpeg/_color.h": "src/leanjpeg_simple/_color.h",
|
|
11
|
+
"simplejpeg/__init__.py": "src/leanjpeg_simple/__init__.py",
|
|
12
|
+
"setup.py": "setup.py",
|
|
13
|
+
"custom_build_backend/custom_build_meta.py": "custom_build_backend/custom_build_meta.py",
|
|
14
|
+
"test/test_decode.py": "tests/test_simple_decode.py",
|
|
15
|
+
"test/test_encode.py": "tests/test_simple_encode.py",
|
|
16
|
+
"test/test_encode_yuv.py": "tests/test_simple_encode_yuv.py",
|
|
17
|
+
"test/test_util.py": "tests/test_simple_util.py",
|
|
18
|
+
"LICENSE": "LICENSE.simplejpeg"
|
|
19
|
+
}
|
|
20
|
+
}
|