leanjpeg-xl 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.
Files changed (1585) hide show
  1. leanjpeg_xl-0.1.0/LICENSE +341 -0
  2. leanjpeg_xl-0.1.0/MANIFEST.in +39 -0
  3. leanjpeg_xl-0.1.0/PKG-INFO +81 -0
  4. leanjpeg_xl-0.1.0/README.md +45 -0
  5. leanjpeg_xl-0.1.0/custom_build_backend/custom_build_meta.py +48 -0
  6. leanjpeg_xl-0.1.0/pyproject.toml +70 -0
  7. leanjpeg_xl-0.1.0/requirements.txt +1 -0
  8. leanjpeg_xl-0.1.0/setup.cfg +4 -0
  9. leanjpeg_xl-0.1.0/setup.py +376 -0
  10. leanjpeg_xl-0.1.0/src/leanjpeg_xl/__init__.py +67 -0
  11. leanjpeg_xl-0.1.0/src/leanjpeg_xl/__pyinstaller/__init__.py +13 -0
  12. leanjpeg_xl-0.1.0/src/leanjpeg_xl/__pyinstaller/hook-leanjpeg_xl.py +20 -0
  13. leanjpeg_xl-0.1.0/src/leanjpeg_xl/_jxl.cpp +32569 -0
  14. leanjpeg_xl-0.1.0/src/leanjpeg_xl/_jxl.pyi +125 -0
  15. leanjpeg_xl-0.1.0/src/leanjpeg_xl/_jxl.pyx +766 -0
  16. leanjpeg_xl-0.1.0/src/leanjpeg_xl/_jxl_core.cpp +1052 -0
  17. leanjpeg_xl-0.1.0/src/leanjpeg_xl/_jxl_core.h +154 -0
  18. leanjpeg_xl-0.1.0/src/leanjpeg_xl/py.typed +0 -0
  19. leanjpeg_xl-0.1.0/src/leanjpeg_xl.egg-info/PKG-INFO +81 -0
  20. leanjpeg_xl-0.1.0/src/leanjpeg_xl.egg-info/SOURCES.txt +1583 -0
  21. leanjpeg_xl-0.1.0/src/leanjpeg_xl.egg-info/dependency_links.txt +1 -0
  22. leanjpeg_xl-0.1.0/src/leanjpeg_xl.egg-info/entry_points.txt +2 -0
  23. leanjpeg_xl-0.1.0/src/leanjpeg_xl.egg-info/not-zip-safe +1 -0
  24. leanjpeg_xl-0.1.0/src/leanjpeg_xl.egg-info/requires.txt +1 -0
  25. leanjpeg_xl-0.1.0/src/leanjpeg_xl.egg-info/top_level.txt +1 -0
  26. leanjpeg_xl-0.1.0/tests/lj_xl_images.py +84 -0
  27. leanjpeg_xl-0.1.0/tests/test_xl_codec.py +478 -0
  28. leanjpeg_xl-0.1.0/tests/test_xl_jpeg.py +95 -0
  29. leanjpeg_xl-0.1.0/tests/test_xl_threads.py +119 -0
  30. leanjpeg_xl-0.1.0/third_party/libjxl/.bazelignore +1 -0
  31. leanjpeg_xl-0.1.0/third_party/libjxl/.clang-format +4 -0
  32. leanjpeg_xl-0.1.0/third_party/libjxl/.clang-tidy +90 -0
  33. leanjpeg_xl-0.1.0/third_party/libjxl/.clangd +2 -0
  34. leanjpeg_xl-0.1.0/third_party/libjxl/.devcontainer/Dockerfile +37 -0
  35. leanjpeg_xl-0.1.0/third_party/libjxl/.devcontainer/devcontainer.json +27 -0
  36. leanjpeg_xl-0.1.0/third_party/libjxl/.git +1 -0
  37. leanjpeg_xl-0.1.0/third_party/libjxl/.gitignore +26 -0
  38. leanjpeg_xl-0.1.0/third_party/libjxl/.gitmodules +30 -0
  39. leanjpeg_xl-0.1.0/third_party/libjxl/.pre-commit-config.yaml +30 -0
  40. leanjpeg_xl-0.1.0/third_party/libjxl/.readthedocs.yaml +24 -0
  41. leanjpeg_xl-0.1.0/third_party/libjxl/AUTHORS +116 -0
  42. leanjpeg_xl-0.1.0/third_party/libjxl/BUILD.bazel +28 -0
  43. leanjpeg_xl-0.1.0/third_party/libjxl/BUILDING.md +85 -0
  44. leanjpeg_xl-0.1.0/third_party/libjxl/BUILDING_Haiku.md +20 -0
  45. leanjpeg_xl-0.1.0/third_party/libjxl/BUILDING_OSX.md +41 -0
  46. leanjpeg_xl-0.1.0/third_party/libjxl/CHANGELOG.md +671 -0
  47. leanjpeg_xl-0.1.0/third_party/libjxl/CMakeLists.txt +545 -0
  48. leanjpeg_xl-0.1.0/third_party/libjxl/CODE_OF_CONDUCT.md +93 -0
  49. leanjpeg_xl-0.1.0/third_party/libjxl/CONTRIBUTING.md +146 -0
  50. leanjpeg_xl-0.1.0/third_party/libjxl/CONTRIBUTORS +23 -0
  51. leanjpeg_xl-0.1.0/third_party/libjxl/LICENSE +27 -0
  52. leanjpeg_xl-0.1.0/third_party/libjxl/MODULE.bazel +28 -0
  53. leanjpeg_xl-0.1.0/third_party/libjxl/MODULE.bazel.lock +240 -0
  54. leanjpeg_xl-0.1.0/third_party/libjxl/PATENTS +22 -0
  55. leanjpeg_xl-0.1.0/third_party/libjxl/README.md +144 -0
  56. leanjpeg_xl-0.1.0/third_party/libjxl/SECURITY.md +73 -0
  57. leanjpeg_xl-0.1.0/third_party/libjxl/bash_test.sh +328 -0
  58. leanjpeg_xl-0.1.0/third_party/libjxl/ci.sh +1592 -0
  59. leanjpeg_xl-0.1.0/third_party/libjxl/cmake/FindAtomics.cmake +53 -0
  60. leanjpeg_xl-0.1.0/third_party/libjxl/cmake/FindBrotli.cmake +87 -0
  61. leanjpeg_xl-0.1.0/third_party/libjxl/cmake/FindHWY.cmake +86 -0
  62. leanjpeg_xl-0.1.0/third_party/libjxl/cmake/FindLCMS2.cmake +69 -0
  63. leanjpeg_xl-0.1.0/third_party/libjxl/cmake_uninstall.cmake.in +41 -0
  64. leanjpeg_xl-0.1.0/third_party/libjxl/debian/changelog +125 -0
  65. leanjpeg_xl-0.1.0/third_party/libjxl/debian/compat +1 -0
  66. leanjpeg_xl-0.1.0/third_party/libjxl/debian/control +76 -0
  67. leanjpeg_xl-0.1.0/third_party/libjxl/debian/copyright +199 -0
  68. leanjpeg_xl-0.1.0/third_party/libjxl/debian/jxl.install +3 -0
  69. leanjpeg_xl-0.1.0/third_party/libjxl/debian/libjxl-dev.install +3 -0
  70. leanjpeg_xl-0.1.0/third_party/libjxl/debian/libjxl-gdk-pixbuf.install +3 -0
  71. leanjpeg_xl-0.1.0/third_party/libjxl/debian/libjxl.install +1 -0
  72. leanjpeg_xl-0.1.0/third_party/libjxl/debian/rules +17 -0
  73. leanjpeg_xl-0.1.0/third_party/libjxl/debian/source/format +1 -0
  74. leanjpeg_xl-0.1.0/third_party/libjxl/deps.sh +90 -0
  75. leanjpeg_xl-0.1.0/third_party/libjxl/flake.lock +61 -0
  76. leanjpeg_xl-0.1.0/third_party/libjxl/flake.nix +39 -0
  77. leanjpeg_xl-0.1.0/third_party/libjxl/lib/BUILD +250 -0
  78. leanjpeg_xl-0.1.0/third_party/libjxl/lib/CMakeLists.txt +205 -0
  79. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/LICENSE.apngdis +27 -0
  80. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/README.md +5 -0
  81. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/alpha_blend.cc +72 -0
  82. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/alpha_blend.h +20 -0
  83. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/codec.cc +120 -0
  84. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/codec.h +52 -0
  85. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/codec_in_out.h +111 -0
  86. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/codec_test.cc +575 -0
  87. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/common.cc +62 -0
  88. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/common.h +26 -0
  89. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/compressed_icc.cc +69 -0
  90. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/compressed_icc_test.cc +46 -0
  91. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/apng.cc +1312 -0
  92. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/apng.h +35 -0
  93. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/color_description.cc +276 -0
  94. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/color_description.h +24 -0
  95. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/color_description_test.cc +42 -0
  96. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/color_hints.cc +83 -0
  97. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/color_hints.h +72 -0
  98. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/decode.cc +250 -0
  99. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/decode.h +65 -0
  100. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/exr.cc +526 -0
  101. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/exr.h +35 -0
  102. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/gif.cc +446 -0
  103. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/gif.h +35 -0
  104. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/jpg.cc +368 -0
  105. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/jpg.h +45 -0
  106. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/jxl.cc +669 -0
  107. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/jxl.h +81 -0
  108. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/pgx.cc +224 -0
  109. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/pgx.h +33 -0
  110. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/pgx_test.cc +117 -0
  111. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/pnm.cc +628 -0
  112. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/dec/pnm.h +68 -0
  113. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/apng.cc +537 -0
  114. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/apng.h +23 -0
  115. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/encode.cc +162 -0
  116. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/encode.h +93 -0
  117. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/exr.cc +252 -0
  118. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/exr.h +23 -0
  119. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/jpg.cc +650 -0
  120. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/jpg.h +23 -0
  121. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/jxl.cc +412 -0
  122. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/jxl.h +102 -0
  123. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/npy.cc +337 -0
  124. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/npy.h +23 -0
  125. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/pgx.cc +139 -0
  126. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/pgx.h +23 -0
  127. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/pnm.cc +349 -0
  128. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/enc/pnm.h +29 -0
  129. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/exif.cc +58 -0
  130. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/exif.h +20 -0
  131. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/gain_map.cc +238 -0
  132. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/gain_map_test.cc +172 -0
  133. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/hlg.cc +65 -0
  134. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/hlg.h +23 -0
  135. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/include_jpeglib.h +20 -0
  136. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/metrics.cc +249 -0
  137. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/metrics.h +30 -0
  138. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/mmap.cc +153 -0
  139. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/mmap.h +33 -0
  140. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/packed_image.cc +193 -0
  141. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/packed_image.h +250 -0
  142. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/packed_image_convert.cc +357 -0
  143. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/packed_image_convert.h +43 -0
  144. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/size_constraints.h +45 -0
  145. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/time.cc +57 -0
  146. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/time.h +19 -0
  147. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/tone_mapping.cc +148 -0
  148. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/tone_mapping.h +34 -0
  149. leanjpeg_xl-0.1.0/third_party/libjxl/lib/extras/tone_mapping_gbench.cc +68 -0
  150. leanjpeg_xl-0.1.0/third_party/libjxl/lib/gbench_main.cc +23 -0
  151. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/cms.h +24 -0
  152. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/cms_interface.h +255 -0
  153. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/codestream_header.h +433 -0
  154. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/color_encoding.h +161 -0
  155. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/compressed_icc.h +75 -0
  156. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/decode.h +1475 -0
  157. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/decode_cxx.h +58 -0
  158. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/encode.h +1629 -0
  159. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/encode_cxx.h +58 -0
  160. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/gain_map.h +129 -0
  161. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/memory_manager.h +73 -0
  162. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/parallel_runner.h +164 -0
  163. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/resizable_parallel_runner.h +77 -0
  164. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/resizable_parallel_runner_cxx.h +65 -0
  165. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/stats.h +103 -0
  166. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/thread_parallel_runner.h +71 -0
  167. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/thread_parallel_runner_cxx.h +66 -0
  168. leanjpeg_xl-0.1.0/third_party/libjxl/lib/include/jxl/types.h +154 -0
  169. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/ac_context.h +154 -0
  170. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/ac_strategy.cc +115 -0
  171. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/ac_strategy.h +275 -0
  172. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/ac_strategy_test.cc +271 -0
  173. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/alpha.cc +117 -0
  174. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/alpha.h +63 -0
  175. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/alpha_test.cc +127 -0
  176. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/ans_common.cc +148 -0
  177. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/ans_common.h +157 -0
  178. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/ans_common_test.cc +52 -0
  179. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/ans_params.h +33 -0
  180. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/ans_test.cc +380 -0
  181. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/arch_macros.h +33 -0
  182. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/bits.h +148 -0
  183. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/byte_order.h +274 -0
  184. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/c_callback_support.h +32 -0
  185. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/common.h +213 -0
  186. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/compiler_specific.h +218 -0
  187. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/data_parallel.h +155 -0
  188. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/exif.h +90 -0
  189. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/fast_math-inl.h +238 -0
  190. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/float.h +101 -0
  191. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/iaca.h +65 -0
  192. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/matrix_ops.h +86 -0
  193. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/os_macros.h +50 -0
  194. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/override.h +31 -0
  195. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/printf_macros.h +34 -0
  196. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/random.h +99 -0
  197. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/rational_polynomial-inl.h +104 -0
  198. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/rect.h +186 -0
  199. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/sanitizer_definitions.h +44 -0
  200. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/sanitizers.h +233 -0
  201. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/scope_guard.h +49 -0
  202. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/span.h +84 -0
  203. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/base/status.h +388 -0
  204. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/bit_reader_test.cc +276 -0
  205. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/bits_test.cc +92 -0
  206. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/blending.cc +192 -0
  207. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/blending.h +31 -0
  208. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/blending_test.cc +58 -0
  209. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/box_content_decoder.cc +124 -0
  210. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/box_content_decoder.h +46 -0
  211. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/butteraugli/butteraugli.cc +2189 -0
  212. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/butteraugli/butteraugli.h +225 -0
  213. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/butteraugli/butteraugli_test.cc +112 -0
  214. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/byte_order_test.cc +55 -0
  215. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/chroma_from_luma.cc +64 -0
  216. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/chroma_from_luma.h +144 -0
  217. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/cms/color_encoding_cms.h +642 -0
  218. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/cms/jxl_cms.cc +1397 -0
  219. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/cms/jxl_cms_internal.h +1176 -0
  220. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/cms/opsin_params.h +162 -0
  221. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/cms/tone_mapping-inl.h +195 -0
  222. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/cms/tone_mapping.h +182 -0
  223. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/cms/tone_mapping_test.cc +154 -0
  224. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/cms/transfer_functions-inl.h +348 -0
  225. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/cms/transfer_functions.h +131 -0
  226. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/cms/transfer_functions_test.cc +113 -0
  227. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/coeff_order.cc +158 -0
  228. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/coeff_order.h +62 -0
  229. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/coeff_order_fwd.h +47 -0
  230. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/coeff_order_test.cc +106 -0
  231. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/color_encoding_internal.cc +220 -0
  232. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/color_encoding_internal.h +365 -0
  233. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/color_encoding_internal_test.cc +167 -0
  234. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/color_management_test.cc +465 -0
  235. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/common.h +75 -0
  236. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/compressed_dc.cc +324 -0
  237. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/compressed_dc.h +36 -0
  238. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/convolve-inl.h +104 -0
  239. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/convolve.h +70 -0
  240. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/convolve_slow.cc +156 -0
  241. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/convolve_symmetric5.cc +196 -0
  242. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/convolve_test.cc +281 -0
  243. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/data_parallel_test.cc +102 -0
  244. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dct-inl.h +404 -0
  245. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dct_block-inl.h +110 -0
  246. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dct_for_test.h +98 -0
  247. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dct_gbench.cc +160 -0
  248. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dct_scales.cc +34 -0
  249. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dct_scales.h +379 -0
  250. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dct_test.cc +518 -0
  251. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dct_util.h +95 -0
  252. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_ans.cc +421 -0
  253. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_ans.h +503 -0
  254. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_bit_reader.cc +36 -0
  255. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_bit_reader.h +328 -0
  256. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_cache.cc +373 -0
  257. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_cache.h +233 -0
  258. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_context_map.cc +97 -0
  259. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_context_map.h +30 -0
  260. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_external_image.cc +537 -0
  261. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_external_image.h +65 -0
  262. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_external_image_gbench.cc +84 -0
  263. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_frame.cc +882 -0
  264. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_frame.h +358 -0
  265. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_group.cc +844 -0
  266. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_group.h +47 -0
  267. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_group_border.cc +189 -0
  268. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_group_border.h +46 -0
  269. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_huffman.cc +245 -0
  270. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_huffman.h +48 -0
  271. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_modular.cc +844 -0
  272. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_modular.h +154 -0
  273. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_noise.cc +167 -0
  274. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_noise.h +32 -0
  275. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_patch_dictionary.cc +358 -0
  276. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_patch_dictionary.h +167 -0
  277. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_transforms-inl.h +826 -0
  278. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_transforms_testonly.cc +45 -0
  279. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_transforms_testonly.h +34 -0
  280. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_xyb-inl.h +351 -0
  281. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_xyb.cc +253 -0
  282. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/dec_xyb.h +92 -0
  283. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/decode.cc +3007 -0
  284. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/decode_test.cc +5781 -0
  285. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/decode_to_jpeg.cc +185 -0
  286. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/decode_to_jpeg.h +220 -0
  287. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_ac_strategy.cc +1200 -0
  288. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_ac_strategy.h +91 -0
  289. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_adaptive_quantization.cc +1292 -0
  290. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_adaptive_quantization.h +58 -0
  291. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_ans.cc +1388 -0
  292. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_ans.h +161 -0
  293. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_ans_params.h +185 -0
  294. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_ans_simd.cc +245 -0
  295. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_ans_simd.h +24 -0
  296. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_aux_out.cc +122 -0
  297. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_aux_out.h +110 -0
  298. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_bit_writer.cc +208 -0
  299. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_bit_writer.h +152 -0
  300. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_bit_writer_test.cc +74 -0
  301. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_butteraugli_comparator.cc +117 -0
  302. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_butteraugli_comparator.h +47 -0
  303. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_cache.cc +250 -0
  304. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_cache.h +93 -0
  305. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_chroma_from_luma.cc +420 -0
  306. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_chroma_from_luma.h +74 -0
  307. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_cluster.cc +372 -0
  308. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_cluster.h +27 -0
  309. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_coeff_order.cc +334 -0
  310. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_coeff_order.h +58 -0
  311. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_comparator.cc +152 -0
  312. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_comparator.h +55 -0
  313. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_context_map.cc +175 -0
  314. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_context_map.h +36 -0
  315. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_convolve_separable5.cc +413 -0
  316. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_debug_image.cc +137 -0
  317. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_debug_image.h +37 -0
  318. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_detect_dots.cc +621 -0
  319. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_detect_dots.h +67 -0
  320. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_dot_dictionary.cc +76 -0
  321. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_dot_dictionary.h +30 -0
  322. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_entropy_coder.cc +270 -0
  323. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_entropy_coder.h +43 -0
  324. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_external_image.cc +208 -0
  325. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_external_image.h +52 -0
  326. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_external_image_gbench.cc +62 -0
  327. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_external_image_test.cc +84 -0
  328. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_fast_lossless.cc +4437 -0
  329. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_fast_lossless.h +117 -0
  330. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_fields.cc +253 -0
  331. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_fields.h +41 -0
  332. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_frame.cc +2765 -0
  333. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_frame.h +112 -0
  334. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_gaborish.cc +74 -0
  335. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_gaborish.h +26 -0
  336. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_gaborish_test.cc +91 -0
  337. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_gamma_correct.h +35 -0
  338. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_group.cc +571 -0
  339. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_group.h +32 -0
  340. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_heuristics.cc +1227 -0
  341. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_heuristics.h +51 -0
  342. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_huffman.cc +225 -0
  343. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_huffman.h +26 -0
  344. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_huffman_tree.cc +335 -0
  345. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_huffman_tree.h +52 -0
  346. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_icc_codec.cc +484 -0
  347. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_icc_codec.h +30 -0
  348. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_image_bundle.cc +168 -0
  349. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_image_bundle.h +39 -0
  350. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_linalg.cc +49 -0
  351. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_linalg.h +24 -0
  352. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_linalg_test.cc +98 -0
  353. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_lz77.cc +699 -0
  354. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_lz77.h +27 -0
  355. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_modular.cc +1859 -0
  356. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_modular.h +135 -0
  357. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_modular_simd.cc +307 -0
  358. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_modular_simd.h +28 -0
  359. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_noise.cc +382 -0
  360. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_noise.h +35 -0
  361. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_optimize.h +193 -0
  362. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_optimize_test.cc +96 -0
  363. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_params.h +212 -0
  364. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_patch_dictionary.cc +896 -0
  365. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_patch_dictionary.h +110 -0
  366. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_photon_noise.cc +99 -0
  367. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_photon_noise.h +22 -0
  368. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_photon_noise_test.cc +41 -0
  369. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_progressive_split.cc +83 -0
  370. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_progressive_split.h +125 -0
  371. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_quant_weights.cc +226 -0
  372. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_quant_weights.h +48 -0
  373. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_splines.cc +108 -0
  374. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_splines.h +30 -0
  375. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_toc.cc +52 -0
  376. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_toc.h +32 -0
  377. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_transforms-inl.h +807 -0
  378. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_transforms.cc +45 -0
  379. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_transforms.h +33 -0
  380. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_xyb.cc +411 -0
  381. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/enc_xyb.h +49 -0
  382. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/encode.cc +2887 -0
  383. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/encode_internal.h +712 -0
  384. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/encode_test.cc +2236 -0
  385. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/entropy_coder.cc +66 -0
  386. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/entropy_coder.h +49 -0
  387. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/entropy_coder_test.cc +70 -0
  388. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/epf.cc +135 -0
  389. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/epf.h +32 -0
  390. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/fake_parallel_runner_testonly.h +79 -0
  391. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/fast_math_test.cc +270 -0
  392. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/field_encodings.h +134 -0
  393. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/fields.cc +595 -0
  394. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/fields.h +369 -0
  395. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/fields_test.cc +457 -0
  396. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/frame_dimensions.h +117 -0
  397. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/frame_header.cc +515 -0
  398. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/frame_header.h +508 -0
  399. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/fuzztest.h +22 -0
  400. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/gamma_correct_test.cc +35 -0
  401. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/gradient_test.cc +209 -0
  402. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/headers.cc +203 -0
  403. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/headers.h +97 -0
  404. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/huffman_table.cc +161 -0
  405. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/huffman_table.h +28 -0
  406. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/iaca_test.cc +21 -0
  407. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/icc_codec.cc +428 -0
  408. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/icc_codec.h +49 -0
  409. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/icc_codec_common.cc +176 -0
  410. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/icc_codec_common.h +105 -0
  411. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/icc_codec_test.cc +216 -0
  412. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/image.cc +110 -0
  413. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/image.h +330 -0
  414. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/image_bundle.cc +134 -0
  415. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/image_bundle.h +265 -0
  416. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/image_bundle_test.cc +47 -0
  417. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/image_metadata.cc +488 -0
  418. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/image_metadata.h +429 -0
  419. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/image_ops.cc +100 -0
  420. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/image_ops.h +274 -0
  421. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/image_ops_test.cc +120 -0
  422. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/image_test_utils.h +265 -0
  423. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/inverse_mtf-inl.h +92 -0
  424. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/dec_jpeg_data.cc +154 -0
  425. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/dec_jpeg_data.h +21 -0
  426. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/dec_jpeg_data_writer.cc +1075 -0
  427. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/dec_jpeg_data_writer.h +30 -0
  428. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/dec_jpeg_output_chunk.h +74 -0
  429. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/dec_jpeg_serialization_state.h +103 -0
  430. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/enc_jpeg_data.cc +413 -0
  431. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/enc_jpeg_data.h +57 -0
  432. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/enc_jpeg_data_reader.cc +1056 -0
  433. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/enc_jpeg_data_reader.h +37 -0
  434. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/enc_jpeg_huffman_decode.cc +105 -0
  435. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/enc_jpeg_huffman_decode.h +49 -0
  436. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/jpeg_data.cc +507 -0
  437. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jpeg/jpeg_data.h +219 -0
  438. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jxl.syms +5 -0
  439. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jxl.version +17 -0
  440. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jxl_osx.syms +1 -0
  441. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/jxl_test.cc +1988 -0
  442. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/lehmer_code.h +104 -0
  443. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/lehmer_code_test.cc +98 -0
  444. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/libjxl.pc.in +13 -0
  445. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/libjxl_cms.pc.in +13 -0
  446. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/loop_filter.cc +102 -0
  447. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/loop_filter.h +75 -0
  448. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/luminance.cc +27 -0
  449. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/luminance.h +22 -0
  450. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/memory_manager_internal.cc +173 -0
  451. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/memory_manager_internal.h +207 -0
  452. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/encoding/context_predict.h +712 -0
  453. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/encoding/dec_ma.cc +182 -0
  454. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/encoding/dec_ma.h +68 -0
  455. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/encoding/enc_debug_tree.cc +121 -0
  456. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/encoding/enc_debug_tree.h +19 -0
  457. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/encoding/enc_encoding.cc +813 -0
  458. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/encoding/enc_encoding.h +46 -0
  459. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/encoding/enc_ma.cc +1073 -0
  460. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/encoding/enc_ma.h +182 -0
  461. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/encoding/encoding.cc +726 -0
  462. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/encoding/encoding.h +152 -0
  463. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/encoding/ma_common.h +28 -0
  464. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/modular_image.cc +121 -0
  465. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/modular_image.h +134 -0
  466. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/options.h +129 -0
  467. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/enc_palette.cc +666 -0
  468. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/enc_palette.h +25 -0
  469. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/enc_rct.cc +214 -0
  470. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/enc_rct.h +25 -0
  471. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/enc_squeeze.cc +166 -0
  472. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/enc_squeeze.h +23 -0
  473. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/enc_transform.cc +55 -0
  474. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/enc_transform.h +23 -0
  475. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/palette.cc +202 -0
  476. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/palette.h +135 -0
  477. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/rct.cc +163 -0
  478. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/rct.h +21 -0
  479. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/squeeze.cc +519 -0
  480. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/squeeze.h +91 -0
  481. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/squeeze_params.cc +26 -0
  482. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/squeeze_params.h +30 -0
  483. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/transform.cc +166 -0
  484. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular/transform/transform.h +82 -0
  485. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/modular_test.cc +643 -0
  486. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/noise.h +66 -0
  487. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/opsin_image_test.cc +135 -0
  488. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/opsin_inverse_test.cc +110 -0
  489. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/opsin_params.cc +47 -0
  490. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/opsin_params.h +26 -0
  491. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/pack_signed.h +38 -0
  492. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/padded_bytes.h +226 -0
  493. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/padded_bytes_test.cc +74 -0
  494. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/passes_state.cc +87 -0
  495. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/passes_state.h +106 -0
  496. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/passes_test.cc +430 -0
  497. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/patch_dictionary_internal.h +28 -0
  498. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/patch_dictionary_test.cc +67 -0
  499. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/preview_test.cc +74 -0
  500. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/quant_weights.cc +1273 -0
  501. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/quant_weights.h +432 -0
  502. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/quant_weights_test.cc +276 -0
  503. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/quantizer-inl.h +75 -0
  504. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/quantizer.cc +163 -0
  505. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/quantizer.h +180 -0
  506. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/quantizer_test.cc +99 -0
  507. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/rational_polynomial_test.cc +241 -0
  508. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/low_memory_render_pipeline.cc +935 -0
  509. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/low_memory_render_pipeline.h +124 -0
  510. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/render_pipeline.cc +143 -0
  511. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/render_pipeline.h +157 -0
  512. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/render_pipeline_stage.cc +39 -0
  513. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/render_pipeline_stage.h +212 -0
  514. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/render_pipeline_test.cc +636 -0
  515. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/simple_render_pipeline.cc +298 -0
  516. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/simple_render_pipeline.h +48 -0
  517. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_blending.cc +268 -0
  518. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_blending.h +25 -0
  519. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_chroma_upsampling.cc +142 -0
  520. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_chroma_upsampling.h +22 -0
  521. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_cms.cc +172 -0
  522. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_cms.h +21 -0
  523. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_epf.cc +553 -0
  524. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_epf.h +29 -0
  525. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_from_linear.cc +202 -0
  526. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_from_linear.h +22 -0
  527. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_gaborish.cc +134 -0
  528. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_gaborish.h +20 -0
  529. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_noise.cc +342 -0
  530. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_noise.h +29 -0
  531. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_patches.cc +61 -0
  532. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_patches.h +25 -0
  533. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_splines.cc +73 -0
  534. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_splines.h +21 -0
  535. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_spot.cc +60 -0
  536. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_spot.h +22 -0
  537. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_to_linear.cc +206 -0
  538. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_to_linear.h +23 -0
  539. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_tone_mapping.cc +158 -0
  540. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_tone_mapping.h +32 -0
  541. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_upsampling.cc +314 -0
  542. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_upsampling.h +24 -0
  543. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_write.cc +862 -0
  544. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_write.h +40 -0
  545. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_xyb.cc +192 -0
  546. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_xyb.h +29 -0
  547. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_ycbcr.cc +92 -0
  548. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/stage_ycbcr.h +19 -0
  549. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/render_pipeline/test_render_pipeline_stages.h +110 -0
  550. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/roundtrip_test.cc +1103 -0
  551. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/simd_util-inl.h +352 -0
  552. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/simd_util.cc +75 -0
  553. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/simd_util.h +23 -0
  554. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/simd_util_test.cc +103 -0
  555. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/speed_tier_test.cc +118 -0
  556. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/splines.cc +784 -0
  557. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/splines.h +182 -0
  558. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/splines_gbench.cc +81 -0
  559. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/splines_test.cc +343 -0
  560. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/test_image.cc +458 -0
  561. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/test_image.h +94 -0
  562. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/test_memory_manager.cc +24 -0
  563. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/test_memory_manager.h +19 -0
  564. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/test_utils.cc +984 -0
  565. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/test_utils.h +263 -0
  566. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/testing.h +86 -0
  567. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/tf_gbench.cc +157 -0
  568. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/toc.cc +115 -0
  569. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/toc.h +56 -0
  570. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/toc_test.cc +117 -0
  571. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/transpose-inl.h +205 -0
  572. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/version.h.in +44 -0
  573. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/xorshift128plus-inl.h +103 -0
  574. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl/xorshift128plus_test.cc +399 -0
  575. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl.cmake +306 -0
  576. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl_benchmark.cmake +44 -0
  577. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl_cms.cmake +82 -0
  578. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl_extras.cmake +160 -0
  579. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl_lists.bzl +572 -0
  580. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl_lists.cmake +563 -0
  581. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl_tests.cmake +98 -0
  582. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl_threads.cmake +98 -0
  583. leanjpeg_xl-0.1.0/third_party/libjxl/lib/jxl_vars.bzl +42 -0
  584. leanjpeg_xl-0.1.0/third_party/libjxl/lib/lib.gni +570 -0
  585. leanjpeg_xl-0.1.0/third_party/libjxl/lib/nothing.cc +7 -0
  586. leanjpeg_xl-0.1.0/third_party/libjxl/lib/threads/libjxl_threads.pc.in +13 -0
  587. leanjpeg_xl-0.1.0/third_party/libjxl/lib/threads/resizable_parallel_runner.cc +200 -0
  588. leanjpeg_xl-0.1.0/third_party/libjxl/lib/threads/thread_parallel_runner.cc +109 -0
  589. leanjpeg_xl-0.1.0/third_party/libjxl/lib/threads/thread_parallel_runner_internal.cc +176 -0
  590. leanjpeg_xl-0.1.0/third_party/libjxl/lib/threads/thread_parallel_runner_internal.h +167 -0
  591. leanjpeg_xl-0.1.0/third_party/libjxl/lib/threads/thread_parallel_runner_test.cc +131 -0
  592. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/CMakeLists.txt +182 -0
  593. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/.bazelignore +6 -0
  594. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/.editorconfig +40 -0
  595. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/.git +1 -0
  596. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/.gitattributes +54 -0
  597. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/.github/dependabot.yml +11 -0
  598. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/.github/workflows/build_test.yml +375 -0
  599. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/.github/workflows/build_test_wasm.yml +70 -0
  600. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/.github/workflows/codeql.yml +81 -0
  601. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/.github/workflows/fuzz.yml +47 -0
  602. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/.github/workflows/lint.yml +50 -0
  603. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/.github/workflows/release.yaml +245 -0
  604. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/.github/workflows/scorecard.yml +82 -0
  605. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/.gitignore +20 -0
  606. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/BUILD.bazel +141 -0
  607. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/CHANGELOG.md +291 -0
  608. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/CMakeLists.txt +395 -0
  609. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/CONTRIBUTING.md +32 -0
  610. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/LICENSE +19 -0
  611. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/MANIFEST.in +19 -0
  612. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/MODULE.bazel +12 -0
  613. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/README +15 -0
  614. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/README.md +114 -0
  615. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/SECURITY.md +6 -0
  616. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/constants.c +15 -0
  617. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/constants.h +198 -0
  618. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/context.c +156 -0
  619. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/context.h +112 -0
  620. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/dictionary.bin +432 -0
  621. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/dictionary.bin.br +0 -0
  622. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/dictionary.c +64 -0
  623. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/dictionary.h +63 -0
  624. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/dictionary_inc.h +5847 -0
  625. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/platform.c +19 -0
  626. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/platform.h +680 -0
  627. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/shared_dictionary.c +517 -0
  628. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/shared_dictionary_internal.h +75 -0
  629. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/static_init.h +56 -0
  630. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/transform.c +293 -0
  631. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/transform.h +84 -0
  632. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/common/version.h +51 -0
  633. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/dec/bit_reader.c +77 -0
  634. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/dec/bit_reader.h +419 -0
  635. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/dec/decode.c +2964 -0
  636. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/dec/huffman.c +339 -0
  637. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/dec/huffman.h +120 -0
  638. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/dec/prefix.c +67 -0
  639. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/dec/prefix.h +43 -0
  640. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/dec/prefix_inc.h +707 -0
  641. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/dec/state.c +186 -0
  642. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/dec/state.h +396 -0
  643. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/dec/static_init.c +53 -0
  644. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/dec/static_init.h +30 -0
  645. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/backward_references.c +231 -0
  646. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/backward_references.h +36 -0
  647. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/backward_references_hq.c +939 -0
  648. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/backward_references_hq.h +92 -0
  649. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/backward_references_inc.h +189 -0
  650. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/bit_cost.c +60 -0
  651. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/bit_cost.h +32 -0
  652. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/bit_cost_inc.h +127 -0
  653. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/block_encoder_inc.h +34 -0
  654. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/block_splitter.c +214 -0
  655. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/block_splitter.h +49 -0
  656. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/block_splitter_inc.h +487 -0
  657. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/brotli_bit_stream.c +1337 -0
  658. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/brotli_bit_stream.h +83 -0
  659. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/cluster.c +55 -0
  660. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/cluster.h +47 -0
  661. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/cluster_inc.h +325 -0
  662. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/command.c +28 -0
  663. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/command.h +189 -0
  664. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/compound_dictionary.c +205 -0
  665. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/compound_dictionary.h +71 -0
  666. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/compress_fragment.c +790 -0
  667. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/compress_fragment.h +84 -0
  668. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/compress_fragment_two_pass.c +647 -0
  669. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/compress_fragment_two_pass.h +70 -0
  670. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/dictionary_hash.c +145 -0
  671. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/dictionary_hash.h +45 -0
  672. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/dictionary_hash_inc.h +1829 -0
  673. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/encode.c +2021 -0
  674. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/encoder_dict.c +642 -0
  675. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/encoder_dict.h +155 -0
  676. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/entropy_encode.c +501 -0
  677. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/entropy_encode.h +121 -0
  678. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/entropy_encode_static.h +548 -0
  679. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/fast_log.c +105 -0
  680. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/fast_log.h +66 -0
  681. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/find_match_length.h +70 -0
  682. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/hash.h +735 -0
  683. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/hash_base.h +38 -0
  684. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/hash_composite_inc.h +140 -0
  685. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/hash_forgetful_chain_inc.h +305 -0
  686. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/hash_longest_match64_inc.h +279 -0
  687. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/hash_longest_match64_simd_inc.h +304 -0
  688. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/hash_longest_match_inc.h +277 -0
  689. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/hash_longest_match_quickly_inc.h +270 -0
  690. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/hash_longest_match_simd_inc.h +278 -0
  691. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/hash_rolling_inc.h +212 -0
  692. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/hash_to_binary_tree_inc.h +330 -0
  693. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/histogram.c +101 -0
  694. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/histogram.h +60 -0
  695. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/histogram_inc.h +51 -0
  696. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/literal_cost.c +178 -0
  697. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/literal_cost.h +30 -0
  698. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/matching_tag_mask.h +69 -0
  699. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/memory.c +189 -0
  700. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/memory.h +127 -0
  701. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/metablock.c +675 -0
  702. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/metablock.h +106 -0
  703. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/metablock_inc.h +185 -0
  704. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/params.h +46 -0
  705. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/prefix.h +52 -0
  706. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/quality.h +209 -0
  707. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/ringbuffer.h +165 -0
  708. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/state.h +104 -0
  709. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/static_dict.c +536 -0
  710. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/static_dict.h +39 -0
  711. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/static_dict_lut.c +224 -0
  712. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/static_dict_lut.h +49 -0
  713. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/static_dict_lut_inc.h +5830 -0
  714. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/static_init.c +59 -0
  715. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/static_init.h +30 -0
  716. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/static_init_lazy.cc +26 -0
  717. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/utf8_util.c +85 -0
  718. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/utf8_util.h +31 -0
  719. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/enc/write_bits.h +86 -0
  720. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/fuzz/.bazelrc +18 -0
  721. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/fuzz/BUILD.bazel +12 -0
  722. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/fuzz/MODULE.bazel +20 -0
  723. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/fuzz/MODULE.bazel.lock +323 -0
  724. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/fuzz/decode_fuzzer.c +63 -0
  725. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/fuzz/run_decode_fuzzer.c +44 -0
  726. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/fuzz/test_fuzzer.sh +33 -0
  727. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/include/brotli/decode.h +409 -0
  728. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/include/brotli/encode.h +505 -0
  729. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/include/brotli/port.h +302 -0
  730. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/include/brotli/shared_dictionary.h +100 -0
  731. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/include/brotli/types.h +83 -0
  732. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/tools/brotli.c +1559 -0
  733. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/c/tools/brotli.md +116 -0
  734. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/brotlidec.Tests.csproj +20 -0
  735. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/brotlidec.csproj +13 -0
  736. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/injected_code.txt +32 -0
  737. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/BitReader.cs +271 -0
  738. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/BitReaderTest.cs +33 -0
  739. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/BrotliInputStream.cs +223 -0
  740. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/BrotliRuntimeException.cs +22 -0
  741. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/Context.cs +57 -0
  742. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/Decode.cs +992 -0
  743. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/DecodeTest.cs +171 -0
  744. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/Dictionary.cs +97 -0
  745. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/DictionaryTest.cs +36 -0
  746. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/Huffman.cs +149 -0
  747. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/HuffmanTreeGroup.cs +50 -0
  748. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/IntReader.cs +36 -0
  749. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/Prefix.cs +33 -0
  750. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/RunningState.cs +37 -0
  751. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/State.cs +171 -0
  752. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/SynthTest.cs +2174 -0
  753. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/Transform.cs +154 -0
  754. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/TransformTest.cs +74 -0
  755. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/Utils.cs +59 -0
  756. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/org/brotli/dec/WordTransformType.cs +68 -0
  757. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/sharpen.cfg +18 -0
  758. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/csharp/transpile.sh +94 -0
  759. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/docs/brotli-comparison-study-2015-09-22.pdf +0 -0
  760. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/docs/brotli.1 +139 -0
  761. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/docs/brotli.svg +1 -0
  762. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/docs/constants.h.3 +47 -0
  763. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/docs/decode.h.3 +505 -0
  764. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/docs/encode.h.3 +635 -0
  765. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/docs/types.h.3 +117 -0
  766. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/fetch-spec/shared-brotli-fetch-spec.txt +116 -0
  767. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/BUILD.bazel +3 -0
  768. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/MODULE.bazel +21 -0
  769. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/MODULE.bazel.lock +237 -0
  770. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/brotli/BUILD.bazel +31 -0
  771. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/brotli/brotli_test.go +174 -0
  772. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/brotli/decode.go +2117 -0
  773. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/brotli/go.mod +3 -0
  774. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/brotli/reader.go +130 -0
  775. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/brotli/synth_test.go +2295 -0
  776. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/cbrotli/BUILD.bazel +33 -0
  777. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/cbrotli/cbrotli_test.go +420 -0
  778. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/cbrotli/cgo.go +11 -0
  779. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/cbrotli/go.mod +3 -0
  780. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/cbrotli/reader.go +210 -0
  781. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/cbrotli/synth_test.go +2295 -0
  782. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/go/cbrotli/writer.go +222 -0
  783. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/pyproject.toml +3 -0
  784. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/sbom.cdx.json +44 -0
  785. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/scripts/check_typos.sh +10 -0
  786. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/scripts/dictionary/README.md +3 -0
  787. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/scripts/dictionary/step-01-download-rfc.py +16 -0
  788. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/scripts/dictionary/step-02-rfc-to-bin.py +34 -0
  789. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/scripts/dictionary/step-03-validate-bin.py +35 -0
  790. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/scripts/dictionary/step-04-generate-java-literals.py +85 -0
  791. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/scripts/download_testdata.sh +7 -0
  792. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/scripts/libbrotlicommon.pc.in +11 -0
  793. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/scripts/libbrotlidec.pc.in +12 -0
  794. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/scripts/libbrotlienc.pc.in +12 -0
  795. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/scripts/typos.toml +17 -0
  796. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/setup.cfg +5 -0
  797. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/brotli/setup.py +354 -0
  798. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/dirent.cc +144 -0
  799. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/dirent.h +49 -0
  800. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/.bazelrc +1 -0
  801. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/.bcr/metadata.template.json +25 -0
  802. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/.bcr/presubmit.yml +10 -0
  803. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/.bcr/source.template.json +5 -0
  804. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/.clang-format +1 -0
  805. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/.git +1 -0
  806. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/.github/dependabot.yml +6 -0
  807. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/.github/workflows/build_test.yml +248 -0
  808. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/.github/workflows/docs_pages_workflow.yml +30 -0
  809. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/.github/workflows/multiarch.yml +52 -0
  810. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/.gitignore +4 -0
  811. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/BUILD +620 -0
  812. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/CMakeLists.txt +792 -0
  813. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/CMakeLists.txt.in +15 -0
  814. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/CONTRIBUTING +39 -0
  815. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/LICENSE +201 -0
  816. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/LICENSE-BSD3 +26 -0
  817. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/MODULE.bazel +6 -0
  818. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/README.md +456 -0
  819. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/WORKSPACE +48 -0
  820. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/cmake/FindAtomics.cmake +56 -0
  821. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/debian/changelog +285 -0
  822. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/debian/compat +1 -0
  823. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/debian/control +23 -0
  824. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/debian/copyright +20 -0
  825. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/debian/rules +11 -0
  826. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/debian/source/format +1 -0
  827. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/.gitignore +3 -0
  828. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/Makefile +20 -0
  829. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/_static/css/dark.css +622 -0
  830. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/_static/css/toggle.css +77 -0
  831. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/_static/js/toggle.js +38 -0
  832. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/_templates/layout.html +9 -0
  833. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/_templates/versions.html +62 -0
  834. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/buildDocs.sh +156 -0
  835. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/conf.py +159 -0
  836. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/images/logo-32x32.ico +0 -0
  837. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/images/logo.png +0 -0
  838. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/index.rst +13 -0
  839. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/locales/zh/index.rst +6 -0
  840. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/make.bat +35 -0
  841. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/docs/mm-converter.py +108 -0
  842. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/abort.cc +74 -0
  843. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/abort.h +28 -0
  844. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/abort_test.cc +67 -0
  845. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/aligned_allocator.cc +155 -0
  846. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/aligned_allocator.h +423 -0
  847. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/aligned_allocator_test.cc +469 -0
  848. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/base.h +2940 -0
  849. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/base_test.cc +823 -0
  850. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/bit_set.h +158 -0
  851. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/bit_set_test.cc +205 -0
  852. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/cache_control.h +126 -0
  853. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/algo/copy-inl.h +145 -0
  854. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/algo/copy_test.cc +207 -0
  855. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/algo/find-inl.h +113 -0
  856. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/algo/find_test.cc +227 -0
  857. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/algo/transform-inl.h +228 -0
  858. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/algo/transform_test.cc +415 -0
  859. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/bit_pack/bit_pack-inl.h +2851 -0
  860. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/bit_pack/bit_pack_test.cc +241 -0
  861. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/dot/dot-inl.h +361 -0
  862. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/dot/dot_test.cc +287 -0
  863. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/image/image.cc +145 -0
  864. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/image/image.h +467 -0
  865. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/image/image_test.cc +150 -0
  866. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/math/math-inl.h +1741 -0
  867. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/math/math_test.cc +661 -0
  868. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/matvec/matvec-inl.h +449 -0
  869. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/matvec/matvec_test.cc +290 -0
  870. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/random/random-inl.h +384 -0
  871. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/random/random_test.cc +315 -0
  872. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/BUILD +244 -0
  873. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/README.md +361 -0
  874. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/algo-inl.h +740 -0
  875. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/bench_parallel.cc +240 -0
  876. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/bench_sort.cc +476 -0
  877. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/order.h +34 -0
  878. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/print_network.cc +90 -0
  879. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/result-inl.h +197 -0
  880. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/shared-inl.h +157 -0
  881. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/sort_test.cc +1063 -0
  882. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/sorting_networks-inl.h +902 -0
  883. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/traits-inl.h +675 -0
  884. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/traits128-inl.h +536 -0
  885. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort-inl.h +2267 -0
  886. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort.cc +216 -0
  887. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort.h +347 -0
  888. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_128a.cc +71 -0
  889. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_128d.cc +71 -0
  890. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_f16a.cc +91 -0
  891. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_f16d.cc +91 -0
  892. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_f32a.cc +70 -0
  893. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_f32d.cc +70 -0
  894. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_f64a.cc +90 -0
  895. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_f64d.cc +91 -0
  896. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_i16a.cc +71 -0
  897. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_i16d.cc +71 -0
  898. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_i32a.cc +71 -0
  899. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_i32d.cc +71 -0
  900. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_i64a.cc +71 -0
  901. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_i64d.cc +71 -0
  902. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_kv128a.cc +74 -0
  903. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_kv128d.cc +74 -0
  904. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_kv64a.cc +74 -0
  905. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_kv64d.cc +74 -0
  906. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_u16a.cc +71 -0
  907. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_u16d.cc +71 -0
  908. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_u32a.cc +71 -0
  909. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_u32d.cc +71 -0
  910. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_u64a.cc +71 -0
  911. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/sort/vqsort_u64d.cc +71 -0
  912. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/thread_pool/futex.h +199 -0
  913. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/thread_pool/thread_pool.h +685 -0
  914. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/thread_pool/thread_pool_test.cc +400 -0
  915. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/thread_pool/topology.cc +427 -0
  916. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/thread_pool/topology.h +108 -0
  917. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/thread_pool/topology_test.cc +81 -0
  918. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/unroller/README.md +31 -0
  919. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/unroller/unroller-inl.h +470 -0
  920. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/contrib/unroller/unroller_test.cc +489 -0
  921. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/detect_compiler_arch.h +376 -0
  922. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/detect_targets.h +753 -0
  923. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/examples/benchmark.cc +253 -0
  924. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/examples/profiler_example.cc +95 -0
  925. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/examples/skeleton-inl.h +64 -0
  926. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/examples/skeleton.cc +129 -0
  927. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/examples/skeleton.h +38 -0
  928. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/examples/skeleton_test.cc +144 -0
  929. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/foreach_target.h +375 -0
  930. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/highway.h +607 -0
  931. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/highway_export.h +74 -0
  932. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/highway_test.cc +607 -0
  933. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/hwy.version +19 -0
  934. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/nanobenchmark.cc +300 -0
  935. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/nanobenchmark.h +171 -0
  936. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/nanobenchmark_test.cc +91 -0
  937. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/arm_neon-inl.h +10074 -0
  938. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/arm_sve-inl.h +6233 -0
  939. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/emu128-inl.h +2899 -0
  940. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/generic_ops-inl.h +7019 -0
  941. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/inside-inl.h +691 -0
  942. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/ppc_vsx-inl.h +7229 -0
  943. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/rvv-inl.h +6090 -0
  944. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/scalar-inl.h +2115 -0
  945. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/set_macros-inl.h +726 -0
  946. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/shared-inl.h +681 -0
  947. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/wasm_128-inl.h +5956 -0
  948. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/wasm_256-inl.h +2490 -0
  949. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/x86_128-inl.h +13489 -0
  950. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/x86_256-inl.h +8603 -0
  951. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/ops/x86_512-inl.h +8046 -0
  952. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/per_target.cc +69 -0
  953. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/per_target.h +48 -0
  954. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/print-inl.h +62 -0
  955. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/print.cc +132 -0
  956. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/print.h +75 -0
  957. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/profiler.h +648 -0
  958. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/robust_statistics.h +148 -0
  959. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/stats.cc +120 -0
  960. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/stats.h +193 -0
  961. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/targets.cc +777 -0
  962. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/targets.h +346 -0
  963. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/targets_test.cc +184 -0
  964. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/arithmetic_test.cc +292 -0
  965. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/bit_permute_test.cc +95 -0
  966. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/blockwise_shift_test.cc +275 -0
  967. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/blockwise_test.cc +518 -0
  968. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/cast_test.cc +345 -0
  969. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/combine_test.cc +365 -0
  970. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/compare_test.cc +699 -0
  971. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/compress_test.cc +831 -0
  972. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/convert_test.cc +1470 -0
  973. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/count_test.cc +309 -0
  974. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/crypto_test.cc +717 -0
  975. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/demote_test.cc +846 -0
  976. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/div_test.cc +278 -0
  977. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/dup128_vec_test.cc +234 -0
  978. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/expand_test.cc +292 -0
  979. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/float_test.cc +440 -0
  980. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/foreach_vec_test.cc +651 -0
  981. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/hwy_gtest.h +262 -0
  982. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/if_test.cc +293 -0
  983. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/in_range_float_to_int_conv_test.cc +641 -0
  984. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/interleaved_test.cc +174 -0
  985. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/list_targets.cc +72 -0
  986. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/logical_test.cc +298 -0
  987. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/mask_combine_test.cc +188 -0
  988. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/mask_convert_test.cc +348 -0
  989. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/mask_mem_test.cc +400 -0
  990. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/mask_slide_test.cc +156 -0
  991. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/mask_test.cc +575 -0
  992. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/masked_arithmetic_test.cc +398 -0
  993. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/masked_minmax_test.cc +153 -0
  994. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/memory_test.cc +586 -0
  995. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/minmax_test.cc +275 -0
  996. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/mul_test.cc +577 -0
  997. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/reduction_test.cc +371 -0
  998. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/resize_test.cc +185 -0
  999. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/reverse_test.cc +306 -0
  1000. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/saturated_test.cc +165 -0
  1001. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/shift_test.cc +637 -0
  1002. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/shuffle4_test.cc +229 -0
  1003. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/slide_up_down_test.cc +463 -0
  1004. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/sums_abs_diff_test.cc +350 -0
  1005. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/swizzle_block_test.cc +263 -0
  1006. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/swizzle_test.cc +419 -0
  1007. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/table_test.cc +210 -0
  1008. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/test_util-inl.h +902 -0
  1009. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/test_util.cc +119 -0
  1010. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/test_util.h +249 -0
  1011. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/test_util_test.cc +113 -0
  1012. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/truncate_test.cc +124 -0
  1013. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/tuple_test.cc +98 -0
  1014. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/tests/widen_mul_test.cc +842 -0
  1015. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/timer-inl.h +200 -0
  1016. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/timer.cc +194 -0
  1017. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy/timer.h +70 -0
  1018. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/hwy.gni +56 -0
  1019. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/libhwy-contrib.pc.in +10 -0
  1020. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/libhwy-test.pc.in +11 -0
  1021. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/libhwy.pc.in +10 -0
  1022. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/preamble.js.lds +9 -0
  1023. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/run_tests.bat +20 -0
  1024. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/highway/run_tests.sh +95 -0
  1025. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/lcms2.cmake +77 -0
  1026. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/sjpeg.cmake +27 -0
  1027. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/.bazelrc +86 -0
  1028. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/.bazelversion +1 -0
  1029. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/.git +1 -0
  1030. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/.gitignore +5 -0
  1031. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/BAZEL.md +145 -0
  1032. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/BUILD.bazel +207 -0
  1033. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/LICENSE +29 -0
  1034. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/OWNERS +1 -0
  1035. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/README.chromium +5 -0
  1036. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/README.md +3 -0
  1037. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/WORKSPACE.bazel +57 -0
  1038. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/common_config_settings/BUILD.bazel +14 -0
  1039. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/platform/BUILD.bazel +71 -0
  1040. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/README.md +150 -0
  1041. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/linux-bazel-4.2.1/LICENSE +202 -0
  1042. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/linux-bazel-4.2.1/WORKSPACE +0 -0
  1043. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/linux-bazel-4.2.1/cc/BUILD +152 -0
  1044. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/linux-bazel-4.2.1/cc/WORKSPACE +2 -0
  1045. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/linux-bazel-4.2.1/cc/armeabi_cc_toolchain_config.bzl +82 -0
  1046. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/linux-bazel-4.2.1/cc/builtin_include_directory_paths +16 -0
  1047. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/linux-bazel-4.2.1/cc/cc_toolchain_config.bzl +1272 -0
  1048. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/linux-bazel-4.2.1/cc/cc_wrapper.sh +25 -0
  1049. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/linux-bazel-4.2.1/cc/module.modulemap +5760 -0
  1050. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/linux-bazel-4.2.1/cc/tools/cpp/empty.cc +1 -0
  1051. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/linux-bazel-4.2.1/config/BUILD +49 -0
  1052. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/LICENSE +202 -0
  1053. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/WORKSPACE +0 -0
  1054. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/cc/BUILD +550 -0
  1055. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/cc/WORKSPACE +2 -0
  1056. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/cc/armeabi_cc_toolchain_config.bzl +82 -0
  1057. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/cc/builtin_include_directory_paths_clangcl +7 -0
  1058. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/cc/builtin_include_directory_paths_mingw +8 -0
  1059. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/cc/builtin_include_directory_paths_msvc +7 -0
  1060. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/cc/clang_installation_error.bat +24 -0
  1061. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/cc/get_env.bat +3 -0
  1062. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/cc/msys_gcc_installation_error.bat +23 -0
  1063. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/cc/vc_installation_error_arm.bat +29 -0
  1064. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/cc/vc_installation_error_arm64.bat +29 -0
  1065. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/cc/windows_cc_toolchain_config.bzl +1339 -0
  1066. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bazel/rbe/windows-bazel-4.2.1/config/BUILD +46 -0
  1067. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/bench.c +107 -0
  1068. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/build.ninja +47 -0
  1069. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/codereview.settings +5 -0
  1070. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/fuzz/BUILD +31 -0
  1071. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/fuzz/fuzz_iccprofile_atf.c +29 -0
  1072. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/fuzz/fuzz_iccprofile_info.c +88 -0
  1073. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/fuzz/fuzz_iccprofile_transform.c +102 -0
  1074. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/fuzz/fuzz_main.c +51 -0
  1075. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/iccdump.c +596 -0
  1076. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/infra/bots/bazel.py +78 -0
  1077. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/infra/bots/bot.py +93 -0
  1078. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/infra/bots/tasks.json +414 -0
  1079. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/infra/project-config/README.md +1 -0
  1080. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/infra/project-config/project.cfg +5 -0
  1081. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/infra/project-config/refs.cfg +7 -0
  1082. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/infra/skcq.json +7 -0
  1083. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/msvs.ninja +7 -0
  1084. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/android +22 -0
  1085. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/android-arm +22 -0
  1086. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/android-arm.lsan +4 -0
  1087. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/android-arm.neon-vfpv4 +3 -0
  1088. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/android-arm.neon-vfpv4-O3 +4 -0
  1089. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/android-arm.portable +3 -0
  1090. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/android-arm.tiny +3 -0
  1091. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/android-arm.vfpv2 +3 -0
  1092. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/android.lsan +4 -0
  1093. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/android.nofp16 +3 -0
  1094. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/android.portable +3 -0
  1095. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/android.tiny +3 -0
  1096. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang +7 -0
  1097. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.O0 +3 -0
  1098. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.avx512 +6 -0
  1099. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.hsw +6 -0
  1100. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.lsan +6 -0
  1101. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.m32 +9 -0
  1102. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.m32-O0 +9 -0
  1103. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.msan +6 -0
  1104. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.native +3 -0
  1105. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.portable +6 -0
  1106. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.sse2 +8 -0
  1107. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.sse41 +8 -0
  1108. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.tiny +3 -0
  1109. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.xsan +4 -0
  1110. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/clang.xsan-portable +4 -0
  1111. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/common +67 -0
  1112. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/emscripten +21 -0
  1113. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/emscripten.simd +5 -0
  1114. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/gcc +9 -0
  1115. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/gcc.O0 +3 -0
  1116. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/gcc.m32 +7 -0
  1117. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/gcc.m32-O0 +8 -0
  1118. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/gcc.musl +6 -0
  1119. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/gcc.native +4 -0
  1120. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/gcc.portable +6 -0
  1121. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/gcc.tiny +3 -0
  1122. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/gcc.xsan +4 -0
  1123. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/ios +13 -0
  1124. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/ios.portable +3 -0
  1125. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/ios.tiny +3 -0
  1126. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/ios.xsan +7 -0
  1127. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/local +3 -0
  1128. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/msvs +41 -0
  1129. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/msvs.analyze +4 -0
  1130. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/msvs.clang +5 -0
  1131. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/msvs.clang-fast +6 -0
  1132. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/msvs.fast +3 -0
  1133. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/ninja/targets +57 -0
  1134. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/Lower_Left.icc +0 -0
  1135. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/Lower_Left.icc.txt +74 -0
  1136. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/Lower_Right.icc +0 -0
  1137. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/Lower_Right.icc.txt +74 -0
  1138. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/README +15 -0
  1139. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/Upper_Left.icc +0 -0
  1140. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/Upper_Left.icc.txt +104 -0
  1141. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/Upper_Right.icc +0 -0
  1142. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/Upper_Right.icc.txt +73 -0
  1143. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/sRGB2014.icc +0 -0
  1144. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/sRGB2014.icc.txt +88 -0
  1145. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/sRGB_D65_MAT.icc +0 -0
  1146. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/sRGB_D65_MAT.icc.txt +1 -0
  1147. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/sRGB_D65_colorimetric.icc +0 -0
  1148. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/sRGB_D65_colorimetric.icc.txt +1 -0
  1149. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/sRGB_ICC_v4_Appearance.icc +0 -0
  1150. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/sRGB_ICC_v4_Appearance.icc.txt +104 -0
  1151. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/sRGB_ISO22028.icc +0 -0
  1152. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/sRGB_ISO22028.icc.txt +1 -0
  1153. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/sRGB_v4_ICC_preference.icc +0 -0
  1154. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/color.org/sRGB_v4_ICC_preference.icc.txt +101 -0
  1155. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/a2b_too_many_input_channels.icc +0 -0
  1156. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/a2b_too_many_input_channels.icc.txt +1 -0
  1157. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/a2b_too_many_input_channels2.icc +0 -0
  1158. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/a2b_too_many_input_channels2.icc.txt +1 -0
  1159. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/b2a_no_clut.icc +0 -0
  1160. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/b2a_no_clut.icc.txt +93 -0
  1161. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/b2a_too_few_output_channels.icc +0 -0
  1162. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/b2a_too_few_output_channels.icc.txt +1 -0
  1163. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/curv_size_overflow.icc +0 -0
  1164. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/curv_size_overflow.icc.txt +1 -0
  1165. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/direct_fit_negative_a.icc +0 -0
  1166. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/direct_fit_negative_a.icc.txt +67 -0
  1167. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/direct_fit_not_invertible.icc +0 -0
  1168. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/direct_fit_not_invertible.icc.txt +48 -0
  1169. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/fit_pq.icc +0 -0
  1170. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/fit_pq.icc.txt +67 -0
  1171. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/inf_a.icc +0 -0
  1172. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/inf_a.icc.txt +71 -0
  1173. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/infinite_roundtrip.icc +0 -0
  1174. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/infinite_roundtrip.icc.txt +58 -0
  1175. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/inverse_tf_adb_negative.icc +0 -0
  1176. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/inverse_tf_adb_negative.icc.txt +62 -0
  1177. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/inverse_tf_huge_g.icc +0 -0
  1178. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/inverse_tf_huge_g.icc.txt +69 -0
  1179. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/inverse_tf_not_invertible.icc +0 -0
  1180. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/inverse_tf_not_invertible.icc.txt +76 -0
  1181. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/large_g.icc +0 -0
  1182. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/large_g.icc.txt +65 -0
  1183. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/last_tag_too_small.icc +0 -0
  1184. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/last_tag_too_small.icc.txt +1 -0
  1185. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/mangled_trc_tags.icc +0 -0
  1186. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/mangled_trc_tags.icc.txt +1 -0
  1187. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/named_tag_too_small.icc +0 -0
  1188. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/named_tag_too_small.icc.txt +1 -0
  1189. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/nan_s.icc +0 -0
  1190. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/nan_s.icc.txt +67 -0
  1191. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/negative_a_plus_b.icc +0 -0
  1192. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/negative_a_plus_b.icc.txt +48 -0
  1193. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/negative_a_when_inverted.icc +0 -0
  1194. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/negative_a_when_inverted.icc.txt +67 -0
  1195. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/negative_g_para.icc +0 -0
  1196. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/negative_g_para.icc.txt +1 -0
  1197. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/one_d_clut.icc +0 -0
  1198. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/one_d_clut.icc.txt +71 -0
  1199. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/polytf_big_float_to_int_cast.icc +0 -0
  1200. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/polytf_big_float_to_int_cast.icc.txt +1 -0
  1201. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/polytf_nan_after_update.icc +0 -0
  1202. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/polytf_nan_after_update.icc.txt +61 -0
  1203. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/truncated_curv_tag.icc +0 -0
  1204. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/truncated_curv_tag.icc.txt +1 -0
  1205. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/zero_a.icc +0 -0
  1206. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/zero_a.icc.txt +1 -0
  1207. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/zero_g.icc +0 -0
  1208. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/fuzz/zero_g.icc.txt +48 -0
  1209. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/AdobeColorSpin.icc +0 -0
  1210. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/AdobeColorSpin.icc.txt +73 -0
  1211. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/AdobeRGB.icc +0 -0
  1212. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/AdobeRGB.icc.txt +74 -0
  1213. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Apple_Color_LCD.icc +0 -0
  1214. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Apple_Color_LCD.icc.txt +88 -0
  1215. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Apple_Wide_Color.icc +0 -0
  1216. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Apple_Wide_Color.icc.txt +70 -0
  1217. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/BenQ_GL2450.icc +0 -0
  1218. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/BenQ_GL2450.icc.txt +82 -0
  1219. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/BenQ_RL2455.icc +0 -0
  1220. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/BenQ_RL2455.icc.txt +120 -0
  1221. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Calibrated_A2B_XYZ_Mismatch.icc +0 -0
  1222. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Calibrated_A2B_XYZ_Mismatch.icc.txt +119 -0
  1223. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Coated_FOGRA27_CMYK.icc +0 -0
  1224. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Coated_FOGRA27_CMYK.icc.txt +91 -0
  1225. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Coated_FOGRA39_CMYK.icc +0 -0
  1226. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Coated_FOGRA39_CMYK.icc.txt +95 -0
  1227. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/ColorGATE_Sihl_PhotoPaper.icc +0 -0
  1228. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/ColorGATE_Sihl_PhotoPaper.icc.txt +1 -0
  1229. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/ColorLogic_ISO_Coated_CMYK.icc +0 -0
  1230. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/ColorLogic_ISO_Coated_CMYK.icc.txt +91 -0
  1231. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Color_Spin_Gamma_18.icc +0 -0
  1232. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Color_Spin_Gamma_18.icc.txt +73 -0
  1233. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/DisplayCal_ASUS_NonMonotonic.icc +0 -0
  1234. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/DisplayCal_ASUS_NonMonotonic.icc.txt +117 -0
  1235. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Dot_Gain_20_Grayscale.icc +0 -0
  1236. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Dot_Gain_20_Grayscale.icc.txt +72 -0
  1237. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Generic_RGB_Gamma_18.icc +0 -0
  1238. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Generic_RGB_Gamma_18.icc.txt +78 -0
  1239. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Gray_Gamma_22.icc +0 -0
  1240. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Gray_Gamma_22.icc.txt +69 -0
  1241. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/HD_709.icc +0 -0
  1242. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/HD_709.icc.txt +88 -0
  1243. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Japan_Color_2001_Coated.icc +0 -0
  1244. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Japan_Color_2001_Coated.icc.txt +91 -0
  1245. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Kodak_sRGB.icc +0 -0
  1246. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Kodak_sRGB.icc.txt +113 -0
  1247. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Lexmark_X110.icc +0 -0
  1248. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Lexmark_X110.icc.txt +58 -0
  1249. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/MR2416GSDF.icc +0 -0
  1250. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/MR2416GSDF.icc.txt +82 -0
  1251. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/MartiMaria_browsertest_A2B.icc +0 -0
  1252. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/MartiMaria_browsertest_A2B.icc.txt +58 -0
  1253. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/MartiMaria_browsertest_HARD.icc +0 -0
  1254. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/MartiMaria_browsertest_HARD.icc.txt +72 -0
  1255. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/P3_PQ_cicp.icc +0 -0
  1256. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/P3_PQ_cicp.icc.txt +82 -0
  1257. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Phase_One_P25.icc +0 -0
  1258. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Phase_One_P25.icc.txt +93 -0
  1259. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/PrintOpen_ISO_Coated_CMYK.icc +0 -0
  1260. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/PrintOpen_ISO_Coated_CMYK.icc.txt +88 -0
  1261. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Rec2020_HLG_cicp.icc +0 -0
  1262. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Rec2020_HLG_cicp.icc.txt +82 -0
  1263. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Rec2020_PQ_cicp.icc +0 -0
  1264. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/Rec2020_PQ_cicp.icc.txt +82 -0
  1265. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/SM245B.icc +0 -0
  1266. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/SM245B.icc.txt +81 -0
  1267. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/SWOP_Coated_20_GCR_CMYK.icc +0 -0
  1268. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/SWOP_Coated_20_GCR_CMYK.icc.txt +93 -0
  1269. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/ThinkpadX1YogaV2.icc +0 -0
  1270. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/ThinkpadX1YogaV2.icc.txt +81 -0
  1271. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/US_Web_Coated_SWOP_CMYK.icc +0 -0
  1272. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/US_Web_Coated_SWOP_CMYK.icc.txt +91 -0
  1273. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/XPS13_9360.icc +0 -0
  1274. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/XPS13_9360.icc.txt +81 -0
  1275. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/XRite_GRACol7_340_CMYK.icc +0 -0
  1276. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/XRite_GRACol7_340_CMYK.icc.txt +89 -0
  1277. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/bad_pcs.icc +0 -0
  1278. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/bad_pcs.icc.txt +1 -0
  1279. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/calibrated_nonzero_black.icc +0 -0
  1280. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/calibrated_nonzero_black.icc.txt +82 -0
  1281. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/crbug_1017960_19.icc +0 -0
  1282. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/crbug_1017960_19.icc.txt +84 -0
  1283. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/crbug_976551.icc +0 -0
  1284. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/crbug_976551.icc.txt +84 -0
  1285. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_Calibrated_Heterogeneous.icc +0 -0
  1286. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_Calibrated_Heterogeneous.icc.txt +76 -0
  1287. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_Calibrated_Homogeneous.icc +0 -0
  1288. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_Calibrated_Homogeneous.icc.txt +77 -0
  1289. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_HP.icc +0 -0
  1290. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_HP.icc.txt +86 -0
  1291. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_HP_2.icc +0 -0
  1292. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_HP_2.icc.txt +86 -0
  1293. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_ICC_v4_beta.icc +0 -0
  1294. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_ICC_v4_beta.icc.txt +105 -0
  1295. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_black_scaled.icc +0 -0
  1296. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_black_scaled.icc.txt +88 -0
  1297. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_lcms.icc +0 -0
  1298. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/misc/sRGB_lcms.icc.txt +80 -0
  1299. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/mobile/Display_P3_LUT.icc +0 -0
  1300. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/mobile/Display_P3_LUT.icc.txt +82 -0
  1301. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/mobile/Display_P3_parametric.icc +0 -0
  1302. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/mobile/Display_P3_parametric.icc.txt +79 -0
  1303. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/mobile/README +3 -0
  1304. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/mobile/iPhone7p.icc +0 -0
  1305. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/mobile/iPhone7p.icc.txt +78 -0
  1306. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/mobile/sRGB_LUT.icc +0 -0
  1307. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/mobile/sRGB_LUT.icc.txt +83 -0
  1308. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/mobile/sRGB_parametric.icc +0 -0
  1309. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/mobile/sRGB_parametric.icc.txt +80 -0
  1310. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/sRGB_Facebook.icc +0 -0
  1311. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/profiles/sRGB_Facebook.icc.txt +79 -0
  1312. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/skcms.cc +3141 -0
  1313. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/skcms.gni +6 -0
  1314. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/skcms.h +10 -0
  1315. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/src/Transform_inl.h +1604 -0
  1316. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/src/skcms_Transform.h +167 -0
  1317. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/src/skcms_TransformBaseline.cc +50 -0
  1318. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/src/skcms_TransformHsw.cc +61 -0
  1319. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/src/skcms_TransformSkx.cc +58 -0
  1320. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/src/skcms_internals.h +157 -0
  1321. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/src/skcms_public.h +469 -0
  1322. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/test_only.c +460 -0
  1323. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/test_only.h +18 -0
  1324. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/tests.c +2255 -0
  1325. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/BUILD.bazel +327 -0
  1326. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/README.md +37 -0
  1327. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/aarch64-linux-android-ar.sh +2 -0
  1328. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/aarch64-linux-android-dwp.sh +2 -0
  1329. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/aarch64-linux-android-ld.sh +2 -0
  1330. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/aarch64-linux-android-nm.sh +2 -0
  1331. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/aarch64-linux-android-objcopy.sh +2 -0
  1332. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/aarch64-linux-android-objdump.sh +2 -0
  1333. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/aarch64-linux-android-strip.sh +2 -0
  1334. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/arm-linux-androideabi-ar.sh +2 -0
  1335. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/arm-linux-androideabi-dwp.sh +2 -0
  1336. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/arm-linux-androideabi-ld.sh +2 -0
  1337. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/arm-linux-androideabi-nm.sh +2 -0
  1338. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/arm-linux-androideabi-objcopy.sh +2 -0
  1339. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/arm-linux-androideabi-objdump.sh +2 -0
  1340. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/arm-linux-androideabi-strip.sh +2 -0
  1341. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/clang.sh +2 -0
  1342. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/android_trampolines/gen_trampolines/gen_trampolines.go +75 -0
  1343. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/clang_layering_check.bzl +138 -0
  1344. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/clang_linux_amd64_toolchain_config.bzl +338 -0
  1345. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/download_clang_linux_amd64.bzl +151 -0
  1346. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/download_mac_toolchain.bzl +241 -0
  1347. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/download_ndk_linux_amd64.bzl +20 -0
  1348. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/download_toolchains.bzl +36 -0
  1349. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/linux_amd64_trampolines/ar.sh +7 -0
  1350. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/linux_amd64_trampolines/clang.sh +7 -0
  1351. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/mac_toolchain_config.bzl +536 -0
  1352. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/mac_trampolines/ar_trampoline_mac.sh +9 -0
  1353. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/mac_trampolines/clang_trampoline_mac.sh +12 -0
  1354. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/ndk.BUILD +65 -0
  1355. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/ndk_linux_arm64_toolchain_config.bzl +404 -0
  1356. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/toolchain/utils.bzl +40 -0
  1357. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms/whitespace.txt +1 -0
  1358. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/skcms.cmake +78 -0
  1359. leanjpeg_xl-0.1.0/third_party/libjxl/third_party/testing.cmake +64 -0
  1360. leanjpeg_xl-0.1.0/third_party/libjxl/tools/BUILD +1 -0
  1361. leanjpeg_xl-0.1.0/third_party/libjxl/tools/CMakeLists.txt +514 -0
  1362. leanjpeg_xl-0.1.0/third_party/libjxl/tools/args.h +86 -0
  1363. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_args.cc +290 -0
  1364. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_args.h +180 -0
  1365. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec.cc +200 -0
  1366. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec.h +96 -0
  1367. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec_avif.cc +460 -0
  1368. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec_avif.h +22 -0
  1369. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec_custom.cc +234 -0
  1370. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec_custom.h +49 -0
  1371. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec_jpeg.cc +271 -0
  1372. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec_jpeg.h +22 -0
  1373. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec_jxl.cc +408 -0
  1374. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec_jxl.h +26 -0
  1375. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec_png.cc +76 -0
  1376. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec_png.h +22 -0
  1377. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec_webp.cc +316 -0
  1378. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_codec_webp.h +23 -0
  1379. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_file_io.cc +229 -0
  1380. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_file_io.h +56 -0
  1381. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_stats.cc +424 -0
  1382. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_stats.h +83 -0
  1383. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_utils.cc +121 -0
  1384. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_utils.h +42 -0
  1385. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/benchmark_xl.cc +1187 -0
  1386. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/hm/README.md +12 -0
  1387. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/hm/decode.sh +100 -0
  1388. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/hm/encode.sh +99 -0
  1389. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/compute-hdrvdp.m +17 -0
  1390. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/compute-pumetrics.m +26 -0
  1391. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/compute_octave_metric.sh +41 -0
  1392. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/dists-rgb.sh +10 -0
  1393. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/fsim-rgb.sh +10 -0
  1394. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/fsim-y.sh +10 -0
  1395. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/gmsd-rgb.sh +10 -0
  1396. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/hdr_plots.sh +13 -0
  1397. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/hdrvdp-fixes.patch +110 -0
  1398. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/hdrvdp.sh +12 -0
  1399. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/iqa.py +90 -0
  1400. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/iqa_wrapper.sh +10 -0
  1401. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/lpips-rgb.sh +10 -0
  1402. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/mrse.sh +39 -0
  1403. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/msssim-rgb.sh +10 -0
  1404. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/msssim-y.sh +10 -0
  1405. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/nlpd-y.sh +10 -0
  1406. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/plots.py +259 -0
  1407. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/prepare_metrics.sh +64 -0
  1408. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/pupsnr.sh +12 -0
  1409. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/pussim.sh +12 -0
  1410. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/run_all_hdr_metrics.sh +32 -0
  1411. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/run_all_sdr_metrics.sh +43 -0
  1412. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/sdr_plots.sh +13 -0
  1413. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/ssim-rgb.sh +10 -0
  1414. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/ssim-y.sh +10 -0
  1415. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/ssimulacra.sh +10 -0
  1416. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/vif-rgb.sh +10 -0
  1417. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/vmaf.sh +55 -0
  1418. leanjpeg_xl-0.1.0/third_party/libjxl/tools/benchmark/metrics/vsi-rgb.sh +10 -0
  1419. leanjpeg_xl-0.1.0/third_party/libjxl/tools/butteraugli_main.cc +193 -0
  1420. leanjpeg_xl-0.1.0/third_party/libjxl/tools/cjxl_fuzzer.cc +259 -0
  1421. leanjpeg_xl-0.1.0/third_party/libjxl/tools/cjxl_main.cc +1233 -0
  1422. leanjpeg_xl-0.1.0/third_party/libjxl/tools/cmdline.cc +120 -0
  1423. leanjpeg_xl-0.1.0/third_party/libjxl/tools/cmdline.h +474 -0
  1424. leanjpeg_xl-0.1.0/third_party/libjxl/tools/codec_config.cc +88 -0
  1425. leanjpeg_xl-0.1.0/third_party/libjxl/tools/codec_config.h +24 -0
  1426. leanjpeg_xl-0.1.0/third_party/libjxl/tools/color_encoding_fuzzer.cc +36 -0
  1427. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/CMakeLists.txt +76 -0
  1428. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/codec_comparison_window.cc +318 -0
  1429. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/codec_comparison_window.h +79 -0
  1430. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/codec_comparison_window.ui +170 -0
  1431. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/compare_codecs.cc +75 -0
  1432. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/compare_images.cc +159 -0
  1433. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/image_loading.cc +141 -0
  1434. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/image_loading.h +31 -0
  1435. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/settings.cc +85 -0
  1436. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/settings.h +44 -0
  1437. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/settings.ui +199 -0
  1438. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/split_image_renderer.cc +252 -0
  1439. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/split_image_renderer.h +95 -0
  1440. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/split_image_view.cc +85 -0
  1441. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/split_image_view.h +42 -0
  1442. leanjpeg_xl-0.1.0/third_party/libjxl/tools/comparison_viewer/split_image_view.ui +141 -0
  1443. leanjpeg_xl-0.1.0/third_party/libjxl/tools/conformance/CMakeLists.txt +21 -0
  1444. leanjpeg_xl-0.1.0/third_party/libjxl/tools/conformance/conformance.py +288 -0
  1445. leanjpeg_xl-0.1.0/third_party/libjxl/tools/conformance/generator.py +128 -0
  1446. leanjpeg_xl-0.1.0/third_party/libjxl/tools/conformance/lcms2.py +121 -0
  1447. leanjpeg_xl-0.1.0/third_party/libjxl/tools/conformance/tooling_test.sh +61 -0
  1448. leanjpeg_xl-0.1.0/third_party/libjxl/tools/decode_and_encode.cc +73 -0
  1449. leanjpeg_xl-0.1.0/third_party/libjxl/tools/decode_basic_info_fuzzer.cc +83 -0
  1450. leanjpeg_xl-0.1.0/third_party/libjxl/tools/demo_vardct_select.sh +94 -0
  1451. leanjpeg_xl-0.1.0/third_party/libjxl/tools/djxl_fuzzer.cc +613 -0
  1452. leanjpeg_xl-0.1.0/third_party/libjxl/tools/djxl_fuzzer_corpus.cc +492 -0
  1453. leanjpeg_xl-0.1.0/third_party/libjxl/tools/djxl_fuzzer_test.cc +43 -0
  1454. leanjpeg_xl-0.1.0/third_party/libjxl/tools/djxl_main.cc +678 -0
  1455. leanjpeg_xl-0.1.0/third_party/libjxl/tools/example_tree.txt +50 -0
  1456. leanjpeg_xl-0.1.0/third_party/libjxl/tools/example_tree2.txt +87 -0
  1457. leanjpeg_xl-0.1.0/third_party/libjxl/tools/fast_lossless/.gitignore +1 -0
  1458. leanjpeg_xl-0.1.0/third_party/libjxl/tools/fast_lossless/README.md +10 -0
  1459. leanjpeg_xl-0.1.0/third_party/libjxl/tools/fast_lossless/build-android.sh +28 -0
  1460. leanjpeg_xl-0.1.0/third_party/libjxl/tools/fast_lossless/build.sh +30 -0
  1461. leanjpeg_xl-0.1.0/third_party/libjxl/tools/fast_lossless/cross_compile_aarch64.sh +28 -0
  1462. leanjpeg_xl-0.1.0/third_party/libjxl/tools/fast_lossless/fast_lossless_main.cc +117 -0
  1463. leanjpeg_xl-0.1.0/third_party/libjxl/tools/fast_lossless/pam-input.h +315 -0
  1464. leanjpeg_xl-0.1.0/third_party/libjxl/tools/fields_fuzzer.cc +107 -0
  1465. leanjpeg_xl-0.1.0/third_party/libjxl/tools/file_io.h +158 -0
  1466. leanjpeg_xl-0.1.0/third_party/libjxl/tools/flicker_test/CMakeLists.txt +38 -0
  1467. leanjpeg_xl-0.1.0/third_party/libjxl/tools/flicker_test/main.cc +23 -0
  1468. leanjpeg_xl-0.1.0/third_party/libjxl/tools/flicker_test/parameters.cc +89 -0
  1469. leanjpeg_xl-0.1.0/third_party/libjxl/tools/flicker_test/parameters.h +34 -0
  1470. leanjpeg_xl-0.1.0/third_party/libjxl/tools/flicker_test/setup.cc +153 -0
  1471. leanjpeg_xl-0.1.0/third_party/libjxl/tools/flicker_test/setup.h +46 -0
  1472. leanjpeg_xl-0.1.0/third_party/libjxl/tools/flicker_test/setup.ui +425 -0
  1473. leanjpeg_xl-0.1.0/third_party/libjxl/tools/flicker_test/split_view.cc +176 -0
  1474. leanjpeg_xl-0.1.0/third_party/libjxl/tools/flicker_test/split_view.h +86 -0
  1475. leanjpeg_xl-0.1.0/third_party/libjxl/tools/flicker_test/test_window.cc +187 -0
  1476. leanjpeg_xl-0.1.0/third_party/libjxl/tools/flicker_test/test_window.h +52 -0
  1477. leanjpeg_xl-0.1.0/third_party/libjxl/tools/flicker_test/test_window.ui +115 -0
  1478. leanjpeg_xl-0.1.0/third_party/libjxl/tools/fuzzer_stub.cc +48 -0
  1479. leanjpeg_xl-0.1.0/third_party/libjxl/tools/gauss_blur.cc +558 -0
  1480. leanjpeg_xl-0.1.0/third_party/libjxl/tools/gauss_blur.h +63 -0
  1481. leanjpeg_xl-0.1.0/third_party/libjxl/tools/gauss_blur_gbench.cc +95 -0
  1482. leanjpeg_xl-0.1.0/third_party/libjxl/tools/gauss_blur_test.cc +606 -0
  1483. leanjpeg_xl-0.1.0/third_party/libjxl/tools/git_version.cmake +34 -0
  1484. leanjpeg_xl-0.1.0/third_party/libjxl/tools/hdr/README.md +153 -0
  1485. leanjpeg_xl-0.1.0/third_party/libjxl/tools/hdr/display_to_hlg.cc +101 -0
  1486. leanjpeg_xl-0.1.0/third_party/libjxl/tools/hdr/exr_to_pq.cc +189 -0
  1487. leanjpeg_xl-0.1.0/third_party/libjxl/tools/hdr/generate_lut_template.cc +86 -0
  1488. leanjpeg_xl-0.1.0/third_party/libjxl/tools/hdr/image_utils.h +191 -0
  1489. leanjpeg_xl-0.1.0/third_party/libjxl/tools/hdr/local_tone_map.cc +405 -0
  1490. leanjpeg_xl-0.1.0/third_party/libjxl/tools/hdr/pq_to_hlg.cc +100 -0
  1491. leanjpeg_xl-0.1.0/third_party/libjxl/tools/hdr/render_hlg.cc +110 -0
  1492. leanjpeg_xl-0.1.0/third_party/libjxl/tools/hdr/texture_to_cube.cc +85 -0
  1493. leanjpeg_xl-0.1.0/third_party/libjxl/tools/hdr/tone_map.cc +112 -0
  1494. leanjpeg_xl-0.1.0/third_party/libjxl/tools/icc_codec_fuzzer.cc +115 -0
  1495. leanjpeg_xl-0.1.0/third_party/libjxl/tools/icc_detect/icc_detect.h +21 -0
  1496. leanjpeg_xl-0.1.0/third_party/libjxl/tools/icc_detect/icc_detect_empty.cc +16 -0
  1497. leanjpeg_xl-0.1.0/third_party/libjxl/tools/icc_detect/icc_detect_win32.cc +66 -0
  1498. leanjpeg_xl-0.1.0/third_party/libjxl/tools/icc_detect/icc_detect_x11.cc +90 -0
  1499. leanjpeg_xl-0.1.0/third_party/libjxl/tools/icc_simplify.cc +89 -0
  1500. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jni/org/jpeg/jpegxl/wrapper/Decoder.java +50 -0
  1501. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jni/org/jpeg/jpegxl/wrapper/DecoderJni.java +73 -0
  1502. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jni/org/jpeg/jpegxl/wrapper/DecoderTest.java +112 -0
  1503. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jni/org/jpeg/jpegxl/wrapper/ImageData.java +25 -0
  1504. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jni/org/jpeg/jpegxl/wrapper/JniHelper.java +38 -0
  1505. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jni/org/jpeg/jpegxl/wrapper/PixelFormat.java +13 -0
  1506. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jni/org/jpeg/jpegxl/wrapper/Status.java +17 -0
  1507. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jni/org/jpeg/jpegxl/wrapper/StreamInfo.java +18 -0
  1508. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jni/org/jpeg/jpegxl/wrapper/decoder_jni.cc +274 -0
  1509. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jni/org/jpeg/jpegxl/wrapper/decoder_jni.h +43 -0
  1510. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jni/org/jpeg/jpegxl/wrapper/decoder_jni_onload.cc +54 -0
  1511. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jxl_from_tree.cc +632 -0
  1512. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jxlinfo.cc +550 -0
  1513. leanjpeg_xl-0.1.0/third_party/libjxl/tools/jxltran.cc +314 -0
  1514. leanjpeg_xl-0.1.0/third_party/libjxl/tools/libjxl_test.c +18 -0
  1515. leanjpeg_xl-0.1.0/third_party/libjxl/tools/no_memory_manager.cc +24 -0
  1516. leanjpeg_xl-0.1.0/third_party/libjxl/tools/no_memory_manager.h +19 -0
  1517. leanjpeg_xl-0.1.0/third_party/libjxl/tools/optimizer/apply_simplex.py +111 -0
  1518. leanjpeg_xl-0.1.0/third_party/libjxl/tools/optimizer/simplex_fork.py +265 -0
  1519. leanjpeg_xl-0.1.0/third_party/libjxl/tools/rans_fuzzer.cc +93 -0
  1520. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/bisector +287 -0
  1521. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/build_cleaner.py +254 -0
  1522. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/build_stats.py +441 -0
  1523. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/check_author.py +104 -0
  1524. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/cjxl_bisect_bpp +47 -0
  1525. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/cjxl_bisect_size +43 -0
  1526. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/demo_progressive_saliency_encoding.py +182 -0
  1527. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/fix_headers.sh +33 -0
  1528. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/install_deps.sh +91 -0
  1529. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/jxl-eval.sh +124 -0
  1530. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/ossfuzz-build.sh +74 -0
  1531. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/progressive_saliency.conf +32 -0
  1532. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/progressive_sizes.sh +29 -0
  1533. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/reference_zip.sh +74 -0
  1534. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/roundtrip_test.sh +141 -0
  1535. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/test_cost-armhf.zip +0 -0
  1536. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/test_cost-i386.zip +0 -0
  1537. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/test_cost-x64.zip +0 -0
  1538. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/transform_sources_list.py +76 -0
  1539. leanjpeg_xl-0.1.0/third_party/libjxl/tools/scripts/typos.toml +33 -0
  1540. leanjpeg_xl-0.1.0/third_party/libjxl/tools/set_from_bytes_fuzzer.cc +77 -0
  1541. leanjpeg_xl-0.1.0/third_party/libjxl/tools/speed_stats.cc +122 -0
  1542. leanjpeg_xl-0.1.0/third_party/libjxl/tools/speed_stats.h +59 -0
  1543. leanjpeg_xl-0.1.0/third_party/libjxl/tools/ssimulacra.cc +362 -0
  1544. leanjpeg_xl-0.1.0/third_party/libjxl/tools/ssimulacra.h +38 -0
  1545. leanjpeg_xl-0.1.0/third_party/libjxl/tools/ssimulacra.txt +382 -0
  1546. leanjpeg_xl-0.1.0/third_party/libjxl/tools/ssimulacra2.cc +537 -0
  1547. leanjpeg_xl-0.1.0/third_party/libjxl/tools/ssimulacra2.h +34 -0
  1548. leanjpeg_xl-0.1.0/third_party/libjxl/tools/ssimulacra2_main.cc +121 -0
  1549. leanjpeg_xl-0.1.0/third_party/libjxl/tools/ssimulacra_main.cc +101 -0
  1550. leanjpeg_xl-0.1.0/third_party/libjxl/tools/streaming_fuzzer.cc +428 -0
  1551. leanjpeg_xl-0.1.0/third_party/libjxl/tools/thread_pool_internal.h +50 -0
  1552. leanjpeg_xl-0.1.0/third_party/libjxl/tools/tool_version.cc +18 -0
  1553. leanjpeg_xl-0.1.0/third_party/libjxl/tools/tool_version.h +20 -0
  1554. leanjpeg_xl-0.1.0/third_party/libjxl/tools/tracking_memory_manager.cc +125 -0
  1555. leanjpeg_xl-0.1.0/third_party/libjxl/tools/tracking_memory_manager.h +58 -0
  1556. leanjpeg_xl-0.1.0/third_party/libjxl/tools/transforms_fuzzer.cc +205 -0
  1557. leanjpeg_xl-0.1.0/third_party/libjxl/tools/upscaling_coefficients/generate_upscaling_coefficients.py +242 -0
  1558. leanjpeg_xl-0.1.0/third_party/libjxl/tools/upscaling_coefficients/upscaler_demo.py +814 -0
  1559. leanjpeg_xl-0.1.0/third_party/libjxl/tools/utf8.manifest +8 -0
  1560. leanjpeg_xl-0.1.0/third_party/libjxl/tools/utf8.rc +3 -0
  1561. leanjpeg_xl-0.1.0/third_party/libjxl/tools/viewer/CMakeLists.txt +40 -0
  1562. leanjpeg_xl-0.1.0/third_party/libjxl/tools/viewer/load_jxl.cc +167 -0
  1563. leanjpeg_xl-0.1.0/third_party/libjxl/tools/viewer/load_jxl.h +22 -0
  1564. leanjpeg_xl-0.1.0/third_party/libjxl/tools/viewer/main.cc +23 -0
  1565. leanjpeg_xl-0.1.0/third_party/libjxl/tools/viewer/viewer_window.cc +132 -0
  1566. leanjpeg_xl-0.1.0/third_party/libjxl/tools/viewer/viewer_window.h +43 -0
  1567. leanjpeg_xl-0.1.0/third_party/libjxl/tools/viewer/viewer_window.ui +125 -0
  1568. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/CMakeLists.txt +70 -0
  1569. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/README.md +126 -0
  1570. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/build_site.py +145 -0
  1571. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/client_worker.js +99 -0
  1572. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/jxl_decoder.cc +233 -0
  1573. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/jxl_decoder.h +48 -0
  1574. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/jxl_decoder_test.js +140 -0
  1575. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/jxl_decompressor.cc +125 -0
  1576. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/jxl_decompressor.h +34 -0
  1577. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/manual_decode_demo.html +340 -0
  1578. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/netlify/edge-functions/precompressed.ts +87 -0
  1579. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/netlify.toml +19 -0
  1580. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/no_png.cc +224 -0
  1581. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/no_png.h +24 -0
  1582. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/one_line_demo.html +20 -0
  1583. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/one_line_demo_with_console.html +34 -0
  1584. leanjpeg_xl-0.1.0/third_party/libjxl/tools/wasm_demo/service_worker.js +317 -0
  1585. leanjpeg_xl-0.1.0/third_party/libjxl/tools/xyb_range.cc +100 -0
