neteq 0.8.3

NetEQ-inspired adaptive jitter buffer for audio decoding
Documentation
1
2
3
4
5
6
7
8
9
#![cfg_attr(target_arch = "wasm32", no_main)]

#[cfg(target_arch = "wasm32")]
use neteq as _;

#[cfg(not(target_arch = "wasm32"))]
fn main() {
    println!("neteq_wasm is only compiled for wasm32 target");
}