Skip to main content

codec/audio/decode/
mod.rs

1//! Audio decoder implementations.
2//!
3//! See `audio::create_decoder` for the routing entry point.
4
5pub mod mp3;
6pub mod vorbis;
7
8pub use mp3::Mp3Decoder;
9pub use vorbis::VorbisDecoder;