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
mod config;
mod decoder;
mod encoder;
mod frame;

/// Public re-export.
pub use config::{DecoderConfig, EncoderConfig, G729Config};
/// Public re-export.
pub use decoder::G729Decoder;
/// Public re-export.
pub use encoder::G729Encoder;
/// Public re-export.
pub use frame::FrameType;