blip25-mbe 0.1.0

Research MBE / IMBE / AMBE+2 vocoder family: P25 wire formats, multi-generation codecs, and parametric rate conversion. Educational use; see PATENT_NOTICE.md.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! DVSI AMBE-3000 chip protocol — 64 rate configurations (`r0..r63`).
//!
//! Per the DVSI AMBE-3000 Protocol Specification. Each rate entry
//! carries a 6 × 16-bit rate control word and its own bit allocation,
//! FEC layout, and codec generation (AMBE / AMBE+ / AMBE+2). Used for
//! direct interop with DVSI's vocoder hardware over the chip serial
//! protocol — distinct from any P25-on-the-air wire format.
//!
//! P25-specific wires live in [`crate::imbe_wire`] and
//! [`crate::ambe_plus2_wire`]. Some rates here align with P25 (rate 33 =
//! P25 half-rate with FEC, rate 34 = P25 half-rate without FEC), but
//! the DVSI chip protocol carries additional framing that the
//! over-the-air P25 modulators strip off.

pub mod rate_tables;
pub mod frame;