@@ -0,0 +1,341 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 leanjpeg contributors
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
+ This package statically links libjxl (BSD 3-Clause License, Copyright (c) the
24
+ JPEG XL Project Authors), highway (Apache License 2.0), brotli (MIT License)
25
+ and skcms (BSD 3-Clause License). Their license texts are appended to this
26
+ file in built distributions.
27
+
28
+
29
+
30
+
31
+
32
+ ================================================================================
33
+ Content of: third_party/libjxl/LICENSE
34
+ ================================================================================
35
+
36
+
37
+ Copyright (c) the JPEG XL Project Authors.
38
+ All rights reserved.
39
+
40
+ Redistribution and use in source and binary forms, with or without
41
+ modification, are permitted provided that the following conditions are met:
42
+
43
+ 1. Redistributions of source code must retain the above copyright notice, this
44
+ list of conditions and the following disclaimer.
45
+
46
+ 2. Redistributions in binary form must reproduce the above copyright notice,
47
+ this list of conditions and the following disclaimer in the documentation
48
+ and/or other materials provided with the distribution.
49
+
50
+ 3. Neither the name of the copyright holder nor the names of its
51
+ contributors may be used to endorse or promote products derived from
52
+ this software without specific prior written permission.
53
+
54
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
55
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
57
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
58
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
60
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
61
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
62
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
63
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
64
+
65
+
66
+
67
+
68
+
69
+ ================================================================================
70
+ Content of: third_party/libjxl/third_party/highway/LICENSE
71
+ ================================================================================
72
+
73
+
74
+ Apache License
75
+ Version 2.0, January 2004
76
+ http://www.apache.org/licenses/
77
+
78
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
79
+
80
+ 1. Definitions.
81
+
82
+ "License" shall mean the terms and conditions for use, reproduction,
83
+ and distribution as defined by Sections 1 through 9 of this document.
84
+
85
+ "Licensor" shall mean the copyright owner or entity authorized by
86
+ the copyright owner that is granting the License.
87
+
88
+ "Legal Entity" shall mean the union of the acting entity and all
89
+ other entities that control, are controlled by, or are under common
90
+ control with that entity. For the purposes of this definition,
91
+ "control" means (i) the power, direct or indirect, to cause the
92
+ direction or management of such entity, whether by contract or
93
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
94
+ outstanding shares, or (iii) beneficial ownership of such entity.
95
+
96
+ "You" (or "Your") shall mean an individual or Legal Entity
97
+ exercising permissions granted by this License.
98
+
99
+ "Source" form shall mean the preferred form for making modifications,
100
+ including but not limited to software source code, documentation
101
+ source, and configuration files.
102
+
103
+ "Object" form shall mean any form resulting from mechanical
104
+ transformation or translation of a Source form, including but
105
+ not limited to compiled object code, generated documentation,
106
+ and conversions to other media types.
107
+
108
+ "Work" shall mean the work of authorship, whether in Source or
109
+ Object form, made available under the License, as indicated by a
110
+ copyright notice that is included in or attached to the work
111
+ (an example is provided in the Appendix below).
112
+
113
+ "Derivative Works" shall mean any work, whether in Source or Object
114
+ form, that is based on (or derived from) the Work and for which the
115
+ editorial revisions, annotations, elaborations, or other modifications
116
+ represent, as a whole, an original work of authorship. For the purposes
117
+ of this License, Derivative Works shall not include works that remain
118
+ separable from, or merely link (or bind by name) to the interfaces of,
119
+ the Work and Derivative Works thereof.
120
+
121
+ "Contribution" shall mean any work of authorship, including
122
+ the original version of the Work and any modifications or additions
123
+ to that Work or Derivative Works thereof, that is intentionally
124
+ submitted to Licensor for inclusion in the Work by the copyright owner
125
+ or by an individual or Legal Entity authorized to submit on behalf of
126
+ the copyright owner. For the purposes of this definition, "submitted"
127
+ means any form of electronic, verbal, or written communication sent
128
+ to the Licensor or its representatives, including but not limited to
129
+ communication on electronic mailing lists, source code control systems,
130
+ and issue tracking systems that are managed by, or on behalf of, the
131
+ Licensor for the purpose of discussing and improving the Work, but
132
+ excluding communication that is conspicuously marked or otherwise
133
+ designated in writing by the copyright owner as "Not a Contribution."
134
+
135
+ "Contributor" shall mean Licensor and any individual or Legal Entity
136
+ on behalf of whom a Contribution has been received by Licensor and
137
+ subsequently incorporated within the Work.
138
+
139
+ 2. Grant of Copyright License. Subject to the terms and conditions of
140
+ this License, each Contributor hereby grants to You a perpetual,
141
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
142
+ copyright license to reproduce, prepare Derivative Works of,
143
+ publicly display, publicly perform, sublicense, and distribute the
144
+ Work and such Derivative Works in Source or Object form.
145
+
146
+ 3. Grant of Patent License. Subject to the terms and conditions of
147
+ this License, each Contributor hereby grants to You a perpetual,
148
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
149
+ (except as stated in this section) patent license to make, have made,
150
+ use, offer to sell, sell, import, and otherwise transfer the Work,
151
+ where such license applies only to those patent claims licensable
152
+ by such Contributor that are necessarily infringed by their
153
+ Contribution(s) alone or by combination of their Contribution(s)
154
+ with the Work to which such Contribution(s) was submitted. If You
155
+ institute patent litigation against any entity (including a
156
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
157
+ or a Contribution incorporated within the Work constitutes direct
158
+ or contributory patent infringement, then any patent licenses
159
+ granted to You under this License for that Work shall terminate
160
+ as of the date such litigation is filed.
161
+
162
+ 4. Redistribution. You may reproduce and distribute copies of the
163
+ Work or Derivative Works thereof in any medium, with or without
164
+ modifications, and in Source or Object form, provided that You
165
+ meet the following conditions:
166
+
167
+ (a) You must give any other recipients of the Work or
168
+ Derivative Works a copy of this License; and
169
+
170
+ (b) You must cause any modified files to carry prominent notices
171
+ stating that You changed the files; and
172
+
173
+ (c) You must retain, in the Source form of any Derivative Works
174
+ that You distribute, all copyright, patent, trademark, and
175
+ attribution notices from the Source form of the Work,
176
+ excluding those notices that do not pertain to any part of
177
+ the Derivative Works; and
178
+
179
+ (d) If the Work includes a "NOTICE" text file as part of its
180
+ distribution, then any Derivative Works that You distribute must
181
+ include a readable copy of the attribution notices contained
182
+ within such NOTICE file, excluding those notices that do not
183
+ pertain to any part of the Derivative Works, in at least one
184
+ of the following places: within a NOTICE text file distributed
185
+ as part of the Derivative Works; within the Source form or
186
+ documentation, if provided along with the Derivative Works; or,
187
+ within a display generated by the Derivative Works, if and
188
+ wherever such third-party notices normally appear. The contents
189
+ of the NOTICE file are for informational purposes only and
190
+ do not modify the License. You may add Your own attribution
191
+ notices within Derivative Works that You distribute, alongside
192
+ or as an addendum to the NOTICE text from the Work, provided
193
+ that such additional attribution notices cannot be construed
194
+ as modifying the License.
195
+
196
+ You may add Your own copyright statement to Your modifications and
197
+ may provide additional or different license terms and conditions
198
+ for use, reproduction, or distribution of Your modifications, or
199
+ for any such Derivative Works as a whole, provided Your use,
200
+ reproduction, and distribution of the Work otherwise complies with
201
+ the conditions stated in this License.
202
+
203
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
204
+ any Contribution intentionally submitted for inclusion in the Work
205
+ by You to the Licensor shall be under the terms and conditions of
206
+ this License, without any additional terms or conditions.
207
+ Notwithstanding the above, nothing herein shall supersede or modify
208
+ the terms of any separate license agreement you may have executed
209
+ with Licensor regarding such Contributions.
210
+
211
+ 6. Trademarks. This License does not grant permission to use the trade
212
+ names, trademarks, service marks, or product names of the Licensor,
213
+ except as required for reasonable and customary use in describing the
214
+ origin of the Work and reproducing the content of the NOTICE file.
215
+
216
+ 7. Disclaimer of Warranty. Unless required by applicable law or
217
+ agreed to in writing, Licensor provides the Work (and each
218
+ Contributor provides its Contributions) on an "AS IS" BASIS,
219
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
220
+ implied, including, without limitation, any warranties or conditions
221
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
222
+ PARTICULAR PURPOSE. You are solely responsible for determining the
223
+ appropriateness of using or redistributing the Work and assume any
224
+ risks associated with Your exercise of permissions under this License.
225
+
226
+ 8. Limitation of Liability. In no event and under no legal theory,
227
+ whether in tort (including negligence), contract, or otherwise,
228
+ unless required by applicable law (such as deliberate and grossly
229
+ negligent acts) or agreed to in writing, shall any Contributor be
230
+ liable to You for damages, including any direct, indirect, special,
231
+ incidental, or consequential damages of any character arising as a
232
+ result of this License or out of the use or inability to use the
233
+ Work (including but not limited to damages for loss of goodwill,
234
+ work stoppage, computer failure or malfunction, or any and all
235
+ other commercial damages or losses), even if such Contributor
236
+ has been advised of the possibility of such damages.
237
+
238
+ 9. Accepting Warranty or Additional Liability. While redistributing
239
+ the Work or Derivative Works thereof, You may choose to offer,
240
+ and charge a fee for, acceptance of support, warranty, indemnity,
241
+ or other liability obligations and/or rights consistent with this
242
+ License. However, in accepting such obligations, You may act only
243
+ on Your own behalf and on Your sole responsibility, not on behalf
244
+ of any other Contributor, and only if You agree to indemnify,
245
+ defend, and hold each Contributor harmless for any liability
246
+ incurred by, or claims asserted against, such Contributor by reason
247
+ of your accepting any such warranty or additional liability.
248
+
249
+ END OF TERMS AND CONDITIONS
250
+
251
+ APPENDIX: How to apply the Apache License to your work.
252
+
253
+ To apply the Apache License to your work, attach the following
254
+ boilerplate notice, with the fields enclosed by brackets "[]"
255
+ replaced with your own identifying information. (Don't include
256
+ the brackets!) The text should be enclosed in the appropriate
257
+ comment syntax for the file format. We also recommend that a
258
+ file or class name and description of purpose be included on the
259
+ same "printed page" as the copyright notice for easier
260
+ identification within third-party archives.
261
+
262
+ Copyright [yyyy] [name of copyright owner]
263
+
264
+ Licensed under the Apache License, Version 2.0 (the "License");
265
+ you may not use this file except in compliance with the License.
266
+ You may obtain a copy of the License at
267
+
268
+ http://www.apache.org/licenses/LICENSE-2.0
269
+
270
+ Unless required by applicable law or agreed to in writing, software
271
+ distributed under the License is distributed on an "AS IS" BASIS,
272
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
273
+ See the License for the specific language governing permissions and
274
+ limitations under the License.
275
+
276
+
277
+
278
+
279
+ ================================================================================
280
+ Content of: third_party/libjxl/third_party/brotli/LICENSE
281
+ ================================================================================
282
+
283
+
284
+ Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
285
+
286
+ Permission is hereby granted, free of charge, to any person obtaining a copy
287
+ of this software and associated documentation files (the "Software"), to deal
288
+ in the Software without restriction, including without limitation the rights
289
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
290
+ copies of the Software, and to permit persons to whom the Software is
291
+ furnished to do so, subject to the following conditions:
292
+
293
+ The above copyright notice and this permission notice shall be included in
294
+ all copies or substantial portions of the Software.
295
+
296
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
297
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
298
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
299
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
300
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
301
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
302
+ THE SOFTWARE.
303
+
304
+
305
+
306
+
307
+
308
+ ================================================================================
309
+ Content of: third_party/libjxl/third_party/skcms/LICENSE
310
+ ================================================================================
311
+
312
+
313
+ // Copyright (c) 2018 Google Inc. All rights reserved.
314
+ //
315
+ // Redistribution and use in source and binary forms, with or without
316
+ // modification, are permitted provided that the following conditions are
317
+ // met:
318
+ //
319
+ // * Redistributions of source code must retain the above copyright
320
+ // notice, this list of conditions and the following disclaimer.
321
+ // * Redistributions in binary form must reproduce the above
322
+ // copyright notice, this list of conditions and the following disclaimer
323
+ // in the documentation and/or other materials provided with the
324
+ // distribution.
325
+ // * Neither the name of Google Inc. nor the names of its
326
+ // contributors may be used to endorse or promote products derived from
327
+ // this software without specific prior written permission.
328
+ //
329
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
330
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
331
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
332
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
333
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
334
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
335
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
336
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
337
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
338
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
339
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
340
+
341
+ --------------------------------------------------------------------------------
@@ -0,0 +1,39 @@
1
+ recursive-include custom_build_backend *
2
+ recursive-include src/leanjpeg_xl *.py *.pyi *.h *.hpp *.cpp *.pyx py.typed
3
+ recursive-include tests *.py
4
+ # libjxl sources (git submodule incl. highway/brotli/skcms) so sdists build
5
+ # offline.
6
+ #
7
+ # Prune carefully. Two directories look unused but are not:
8
+ # * tools/ is added with an unconditional add_subdirectory() even when
9
+ # JPEGXL_ENABLE_TOOLS=OFF, so configure fails without it (2 MB);
10
+ # * brotli's docs/ holds man pages installed by an unguarded install(FILES),
11
+ # so `cmake --install` fails without it (0.3 MB).
12
+ # Everything below is reachable only through an option this build turns off or
13
+ # an EXISTS check that falls back cleanly.
14
+ recursive-include third_party/libjxl *
15
+ prune third_party/libjxl/.git
16
+ prune third_party/libjxl/.github
17
+ prune third_party/libjxl/ci
18
+ prune third_party/libjxl/doc
19
+ prune third_party/libjxl/docker
20
+ prune third_party/libjxl/examples
21
+ prune third_party/libjxl/experimental
22
+ prune third_party/libjxl/plugins
23
+ prune third_party/libjxl/testdata
24
+ prune third_party/libjxl/third_party/googletest
25
+ prune third_party/libjxl/third_party/libpng
26
+ prune third_party/libjxl/third_party/zlib
27
+ prune third_party/libjxl/third_party/libjpeg-turbo
28
+ prune third_party/libjxl/third_party/sjpeg
29
+ prune third_party/libjxl/third_party/lcms
30
+ prune third_party/libjxl/third_party/HEVCSoftware
31
+ prune third_party/libjxl/third_party/highway/g3doc
32
+ prune third_party/libjxl/third_party/brotli/tests
33
+ prune third_party/libjxl/third_party/brotli/java
34
+ prune third_party/libjxl/third_party/brotli/js
35
+ prune third_party/libjxl/third_party/brotli/python
36
+ prune third_party/libjxl/third_party/brotli/research
37
+ prune build
38
+ include LICENSE requirements.txt README.md pyproject.toml setup.py
39
+ global-exclude __pycache__ *.py[cod] *.o *.obj *.a *.lib
@@ -0,0 +1,81 @@
1
+ Metadata-Version: 2.4
2
+ Name: leanjpeg-xl
3
+ Version: 0.1.0
4
+ Summary: leanjpeg offline path: light, allocation-conscious JPEG XL (libjxl) encode/decode and lossless JPEG recompression with a simplejpeg-style API, free-threading ready.
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/libjxl/libjxl
12
+ Keywords: jpeg xl,jxl,libjxl,numpy,lossless,jpeg recompression,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: Programming Language :: C++
27
+ Classifier: Topic :: Multimedia :: Graphics
28
+ Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
29
+ Classifier: Typing :: Typed
30
+ Requires-Python: >=3.13
31
+ Description-Content-Type: text/markdown
32
+ License-File: LICENSE
33
+ Requires-Dist: numpy>=2.1
34
+ Dynamic: license-file
35
+ Dynamic: requires-dist
36
+
37
+ # leanjpeg-xl
38
+
39
+ The **offline path** of [leanjpeg](https://github.com/vxlk/leanjpeg): a
40
+ light binding over [libjxl](https://github.com/libjxl/libjxl) (statically
41
+ linked) that mirrors the simplejpeg API.
42
+
43
+ ```python
44
+ import leanjpeg_xl as xl # or: from leanjpeg import xl
45
+
46
+ jxl = xl.encode_jxl(img, quality=90) # lossy, distance 1.0 (~q90)
47
+ jxl = xl.encode_jxl(img, distance=1.5, effort=7) # libjxl-native quality knob
48
+ jxl = xl.encode_jxl(img, lossless=True) # mathematically lossless
49
+ img = xl.decode_jxl(jxl, colorspace='RGB') # -> uint8 (H, W, 3)
50
+ hdr = xl.decode_jxl_header(jxl) # (height, width, colorspace, ...)
51
+
52
+ # bit-exact lossless JPEG recompression (about 20 % smaller, reversible)
53
+ jxl = xl.recompress_jpeg(jpeg_bytes)
54
+ assert xl.reconstruct_jpeg(jxl) == jpeg_bytes
55
+ ```
56
+
57
+ Highlights:
58
+
59
+ * `decode_jxl` / `decode_jxl_header` / `encode_jxl` / `is_jxl` mirror
60
+ `decode_jpeg` / `decode_jpeg_header` / `encode_jpeg` / `is_jpeg`, including
61
+ the colorspace names (`RGB`, `BGR`, `RGBA`, `BGRA`, `GRAY`, ...) and the
62
+ `buffer=` output-buffer parameter;
63
+ * `uint8`, `uint16` and `float32` samples, alpha channels, lossless mode;
64
+ * explicit threading control: `num_threads=None` (about one thread per 256x256
65
+ group, capped by `set_max_threads`), `1` (calling thread only) or `N`;
66
+ * codecs (decoder + encoder + thread pool + buffers) are pooled and reused so
67
+ steady-state calls do not allocate, and the GIL is released around all
68
+ libjxl work; the module is free-threading (3.13t/3.14t) compatible.
69
+
70
+ Install as part of leanjpeg with `pip install "leanjpeg[xl]"` or on its own
71
+ with `pip install leanjpeg-xl`.
72
+
73
+ Wheels are published for **CPython 3.13+**, free-threaded builds included
74
+ (`cp313`, `cp313t`, `cp314`, `cp314t`), on manylinux and musllinux (x86_64,
75
+ aarch64), macOS (x86_64, arm64) and Windows (AMD64, ARM64). libjxl is linked
76
+ statically, so there is nothing to install alongside. Building from source
77
+ needs CMake >= 3.16 and a C++17 compiler; libjxl and its dependencies
78
+ (highway, brotli, skcms) are git submodules that are built automatically, and
79
+ they are vendored into the source distribution so it builds offline. See
80
+ [docs/PACKAGING.md](https://github.com/vxlk/leanjpeg/blob/main/docs/PACKAGING.md)
81
+ for the build and release process.
@@ -0,0 +1,45 @@
1
+ # leanjpeg-xl
2
+
3
+ The **offline path** of [leanjpeg](https://github.com/vxlk/leanjpeg): a
4
+ light binding over [libjxl](https://github.com/libjxl/libjxl) (statically
5
+ linked) that mirrors the simplejpeg API.
6
+
7
+ ```python
8
+ import leanjpeg_xl as xl # or: from leanjpeg import xl
9
+
10
+ jxl = xl.encode_jxl(img, quality=90) # lossy, distance 1.0 (~q90)
11
+ jxl = xl.encode_jxl(img, distance=1.5, effort=7) # libjxl-native quality knob
12
+ jxl = xl.encode_jxl(img, lossless=True) # mathematically lossless
13
+ img = xl.decode_jxl(jxl, colorspace='RGB') # -> uint8 (H, W, 3)
14
+ hdr = xl.decode_jxl_header(jxl) # (height, width, colorspace, ...)
15
+
16
+ # bit-exact lossless JPEG recompression (about 20 % smaller, reversible)
17
+ jxl = xl.recompress_jpeg(jpeg_bytes)
18
+ assert xl.reconstruct_jpeg(jxl) == jpeg_bytes
19
+ ```
20
+
21
+ Highlights:
22
+
23
+ * `decode_jxl` / `decode_jxl_header` / `encode_jxl` / `is_jxl` mirror
24
+ `decode_jpeg` / `decode_jpeg_header` / `encode_jpeg` / `is_jpeg`, including
25
+ the colorspace names (`RGB`, `BGR`, `RGBA`, `BGRA`, `GRAY`, ...) and the
26
+ `buffer=` output-buffer parameter;
27
+ * `uint8`, `uint16` and `float32` samples, alpha channels, lossless mode;
28
+ * explicit threading control: `num_threads=None` (about one thread per 256x256
29
+ group, capped by `set_max_threads`), `1` (calling thread only) or `N`;
30
+ * codecs (decoder + encoder + thread pool + buffers) are pooled and reused so
31
+ steady-state calls do not allocate, and the GIL is released around all
32
+ libjxl work; the module is free-threading (3.13t/3.14t) compatible.
33
+
34
+ Install as part of leanjpeg with `pip install "leanjpeg[xl]"` or on its own
35
+ with `pip install leanjpeg-xl`.
36
+
37
+ Wheels are published for **CPython 3.13+**, free-threaded builds included
38
+ (`cp313`, `cp313t`, `cp314`, `cp314t`), on manylinux and musllinux (x86_64,
39
+ aarch64), macOS (x86_64, arm64) and Windows (AMD64, ARM64). libjxl is linked
40
+ statically, so there is nothing to install alongside. Building from source
41
+ needs CMake >= 3.16 and a C++17 compiler; libjxl and its dependencies
42
+ (highway, brotli, skcms) are git submodules that are built automatically, and
43
+ they are vendored into the source distribution so it builds offline. See
44
+ [docs/PACKAGING.md](https://github.com/vxlk/leanjpeg/blob/main/docs/PACKAGING.md)
45
+ for the build and release process.
@@ -0,0 +1,48 @@
1
+ """PEP 517 backend wrapper that adds the ``cmake`` wheel when it is needed.
2
+
3
+ Both leanjpeg backends build a static C/C++ dependency with cmake. A system
4
+ cmake is preferred, but manylinux/musllinux images and many developer machines
5
+ either have none or have one older than libjpeg-turbo 3.x and libjxl 0.12
6
+ accept (both require >= 3.16), so the cmake wheel is requested as a build
7
+ dependency in that case.
8
+ """
9
+ import re
10
+ import shutil
11
+ import subprocess
12
+
13
+ from setuptools import build_meta as _orig
14
+ from setuptools.build_meta import * # noqa: F401,F403
15
+
16
+ #: libjpeg-turbo 3.x and libjxl 0.12 both declare cmake_minimum_required(3.16)
17
+ MIN_CMAKE = (3, 16)
18
+
19
+
20
+ def _system_cmake_version():
21
+ """(major, minor) of the cmake on PATH, or None when unusable."""
22
+ exe = shutil.which('cmake')
23
+ if exe is None:
24
+ return None
25
+ try:
26
+ out = subprocess.run([exe, '--version'], capture_output=True, text=True,
27
+ timeout=30).stdout
28
+ except (OSError, subprocess.SubprocessError):
29
+ return None
30
+ match = re.search(r'cmake version (\d+)\.(\d+)', out)
31
+ if match is None:
32
+ return None
33
+ return int(match.group(1)), int(match.group(2))
34
+
35
+
36
+ def _get_cmake_dep():
37
+ version = _system_cmake_version()
38
+ if version is not None and version >= MIN_CMAKE:
39
+ return []
40
+ return ['cmake>=%d.%d' % MIN_CMAKE]
41
+
42
+
43
+ def get_requires_for_build_editable(config_settings=None):
44
+ return _orig.get_requires_for_build_editable(config_settings) + _get_cmake_dep()
45
+
46
+
47
+ def get_requires_for_build_wheel(config_settings=None):
48
+ return _orig.get_requires_for_build_wheel(config_settings) + _get_cmake_dep()
@@ -0,0 +1,70 @@
1
+ [project]
2
+ name = "leanjpeg-xl"
3
+ description = "leanjpeg offline path: light, allocation-conscious JPEG XL (libjxl) encode/decode and lossless JPEG recompression with a simplejpeg-style API, free-threading ready."
4
+ readme = "README.md"
5
+ classifiers = [
6
+ "Development Status :: 3 - Alpha",
7
+ "Intended Audience :: Developers",
8
+ "Intended Audience :: Science/Research",
9
+ "Operating System :: MacOS",
10
+ "Operating System :: Microsoft :: Windows",
11
+ "Operating System :: POSIX :: Linux",
12
+ "Programming Language :: Python :: 3",
13
+ "Programming Language :: Python :: 3 :: Only",
14
+ "Programming Language :: Python :: 3.13",
15
+ "Programming Language :: Python :: 3.14",
16
+ "Programming Language :: Python :: Free Threading :: 3 - Stable",
17
+ "Programming Language :: Python :: Implementation :: CPython",
18
+ "Programming Language :: Cython",
19
+ "Programming Language :: C++",
20
+ "Topic :: Multimedia :: Graphics",
21
+ "Topic :: Multimedia :: Graphics :: Graphics Conversion",
22
+ "Typing :: Typed",
23
+ ]
24
+ requires-python = ">=3.13"
25
+ license = "MIT"
26
+ # setup.py appends the libjxl / highway / brotli / skcms licences to LICENSE
27
+ # while building, so the shipped LICENSE covers everything linked statically.
28
+ license-files = ["LICENSE"]
29
+ authors = [{ name = "leanjpeg contributors" }]
30
+ maintainers = [{ name = "leanjpeg contributors" }]
31
+ keywords = ["jpeg xl", "jxl", "libjxl", "numpy", "lossless", "jpeg recompression", "free-threading", "nogil"]
32
+ dynamic = ["dependencies", "version"]
33
+
34
+ # PyInstaller discovers the hook in src/leanjpeg_xl/__pyinstaller through this,
35
+ # whether the backend is used on its own or via the leanjpeg umbrella.
36
+ [project.entry-points.pyinstaller40]
37
+ hook-dirs = "leanjpeg_xl.__pyinstaller:get_hook_dirs"
38
+
39
+ [project.urls]
40
+ Homepage = "https://github.com/vxlk/leanjpeg"
41
+ Source = "https://github.com/vxlk/leanjpeg"
42
+ Issues = "https://github.com/vxlk/leanjpeg/issues"
43
+ Upstream = "https://github.com/libjxl/libjxl"
44
+
45
+ [build-system]
46
+ requires = [
47
+ "setuptools>=77.0.0",
48
+ "wheel",
49
+ "cython>=3.1",
50
+ "numpy>=2.1",
51
+ ]
52
+ backend-path = ["custom_build_backend"]
53
+ build-backend = "custom_build_meta"
54
+
55
+ # libjxl needs a C++17 compiler and cmake >= 3.16. The manylinux and musllinux
56
+ # images both ship a new-enough gcc; custom_build_meta adds the cmake wheel
57
+ # whenever no new-enough cmake is on PATH. No assembler is needed (highway uses
58
+ # intrinsics), so unlike leanjpeg-simple there is no before-all step.
59
+ [tool.cibuildwheel]
60
+ # Free-threaded interpreters have their own identifiers (cp313t-...), which
61
+ # "cp313-*" does not match -- listing them is what makes them get built.
62
+ build = ["cp313-*", "cp313t-*", "cp314-*", "cp314t-*"]
63
+ enable = ["cpython-freethreading"]
64
+ skip = ["*-win32", "*_i686"]
65
+ build-verbosity = 1
66
+ # Fail fast rather than compiling numpy/Pillow from source in the container;
67
+ # this does not affect building leanjpeg-xl itself.
68
+ environment = { PIP_ONLY_BINARY = ":all:" }
69
+ test-requires = ["pytest>=7", "numpy>=2.1", "pillow>=11"]
70
+ test-command = "pytest {package}/tests -q -p no:cacheprovider"
@@ -0,0 +1 @@
1
+ numpy>=2.1
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+