rvoip-codec-core 0.2.2

G.711 and optional G.729A/G.729AB audio codec implementation for RVOIP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Gain modules.
//! Provenance: Gain prediction/quantization adapted from ITU G.729 gain predictor and quantizer flow.
//! Q-format: Pitch/code gains and predictors use Q14/Q15 arithmetic with 32-bit intermediates.

/// Public module `decode`.
pub mod decode;
/// Public module `predict`.
pub mod predict;
pub(crate) mod presel;
/// Public module `quantize`.
pub mod quantize;
pub(crate) mod quantize_prepare;
/// Public module `taming`.
pub mod taming;