├── .gitignore ├── LICENSE ├── README.md ├── scripts ├── conformance.py ├── download_and_symlink.sh ├── download_and_symlink_using_curl.sh ├── install_hooks.sh ├── lcms2.py ├── list_shas.py ├── make_zip.sh ├── update_sha.py └── upload_and_symlink.sh └── testcases ├── README.md ├── alpha_nonpremultiplied ├── input.jxl ├── ref.png └── test.json ├── alpha_premultiplied ├── input.jxl ├── ref.png └── test.json ├── alpha_triangles ├── input.jxl ├── ref.png ├── source └── test.json ├── animation_icos4d ├── input.jxl ├── orig.apng ├── ref.apng ├── source └── test.json ├── animation_icos4d_5 ├── input.jxl ├── orig.apng ├── ref.apng ├── source └── test.json ├── animation_newtons_cradle ├── input.jxl ├── ref.gif ├── source └── test.json ├── animation_spline ├── input.jxl ├── ref.apng └── test.json ├── animation_spline_5 ├── input.jxl ├── ref.apng └── test.json ├── bench_oriented_brg ├── input.jxl ├── ref.png └── test.json ├── bench_oriented_brg_5 ├── input.jxl ├── ref.png └── test.json ├── bicycles ├── input.jxl ├── ref.png └── test.json ├── bike ├── input.jxl ├── itu-t.24_ReadMe.txt ├── ref.png ├── source └── test.json ├── bike_5 ├── input.jxl ├── ref.png └── test.json ├── blendmodes ├── input.jxl ├── ref.png ├── sourcetree └── test.json ├── blendmodes_5 ├── input.jxl ├── ref.png ├── sourcetree └── test.json ├── cafe ├── input.jxl ├── itu-t.24_ReadMe.txt ├── ref.png ├── source └── test.json ├── cafe_5 ├── input.jxl ├── ref.png └── test.json ├── cmyk_layers ├── input.jxl ├── ref.png └── test.json ├── delta_palette ├── input.jxl ├── ref.png └── test.json ├── grayscale ├── input.jxl ├── ref.png └── test.json ├── grayscale_5 ├── input.jxl ├── ref.png └── test.json ├── grayscale_jpeg ├── input.jxl └── test.json ├── grayscale_jpeg_5 ├── input.jxl └── test.json ├── grayscale_public_university ├── input.jxl ├── ref.png ├── source └── test.json ├── lossless_pfm ├── input.jxl ├── ref.pfm ├── ref.png └── test.json ├── lz77_flower ├── input.jxl ├── ref.png └── test.json ├── main_level10.txt ├── main_level5.txt ├── noise ├── input.jxl ├── ref.png └── test.json ├── noise_5 ├── input.jxl ├── ref.png └── test.json ├── opsin_inverse ├── input.jxl ├── ref.png └── test.json ├── opsin_inverse_5 ├── input.jxl ├── ref.png └── test.json ├── patches ├── input.jxl ├── ref.png └── test.json ├── patches_5 ├── input.jxl ├── ref.png └── test.json ├── patches_lossless ├── input.jxl ├── ref.png └── test.json ├── progressive ├── input.jxl ├── ref.png ├── source └── test.json ├── progressive_5 ├── input.jxl ├── ref.png └── test.json ├── spot ├── input.jxl ├── ref.png └── test.json ├── sunset_logo ├── input.jxl ├── ref.png ├── source └── test.json ├── upsampling ├── input.jxl ├── ref.png └── test.json └── upsampling_5 ├── input.jxl ├── ref.png └── test.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/README.md -------------------------------------------------------------------------------- /scripts/conformance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/scripts/conformance.py -------------------------------------------------------------------------------- /scripts/download_and_symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/scripts/download_and_symlink.sh -------------------------------------------------------------------------------- /scripts/download_and_symlink_using_curl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/scripts/download_and_symlink_using_curl.sh -------------------------------------------------------------------------------- /scripts/install_hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/scripts/install_hooks.sh -------------------------------------------------------------------------------- /scripts/lcms2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/scripts/lcms2.py -------------------------------------------------------------------------------- /scripts/list_shas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/scripts/list_shas.py -------------------------------------------------------------------------------- /scripts/make_zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/scripts/make_zip.sh -------------------------------------------------------------------------------- /scripts/update_sha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/scripts/update_sha.py -------------------------------------------------------------------------------- /scripts/upload_and_symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/scripts/upload_and_symlink.sh -------------------------------------------------------------------------------- /testcases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/README.md -------------------------------------------------------------------------------- /testcases/alpha_nonpremultiplied/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/alpha_nonpremultiplied/input.jxl -------------------------------------------------------------------------------- /testcases/alpha_nonpremultiplied/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/alpha_nonpremultiplied/ref.png -------------------------------------------------------------------------------- /testcases/alpha_nonpremultiplied/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/alpha_nonpremultiplied/test.json -------------------------------------------------------------------------------- /testcases/alpha_premultiplied/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/alpha_premultiplied/input.jxl -------------------------------------------------------------------------------- /testcases/alpha_premultiplied/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/alpha_premultiplied/ref.png -------------------------------------------------------------------------------- /testcases/alpha_premultiplied/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/alpha_premultiplied/test.json -------------------------------------------------------------------------------- /testcases/alpha_triangles/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/alpha_triangles/input.jxl -------------------------------------------------------------------------------- /testcases/alpha_triangles/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/alpha_triangles/ref.png -------------------------------------------------------------------------------- /testcases/alpha_triangles/source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/alpha_triangles/source -------------------------------------------------------------------------------- /testcases/alpha_triangles/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/alpha_triangles/test.json -------------------------------------------------------------------------------- /testcases/animation_icos4d/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_icos4d/input.jxl -------------------------------------------------------------------------------- /testcases/animation_icos4d/orig.apng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_icos4d/orig.apng -------------------------------------------------------------------------------- /testcases/animation_icos4d/ref.apng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_icos4d/ref.apng -------------------------------------------------------------------------------- /testcases/animation_icos4d/source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_icos4d/source -------------------------------------------------------------------------------- /testcases/animation_icos4d/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_icos4d/test.json -------------------------------------------------------------------------------- /testcases/animation_icos4d_5/input.jxl: -------------------------------------------------------------------------------- 1 | ../animation_icos4d/input.jxl -------------------------------------------------------------------------------- /testcases/animation_icos4d_5/orig.apng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_icos4d_5/orig.apng -------------------------------------------------------------------------------- /testcases/animation_icos4d_5/ref.apng: -------------------------------------------------------------------------------- 1 | ../animation_icos4d/ref.apng -------------------------------------------------------------------------------- /testcases/animation_icos4d_5/source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_icos4d_5/source -------------------------------------------------------------------------------- /testcases/animation_icos4d_5/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_icos4d_5/test.json -------------------------------------------------------------------------------- /testcases/animation_newtons_cradle/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_newtons_cradle/input.jxl -------------------------------------------------------------------------------- /testcases/animation_newtons_cradle/ref.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_newtons_cradle/ref.gif -------------------------------------------------------------------------------- /testcases/animation_newtons_cradle/source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_newtons_cradle/source -------------------------------------------------------------------------------- /testcases/animation_newtons_cradle/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_newtons_cradle/test.json -------------------------------------------------------------------------------- /testcases/animation_spline/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_spline/input.jxl -------------------------------------------------------------------------------- /testcases/animation_spline/ref.apng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_spline/ref.apng -------------------------------------------------------------------------------- /testcases/animation_spline/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_spline/test.json -------------------------------------------------------------------------------- /testcases/animation_spline_5/input.jxl: -------------------------------------------------------------------------------- 1 | ../animation_spline/input.jxl -------------------------------------------------------------------------------- /testcases/animation_spline_5/ref.apng: -------------------------------------------------------------------------------- 1 | ../animation_spline/ref.apng -------------------------------------------------------------------------------- /testcases/animation_spline_5/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/animation_spline_5/test.json -------------------------------------------------------------------------------- /testcases/bench_oriented_brg/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/bench_oriented_brg/input.jxl -------------------------------------------------------------------------------- /testcases/bench_oriented_brg/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/bench_oriented_brg/ref.png -------------------------------------------------------------------------------- /testcases/bench_oriented_brg/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/bench_oriented_brg/test.json -------------------------------------------------------------------------------- /testcases/bench_oriented_brg_5/input.jxl: -------------------------------------------------------------------------------- 1 | ../bench_oriented_brg/input.jxl -------------------------------------------------------------------------------- /testcases/bench_oriented_brg_5/ref.png: -------------------------------------------------------------------------------- 1 | ../bench_oriented_brg/ref.png -------------------------------------------------------------------------------- /testcases/bench_oriented_brg_5/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/bench_oriented_brg_5/test.json -------------------------------------------------------------------------------- /testcases/bicycles/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/bicycles/input.jxl -------------------------------------------------------------------------------- /testcases/bicycles/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/bicycles/ref.png -------------------------------------------------------------------------------- /testcases/bicycles/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/bicycles/test.json -------------------------------------------------------------------------------- /testcases/bike/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/bike/input.jxl -------------------------------------------------------------------------------- /testcases/bike/itu-t.24_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/bike/itu-t.24_ReadMe.txt -------------------------------------------------------------------------------- /testcases/bike/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/bike/ref.png -------------------------------------------------------------------------------- /testcases/bike/source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/bike/source -------------------------------------------------------------------------------- /testcases/bike/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/bike/test.json -------------------------------------------------------------------------------- /testcases/bike_5/input.jxl: -------------------------------------------------------------------------------- 1 | ../bike/input.jxl -------------------------------------------------------------------------------- /testcases/bike_5/ref.png: -------------------------------------------------------------------------------- 1 | ../bike/ref.png -------------------------------------------------------------------------------- /testcases/bike_5/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/bike_5/test.json -------------------------------------------------------------------------------- /testcases/blendmodes/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/blendmodes/input.jxl -------------------------------------------------------------------------------- /testcases/blendmodes/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/blendmodes/ref.png -------------------------------------------------------------------------------- /testcases/blendmodes/sourcetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/blendmodes/sourcetree -------------------------------------------------------------------------------- /testcases/blendmodes/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/blendmodes/test.json -------------------------------------------------------------------------------- /testcases/blendmodes_5/input.jxl: -------------------------------------------------------------------------------- 1 | ../blendmodes/input.jxl -------------------------------------------------------------------------------- /testcases/blendmodes_5/ref.png: -------------------------------------------------------------------------------- 1 | ../blendmodes/ref.png -------------------------------------------------------------------------------- /testcases/blendmodes_5/sourcetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/blendmodes_5/sourcetree -------------------------------------------------------------------------------- /testcases/blendmodes_5/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/blendmodes_5/test.json -------------------------------------------------------------------------------- /testcases/cafe/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/cafe/input.jxl -------------------------------------------------------------------------------- /testcases/cafe/itu-t.24_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/cafe/itu-t.24_ReadMe.txt -------------------------------------------------------------------------------- /testcases/cafe/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/cafe/ref.png -------------------------------------------------------------------------------- /testcases/cafe/source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/cafe/source -------------------------------------------------------------------------------- /testcases/cafe/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/cafe/test.json -------------------------------------------------------------------------------- /testcases/cafe_5/input.jxl: -------------------------------------------------------------------------------- 1 | ../cafe/input.jxl -------------------------------------------------------------------------------- /testcases/cafe_5/ref.png: -------------------------------------------------------------------------------- 1 | ../cafe/ref.png -------------------------------------------------------------------------------- /testcases/cafe_5/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/cafe_5/test.json -------------------------------------------------------------------------------- /testcases/cmyk_layers/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/cmyk_layers/input.jxl -------------------------------------------------------------------------------- /testcases/cmyk_layers/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/cmyk_layers/ref.png -------------------------------------------------------------------------------- /testcases/cmyk_layers/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/cmyk_layers/test.json -------------------------------------------------------------------------------- /testcases/delta_palette/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/delta_palette/input.jxl -------------------------------------------------------------------------------- /testcases/delta_palette/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/delta_palette/ref.png -------------------------------------------------------------------------------- /testcases/delta_palette/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/delta_palette/test.json -------------------------------------------------------------------------------- /testcases/grayscale/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/grayscale/input.jxl -------------------------------------------------------------------------------- /testcases/grayscale/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/grayscale/ref.png -------------------------------------------------------------------------------- /testcases/grayscale/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/grayscale/test.json -------------------------------------------------------------------------------- /testcases/grayscale_5/input.jxl: -------------------------------------------------------------------------------- 1 | ../grayscale/input.jxl -------------------------------------------------------------------------------- /testcases/grayscale_5/ref.png: -------------------------------------------------------------------------------- 1 | ../grayscale/ref.png -------------------------------------------------------------------------------- /testcases/grayscale_5/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/grayscale_5/test.json -------------------------------------------------------------------------------- /testcases/grayscale_jpeg/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/grayscale_jpeg/input.jxl -------------------------------------------------------------------------------- /testcases/grayscale_jpeg/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/grayscale_jpeg/test.json -------------------------------------------------------------------------------- /testcases/grayscale_jpeg_5/input.jxl: -------------------------------------------------------------------------------- 1 | ../grayscale_jpeg/input.jxl -------------------------------------------------------------------------------- /testcases/grayscale_jpeg_5/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/grayscale_jpeg_5/test.json -------------------------------------------------------------------------------- /testcases/grayscale_public_university/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/grayscale_public_university/input.jxl -------------------------------------------------------------------------------- /testcases/grayscale_public_university/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/grayscale_public_university/ref.png -------------------------------------------------------------------------------- /testcases/grayscale_public_university/source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/grayscale_public_university/source -------------------------------------------------------------------------------- /testcases/grayscale_public_university/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/grayscale_public_university/test.json -------------------------------------------------------------------------------- /testcases/lossless_pfm/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/lossless_pfm/input.jxl -------------------------------------------------------------------------------- /testcases/lossless_pfm/ref.pfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/lossless_pfm/ref.pfm -------------------------------------------------------------------------------- /testcases/lossless_pfm/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/lossless_pfm/ref.png -------------------------------------------------------------------------------- /testcases/lossless_pfm/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/lossless_pfm/test.json -------------------------------------------------------------------------------- /testcases/lz77_flower/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/lz77_flower/input.jxl -------------------------------------------------------------------------------- /testcases/lz77_flower/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/lz77_flower/ref.png -------------------------------------------------------------------------------- /testcases/lz77_flower/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/lz77_flower/test.json -------------------------------------------------------------------------------- /testcases/main_level10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/main_level10.txt -------------------------------------------------------------------------------- /testcases/main_level5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/main_level5.txt -------------------------------------------------------------------------------- /testcases/noise/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/noise/input.jxl -------------------------------------------------------------------------------- /testcases/noise/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/noise/ref.png -------------------------------------------------------------------------------- /testcases/noise/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/noise/test.json -------------------------------------------------------------------------------- /testcases/noise_5/input.jxl: -------------------------------------------------------------------------------- 1 | ../noise/input.jxl -------------------------------------------------------------------------------- /testcases/noise_5/ref.png: -------------------------------------------------------------------------------- 1 | ../noise/ref.png -------------------------------------------------------------------------------- /testcases/noise_5/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/noise_5/test.json -------------------------------------------------------------------------------- /testcases/opsin_inverse/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/opsin_inverse/input.jxl -------------------------------------------------------------------------------- /testcases/opsin_inverse/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/opsin_inverse/ref.png -------------------------------------------------------------------------------- /testcases/opsin_inverse/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/opsin_inverse/test.json -------------------------------------------------------------------------------- /testcases/opsin_inverse_5/input.jxl: -------------------------------------------------------------------------------- 1 | ../opsin_inverse/input.jxl -------------------------------------------------------------------------------- /testcases/opsin_inverse_5/ref.png: -------------------------------------------------------------------------------- 1 | ../opsin_inverse/ref.png -------------------------------------------------------------------------------- /testcases/opsin_inverse_5/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/opsin_inverse_5/test.json -------------------------------------------------------------------------------- /testcases/patches/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/patches/input.jxl -------------------------------------------------------------------------------- /testcases/patches/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/patches/ref.png -------------------------------------------------------------------------------- /testcases/patches/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/patches/test.json -------------------------------------------------------------------------------- /testcases/patches_5/input.jxl: -------------------------------------------------------------------------------- 1 | ../patches/input.jxl -------------------------------------------------------------------------------- /testcases/patches_5/ref.png: -------------------------------------------------------------------------------- 1 | ../patches/ref.png -------------------------------------------------------------------------------- /testcases/patches_5/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/patches_5/test.json -------------------------------------------------------------------------------- /testcases/patches_lossless/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/patches_lossless/input.jxl -------------------------------------------------------------------------------- /testcases/patches_lossless/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/patches_lossless/ref.png -------------------------------------------------------------------------------- /testcases/patches_lossless/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/patches_lossless/test.json -------------------------------------------------------------------------------- /testcases/progressive/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/progressive/input.jxl -------------------------------------------------------------------------------- /testcases/progressive/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/progressive/ref.png -------------------------------------------------------------------------------- /testcases/progressive/source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/progressive/source -------------------------------------------------------------------------------- /testcases/progressive/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/progressive/test.json -------------------------------------------------------------------------------- /testcases/progressive_5/input.jxl: -------------------------------------------------------------------------------- 1 | ../progressive/input.jxl -------------------------------------------------------------------------------- /testcases/progressive_5/ref.png: -------------------------------------------------------------------------------- 1 | ../progressive/ref.png -------------------------------------------------------------------------------- /testcases/progressive_5/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/progressive_5/test.json -------------------------------------------------------------------------------- /testcases/spot/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/spot/input.jxl -------------------------------------------------------------------------------- /testcases/spot/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/spot/ref.png -------------------------------------------------------------------------------- /testcases/spot/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/spot/test.json -------------------------------------------------------------------------------- /testcases/sunset_logo/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/sunset_logo/input.jxl -------------------------------------------------------------------------------- /testcases/sunset_logo/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/sunset_logo/ref.png -------------------------------------------------------------------------------- /testcases/sunset_logo/source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/sunset_logo/source -------------------------------------------------------------------------------- /testcases/sunset_logo/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/sunset_logo/test.json -------------------------------------------------------------------------------- /testcases/upsampling/input.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/upsampling/input.jxl -------------------------------------------------------------------------------- /testcases/upsampling/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/upsampling/ref.png -------------------------------------------------------------------------------- /testcases/upsampling/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/upsampling/test.json -------------------------------------------------------------------------------- /testcases/upsampling_5/input.jxl: -------------------------------------------------------------------------------- 1 | ../upsampling/input.jxl -------------------------------------------------------------------------------- /testcases/upsampling_5/ref.png: -------------------------------------------------------------------------------- 1 | ../upsampling/ref.png -------------------------------------------------------------------------------- /testcases/upsampling_5/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libjxl/conformance/HEAD/testcases/upsampling_5/test.json --------------------------------------------------------------------------------