mirror of
https://github.com/iluvcapra/bwavfile.git
synced 2026-01-01 17:30:44 +00:00
Implementation of complex formats
This commit is contained in:
11
src/lib.rs
11
src/lib.rs
@@ -100,10 +100,14 @@ Things that are _not_ necessarily in the scope of this package:
|
||||
|
||||
extern crate encoding;
|
||||
extern crate byteorder;
|
||||
extern crate uuid;
|
||||
|
||||
mod parser;
|
||||
mod fourcc;
|
||||
mod errors;
|
||||
mod common_format;
|
||||
|
||||
mod parser;
|
||||
|
||||
|
||||
mod raw_chunk_reader;
|
||||
mod audio_frame_reader;
|
||||
@@ -114,8 +118,9 @@ mod fmt;
|
||||
mod wavereader;
|
||||
mod wavewriter;
|
||||
|
||||
pub use errors::Error;
|
||||
pub use wavereader::{WaveReader};
|
||||
pub use bext::Bext;
|
||||
pub use fmt::{WaveFmt, WaveFmtExtended};
|
||||
pub use errors::Error;
|
||||
pub use fmt::{WaveFmt, WaveFmtExtended, ChannelDescriptor};
|
||||
pub use common_format::CommonFormat;
|
||||
pub use audio_frame_reader::AudioFrameReader;
|
||||
Reference in New Issue
Block a user