mirror of
https://github.com/iluvcapra/bwavfile.git
synced 2026-01-02 01:40:45 +00:00
First commit
This commit is contained in:
19
src/lib.rs
Normal file
19
src/lib.rs
Normal file
@@ -0,0 +1,19 @@
|
||||
extern crate encoding;
|
||||
extern crate byteorder;
|
||||
|
||||
mod parser;
|
||||
mod fourcc;
|
||||
mod errors;
|
||||
|
||||
mod validation;
|
||||
|
||||
mod raw_chunk_reader;
|
||||
mod audio_frame_reader;
|
||||
mod chunks;
|
||||
|
||||
mod wavereader;
|
||||
mod wavewriter;
|
||||
|
||||
pub use wavereader::{WaveReader};
|
||||
pub use chunks::{WaveFmt,Bext};
|
||||
pub use errors::Error;
|
||||
Reference in New Issue
Block a user