waveform/
lib.rs

1//! Waveform image renderes meant to be used for audio visualization.
2
3#[cfg(feature = "rlibc")]
4extern crate rlibc;
5
6pub mod error;
7
8pub mod zero;
9
10pub mod misc;
11pub use misc::{Color, Sample, SampleSequence, TimeRange, WaveformConfig};
12
13#[macro_use]
14mod macros;
15
16pub mod binned;
17pub use binned::BinnedWaveformRenderer;
18
19#[deprecated]
20pub mod direct;
21
22pub mod multi;
23pub use multi::MultiWaveformRenderer;