Skip to content

Commit

Permalink
[ts-registry] Add JPEG-LS support to crate listings statically
Browse files Browse the repository at this point in the history
  • Loading branch information
Enet4 committed Aug 24, 2024
1 parent 6252ce0 commit da1330d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions transfer-syntax-registry/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@
//! | JPEG Extended (Process 2 & 4) | Cargo feature `jpeg` | x |
//! | JPEG Lossless, Non-Hierarchical (Process 14) | Cargo feature `jpeg` | x |
//! | JPEG Lossless, Non-Hierarchical, First-Order Prediction (Process 14 [Selection Value 1]) | Cargo feature `jpeg` | x |
//! | JPEG-LS Lossless | Cargo feature `charls` | x |
//! | JPEG-LS Lossy (Near-Lossless) | Cargo feature `charls` | x |
//! | JPEG 2000 (Lossless Only) | Cargo feature `openjp2` or `openjpeg-sys` | x |
//! | JPEG 2000 | Cargo feature `openjp2` or `openjpeg-sys` | x |
//! | JPEG 2000 Part 2 Multi-component Image Compression (Lossless Only) | Cargo feature `openjp2` or `openjpeg-sys` | x |
Expand All @@ -68,6 +70,10 @@
//! However, a native implementation might not always be available,
//! or alternative implementations may be preferred:
//!
//! - `charls` provides support for JPEG-LS
//! by linking to the CharLS reference implementation,
//! which is written in C++.
//! No alternative JPEG-LS implementations are available at the moment.
//! - `openjpeg-sys` provides a binding to the OpenJPEG reference implementation,
//! which is written in C and is statically linked.
//! It may offer better performance than the pure Rust implementation,
Expand Down

0 comments on commit da1330d

Please sign in to comment.