diff options
author | ArTourter <artourter@gmail.com> | 2020-02-24 06:02:47 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-02-24 06:07:42 +0700 |
commit | 6c73ba64d5ef8c467930c6706c6140ca493babf7 (patch) | |
tree | 0ae140452a366ba18832ce546b1fe7c0d3b3734a /libraries/libaec/README | |
parent | 71fa22a53c8d7f58b88415fde6ec4c75d3931530 (diff) |
libraries/libaec: Added (Adaptive Entropy Coding library).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/libaec/README')
-rw-r--r-- | libraries/libaec/README | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libraries/libaec/README b/libraries/libaec/README new file mode 100644 index 0000000000000..ce12cde722117 --- /dev/null +++ b/libraries/libaec/README @@ -0,0 +1,11 @@ +Libaec provides fast lossless compression of 1 up to 32 bit wide signed or +unsigned integers (samples). The library achieves best results for low entropy +data as often encountered in space imaging instrument data or numerical model +output from weather or climate simulations. While floating point +representations are not directly supported, they can also be efficiently coded +by grouping exponents and mantissa. + +Libaec implements Golomb-Rice coding as defined in the Space Data System +Standard documents [121.0-B-2][1] and [120.0-G-2][2]. + +Libaec can replace SZIP. |