ruopus 0.1.1

A pure-Rust implementation of the Opus audio codec (RFC 6716). No FFI; unsafe confined to documented SIMD kernels.
Documentation
1
2
3
4
5
6
//! The `ruopus.lowlevel` submodule: direct access to the SILK and CELT
//! layers beneath the Opus packet codec. These are advanced building blocks;
//! ordinary use should prefer the top-level `OpusEncoder`/`OpusDecoder`.

pub mod celt;
pub mod silk;