Documentation
  • Coverage
  • 100%
    4 out of 4 items documented0 out of 3 items with examples
  • Size
  • Source code size: 46.86 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.15 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • abonander

A Rust library for allocation-limited computation of the Discrete Cosine Transform.

1D DCTs are allocation-free but 2D requires allocation.

Features:

  • simd: use SIMD types to speed computation (2D DCT only)
  • cos-approx: use a Taylor series approximation of cosine instead of the stdlib implementation (which is usually much slower but also higher precision)