Merge branch 'candidate-v1' into HEAD

This commit is contained in:
Jamie Hardt
2021-06-23 10:19:48 -07:00
5 changed files with 47 additions and 77 deletions

View File

@@ -35,12 +35,6 @@ Apps we test against:
[github]: https://github.com/iluvcapra/bwavfile
*/
// #![feature(external_doc)]
// #[doc(include="../README.md")]
// #[cfg(doctest)]
// pub struct ReadmeDoctests;
extern crate encoding;
extern crate byteorder;
extern crate uuid;

View File

@@ -120,6 +120,10 @@ impl<R: Read + Seek> AudioFrameReader<R> {
Ok( 0 )
}
}
pub fn read_float_frame(&mut self, buffer:&mut [f32]) -> Result<u64, Error> {
todo!()
}
}
/// Wave, Broadcast-WAV and RF64/BW64 parser/reader.