12 releases

Uses old Rust 2015

0.4.3 Aug 9, 2020
0.4.2 May 19, 2019
0.4.1 Aug 25, 2018
0.4.0 Dec 2, 2017
0.0.1 Feb 13, 2015

#129 in Audio

Download history 6919/week @ 2023-12-11 6480/week @ 2023-12-18 6002/week @ 2023-12-25 5979/week @ 2024-01-01 7558/week @ 2024-01-08 8158/week @ 2024-01-15 9088/week @ 2024-01-22 8484/week @ 2024-01-29 8400/week @ 2024-02-05 8242/week @ 2024-02-12 8840/week @ 2024-02-19 8879/week @ 2024-02-26 9608/week @ 2024-03-04 7828/week @ 2024-03-11 8446/week @ 2024-03-18 7841/week @ 2024-03-25

34,692 downloads per month
Used in 64 crates (19 directly)

Apache-2.0

160KB
2.5K SLoC

Claxon

A FLAC decoding library in Rust.

Build Status Crates.io version Changelog Documentation

Claxon is a FLAC decoder written in pure Rust. It has been fuzzed and verified against the reference decoder for correctness. Its performance is similar to the reference decoder.

Example

The following example computes the root mean square (RMS) of a FLAC file:

let mut reader = claxon::FlacReader::open("testsamples/pop.flac").unwrap();
let mut sqr_sum = 0.0;
let mut count = 0;
for sample in reader.samples() {
    let s = sample.unwrap() as f64;
    sqr_sum += s * s;
    count += 1;
}
println!("RMS is {}", (sqr_sum / count as f64).sqrt());

More examples can be found in the examples directory. For a simple example of decoding a FLAC file to wav with Claxon and Hound, see decode_simple.rs. A more efficient way of decoding requires dealing with a few details of the FLAC format. See decode.rs for an example.

Performance

These are the times to decode 5 real-world FLAC files to wav, average and standard deviation of 11 runs, normalized to version 1.3.2 of the reference implementation. Measurements were done on a Skylake i7. Claxon was compiled with Rust 1.26.0.

Decoder Time / reference
Claxon 1.10 ± 0.01
libflac 1.00 ± 0.01

Note that for decent performance, Claxon should be compiled with -C codegen-units=1 on Rust ≥ 1.24.0. Not passing this RUSTFLAG can cause as much as a 45% increase in running time.

Contributing

Contributions in the form of bug reports, feature requests, or pull requests are welcome. See contributing.md.

License

Claxon is licensed under the Apache 2.0 license. It may be used in free software as well as closed-source applications, both for commercial and non-commercial use under the conditions given in the license. If you want to use Claxon in your GPLv2-licensed software, you can add an exception to your copyright notice. Please do not open an issue if you disagree with the choice of license.

No runtime deps