Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ Jonathan Brown (Jonnyawsom3) <jonathanbr30@gmail.com>
Louis Dispa <louis.dispa@outlook.fr>
Luca Versari
Martin Bruse <zondolfin@gmail.com>
Matthew Little <zone117x@gmail.com>
Moritz Firsching
Mrmaxmeier <3913977+Mrmaxmeier@users.noreply.github.com>
Sami Boukortt
Tomáš Král <tomas@kral.hk>
Wonwoo Choi <chwo9843@gmail.com>
Zoltan Szabadka
Zoltan Szabadka
38 changes: 38 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions jxl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jxl_simd = { path = "../jxl_simd", version = "=0.3.0" }

[dev-dependencies]
arbtest = "0.3.2"
brotli = "8.0"
paste = "1.0.15"
rand = "0.9.2"
rand_xorshift = "0.4.0"
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
10 changes: 10 additions & 0 deletions jxl/src/api/data_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,3 +264,13 @@ pub struct JxlFrameHeader {
/// Frame size (width, height)
pub size: (usize, usize),
}

/// Captured metadata box from a JXL container.
#[derive(Clone, Debug)]
pub struct JxlMetadataBox {
/// Raw box content bytes.
pub data: Vec<u8>,
/// True if this was a Brotli-compressed (brob) box.
/// Caller must decompress if needed.
pub is_brotli_compressed: bool,
}
Loading
Loading