First commit

This commit is contained in:
Jamie Hardt
2020-11-20 10:55:52 -08:00
commit 86e8a26e0a
19 changed files with 1452 additions and 0 deletions

19
src/lib.rs Normal file
View 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;