//! AMR wideband (3GPP TS 26.190 / ITU-T G.722.2).
//!
//! # Status
//!
//! Complete: encoder and decoder are bit-exact against the TS 26.173
//! reference over the nine normative speech vectors, DTX in both directions
//! against `tst_md`, plus concealment and homing. See
//! `docs/AMR_IMPLEMENTATION_STATUS.md`.
//!
//! Everything here is fixed point, because that is what AMR is: TS 26.190 §8.1
//! specifies the codec "in a bit-exact arithmetic", and TS 26.173 — the ANSI-C
//! reference — is the definition. A floating-point implementation would be a
//! different codec, failing conformance and producing different bitstreams from
//! identical audio.