ebur128 0.1.10

Implementation of the EBU R128 loudness standard
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    #[cfg(feature = "c-tests")]
    {
        let mut b = cc::Build::new();

        b.compiler("clang");
        b.file("tests/c/interp.c");
        b.file("tests/c/true_peak.c");
        b.file("tests/c/history.c");
        b.file("tests/c/filter.c");
        b.file("tests/c/calc_gating_block.c");
        b.compile("ebur128");
    }
}