earshot 1.1.0

Ridiculously fast & accurate voice activity detection in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(feature = "libm")]
pub use libm;
#[cfg(not(feature = "libm"))]
pub mod libm {
	#[inline(always)]
	pub fn sqrtf(f: f32) -> f32 {
		f.sqrt()
	}
	#[inline(always)]
	pub fn logf(f: f32) -> f32 {
		f.ln()
	}
	#[inline(always)]
	pub fn expf(f: f32) -> f32 {
		f.exp()
	}
}