1 2 3 4 5 6 7 8 9
//! Echo and reverb detection module. pub mod detect; pub mod room; pub mod rt60; pub use detect::{EchoDetector, EchoResult}; pub use room::{RoomAnalyzer, RoomCharacteristics}; pub use rt60::measure_rt60;