Go to file
2022-01-03 20:43:55 +03:00
.github/workflows Update CI config (reference enabled) 2022-01-03 17:15:18 +03:00
assets Add assets for tests and reference checks 2021-12-29 20:56:07 +03:00
doc Add qoi format specification pdf to the repo 2022-01-03 14:25:40 +03:00
ext (Update the upstream qoi submodule) 2021-12-29 20:56:30 +03:00
fuzz Update fuzz targets 2022-01-03 14:25:40 +03:00
qoi-bench qoi-bench: only abort on r/t fail if it's qoi-fast 2022-01-03 17:43:28 +03:00
src Add docstrings for Channels / ColorSpace 2022-01-03 20:43:55 +03:00
tests In tests, always check for encoded length match 2022-01-03 17:15:18 +03:00
.gitignore (Update .gitignore) 2022-01-03 17:15:18 +03:00
.gitmodules Add reference implementation as a submodule 2021-11-29 04:21:09 +00:00
Cargo.toml Initial attempt at no_std 2022-01-03 17:15:18 +03:00
LICENSE-APACHE Add license files 2022-01-03 14:25:40 +03:00
LICENSE-MIT Add license files 2022-01-03 14:25:40 +03:00
README.md Update bench timings in the readme 2022-01-03 19:08:38 +03:00
rustfmt.toml Initial working version (but lots of temp stuff) 2021-11-28 16:20:24 +00:00

qoi-fast

VERY fast encoder/decoder for QOI image format, implemented in pure Rust.

Build Latest Version Documentation Apache 2.0 MIT unsafe forbidden

Quick summary:

  • One of the fastest QOI encoders/decoders out there.
  • Compliant with the latest QOI format specification.
  • Zero unsafe code.
  • Supports decoding from / encoding to std::io streams directly.
  • Roundtrip-tested vs the reference C implementation; fuzz-tested.

Examples

todo!();

Benchmarks

Comparison to the reference C implementation (as of 00e34217), benchmarks timings collected on Apple M1 (1782 images, 1187 MB total):

codec          decode:ms    encode:ms  decode:mp/s  encode:mp/s

qoi-c            4409.34      5531.82        282.3        225.0
qoi-fast         3105.60      4726.19        400.8        263.3

License

This project is dual-licensed under MIT and Apache 2.0.