kithara-decode 0.0.1-alpha2

Pluggable audio decode (Symphonia / Apple / Android) to PCM.
Documentation
//! Symphonia codec + demuxer surface.
//!
//! `SymphoniaCodec` (`FrameCodec` impl over `Box<dyn AudioDecoder>`) and
//! `SymphoniaDemuxer` (`Demuxer` impl over `Box<dyn FormatReader>`) are the
//! pieces that pair with `ComposedDecoder` for software-decoded audio
//! formats (MP3, native FLAC, OGG/Opus/Vorbis, WAV/AIFF, MKV, ADTS,
//! file-fmp4). Bootstrap helpers — `adapter::ReadSeekAdapter` (`Read+Seek ->
//! MediaSource` bridge), `probe::{new_direct, probe_with_seek}`, and
//! `echain` (error-chain inspection) — back both.

#[cfg(feature = "fdk-aac")]
pub(crate) mod aac_fdk;
pub(crate) mod adapter;
pub(crate) mod codec;
pub(crate) mod config;
pub(crate) mod demuxer;
pub(crate) mod echain;
pub(crate) mod probe;
pub(crate) mod registry;

pub(crate) use codec::SymphoniaCodec;
pub(crate) use config::SymphoniaConfig;
pub(crate) use demuxer::SymphoniaDemuxer;