audio-codec
A collection of VoIP audio codecs implemented for Rust. This crate provides a unified interface for encoding and decoding various audio formats commonly used in SIP, VoIP, and WebRTC applications.
Supported Codecs
| Codec | Implementation | Feature | no_std |
|---|---|---|---|
| G.711 (PCMA/PCMU) | Pure Rust | Built-in | yes |
| G.722 | Pure Rust | Built-in | yes |
| G.729 | Pure Rust (g729-sys) |
Built-in | yes |
| Opus | Pure Rust (opus-rs) |
opus (off by default) |
no |
| Telephone Event | RFC 4733 | Built-in | yes |
| Resampler | Polyphase FIR | Built-in | yes |
Features
- Unified API: Simple
EncoderandDecodertraits for all codecs. no_stdsupport: every codec except Opus runs withoutstdor an allocator.- Resampler: Built-in audio resampling utility.
Performance
Measured on Apple M2 Pro (processing 20ms audio frames):
| Codec | Encode (20ms) | Decode (20ms) | Rate |
|---|---|---|---|
| PCMU | ~50.09 ns | ~59.73 ns | 8kHz |
| PCMA | ~50.23 ns | ~59.63 ns | 8kHz |
| G.722 | ~5.02 µs | ~3.82 µs | 16kHz |
| G.729 | ~20.50 µs | ~6.16 µs | 8kHz |
| Opus | ~52.34 µs | ~23.19 µs | 48kHz |
Note: Benchmarks were run with cargo bench --bench codec_bench (Criterion). create_encoder(CodecType::Opus) currently uses the default Opus profile: 48kHz, stereo, Application::Audio, bitrate 64kbps, complexity 5.
Usage
Add this to your Cargo.toml:
[]
= { = "0.4", = ["opus"] } # opus is opt-in
Example: Decoding PCMA
use ;
Example: Encoding G.722
use ;
Example: Configuring Opus (Factory API)
use ;
no_std support
The crate works on bare-metal targets with no allocator (e.g.
Cortex-M, RISC-V). Disable the default std feature and use the slice-based
*_into API:
[]
= "0.4"
= false
use ;
Use max_encode_bytes / max_decode_samples to size the buffers correctly:
let needed_bytes = encoder.max_encode_bytes;
let needed_samples = decoder.max_decode_samples;
Resampler in no_std
Resampler borrows a caller-provided coefficient buffer (~24 KB):
use ;
let mut coeffs: = ;
let mut r = new?;
let mut out = ;
let n = r.resample_into?;
Supported codecs in no_std
| Codec | Status |
|---|---|
| G.711 (PCMA/PCMU), G.722, G.729, Telephone Event | ✅ fully supported |
| Resampler | ✅ fully supported (borrowed coeffs buffer) |
| Opus | ❌ requires std (opt-in via the opus feature) |
The crate is verified to compile on thumbv7em-none-eabi and other bare-metal
targets. Float math in the resampler goes through libm when std is off.
License
This project is licensed under the MIT License.