RustDCT is a pure-Rust signal processing library that computes the most common Discrete Cosine Transforms:
```rust // Compute a DCT Type 2 of size 1234 use rustdct::DCTplanner;
let mut input: Vec
let mut planner = DCTplanner::new(); let mut dct = planner.plan_dct2(1234);
dct.process(&mut input, &mut output);
```
Release notes are available in RELEASES.md.