Skip to main content

wavekat_core/codec/
mod.rs

1//! Telephony / streaming audio codecs.
2//!
3//! Each codec lives in a submodule so the public surface stays
4//! deliberately granular: a consumer that only needs G.711 imports
5//! `wavekat_core::codec::g711`. Future additions (Opus, iLBC, …) live
6//! beside it and stay independently selectable.
7
8pub mod g711;