sonora 0.1.0

WebRTC Audio Processing — pure Rust port with echo cancellation, noise suppression, and AGC
Documentation
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;