silence_core/opus/
mod.rs

1//! This feature allows opus encoding and decoding for efficient byte transfer, while not sacirifising audio quality.
2
3pub mod decode;
4pub mod encode;
5
6/// Re-export the opus crate.
7pub use opus;