//! Subscribe to an encoded audio track and decode it to raw PCM.
//!
//! The decode counterpart to [`encode`](crate::encode), and the mirror of
//! `moq-video`'s [`decode`](https://docs.rs/moq-video) module.
//!
//! Entry points, high to low level:
//! - [`Consumer`] subscribes to a track and hands back decoded [`Frame`](crate::Frame)s.
//! - [`Decoder`] decodes packets you supply (bring your own payloads).
//!
//! [`Config`] configures [`Consumer`]'s PCM output layout. The lower-level
//! [`Decoder`] emits the codec-native sample rate and channel count from the
//! catalog.
pub use Consumer;
pub use ;