1 2 3 4 5 6
//! Echo detector utilities for residual echo detection. pub(crate) mod circular_buffer; pub(crate) mod mean_variance_estimator; pub(crate) mod moving_max; pub(crate) mod normalized_covariance_estimator;