Skip to content

Commit

Permalink
deps: Update libjxl to v0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
inflation committed Nov 27, 2024
1 parent b35ee4f commit 3846551
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[submodule "libjxl"]
path = jpegxl-src/libjxl
url = https://github.com/libjxl/libjxl
branch = refs/tags/v0.11.0
url = https://github.com/libjxl/libjxl
2 changes: 1 addition & 1 deletion jpegxl-src/libjxl
Submodule libjxl updated 75 files
+6 −6 .github/workflows/build_test.yml
+2 −2 .github/workflows/build_test_bazel.yml
+5 −5 .github/workflows/build_test_cross.yml
+3 −3 .github/workflows/build_test_md.yml
+7 −4 .github/workflows/build_test_msys2.yml
+4 −4 .github/workflows/build_test_wasm.yml
+5 −5 .github/workflows/codeql.yml
+11 −11 .github/workflows/conformance.yml
+3 −3 .github/workflows/debug_ci.yml
+3 −3 .github/workflows/dependency-review.yml
+3 −3 .github/workflows/fuzz.yml
+2 −2 .github/workflows/gitlab_mirror.yml
+1 −1 .github/workflows/pages.yml
+19 −4 .github/workflows/pull_request.yml
+13 −11 .github/workflows/release.yaml
+4 −4 .github/workflows/scorecard.yml
+2 −2 .github/workflows/test_new_highway.yml
+1 −0 AUTHORS
+8 −0 CHANGELOG.md
+3 −3 CMakeLists.txt
+6 −0 debian/changelog
+23 −2 doc/release.md
+2 −1 doc/software_support.md
+1 −1 lib/CMakeLists.txt
+7 −7 lib/extras/dec/color_description.cc
+4 −5 lib/extras/dec/jxl.cc
+7 −2 lib/extras/enc/apng.cc
+4 −0 lib/extras/enc/jpg.cc
+1 −1 lib/jpegli/decode.cc
+10 −0 lib/jpegli/decode_api_test.cc
+12 −4 lib/jpegli/huffman.h
+1 −0 lib/jpegli/libjpeg_test_util.cc
+1 −17 lib/jxl/butteraugli/butteraugli_test.cc
+0 −1 lib/jxl/enc_ac_strategy.cc
+5 −1 lib/jxl/enc_adaptive_quantization.cc
+3 −0 lib/jxl/enc_ans.cc
+4 −1 lib/jxl/enc_bit_writer.cc
+23 −1 lib/jxl/enc_butteraugli_comparator.cc
+1 −0 lib/jxl/enc_butteraugli_comparator.h
+7 −43 lib/jxl/enc_fast_lossless.cc
+10 −0 lib/jxl/enc_patch_dictionary.cc
+8 −3 lib/jxl/encode.cc
+9 −12 lib/jxl/encode_test.cc
+1 −1 lib/jxl/frame_header.h
+5 −1 lib/jxl/headers.cc
+8 −4 lib/jxl/jpeg/enc_jpeg_data.cc
+2 −2 lib/jxl/jpeg/enc_jpeg_data.h
+12 −4 lib/jxl/jpeg/enc_jpeg_huffman_decode.h
+11 −22 lib/jxl/jxl_test.cc
+2 −0 lib/jxl/loop_filter.cc
+2 −2 lib/jxl/loop_filter.h
+45 −21 lib/jxl/modular/encoding/dec_ma.cc
+4 −5 lib/jxl/modular_test.cc
+17 −23 lib/jxl/patch_dictionary_test.cc
+106 −2 lib/jxl/roundtrip_test.cc
+43 −0 lib/jxl/test_utils.cc
+6 −0 lib/jxl/test_utils.h
+1 −1 lib/jxl_lists.bzl
+1 −1 lib/lib.gni
+2 −0 third_party/dirent.cc
+14 −0 tools/CMakeLists.txt
+6 −1 tools/benchmark/benchmark_codec_jxl.cc
+7 −4 tools/benchmark/benchmark_xl.cc
+11 −3 tools/butteraugli_main.cc
+1 −1 tools/djxl_main.cc
+4 −0 tools/jni/org/jpeg/jpegli/wrapper/Encoder.java
+0 −16 tools/jni/org/jpeg/jpegli/wrapper/EncoderTest.java
+38 −0 tools/jni/org/jpeg/jpegli/wrapper/JniHelper.java
+4 −1 tools/jni/org/jpeg/jpegli/wrapper/encoder_jni.cc
+4 −0 tools/jni/org/jpeg/jpegxl/wrapper/Decoder.java
+0 −15 tools/jni/org/jpeg/jpegxl/wrapper/DecoderTest.java
+38 −0 tools/jni/org/jpeg/jpegxl/wrapper/JniHelper.java
+18 −4 tools/streaming_fuzzer.cc
+8 −0 tools/utf8.manifest
+3 −0 tools/utf8.rc
4 changes: 2 additions & 2 deletions jpegxl-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ mod test {
#[cfg_attr(coverage_nightly, coverage(off))]
fn test_bindings_version() {
unsafe {
assert_eq!(JxlDecoderVersion(), 11000);
assert_eq!(JxlEncoderVersion(), 11000);
assert_eq!(JxlDecoderVersion(), 11001);
assert_eq!(JxlEncoderVersion(), 11001);
}
}

Expand Down

0 comments on commit 3846551

Please sign in to comment.