Function wav::write[][src]

pub fn write<W>(header: Header, track: &BitDepth, writer: &mut W) -> Result<()> where
    W: Write + Seek
Expand description

Writes the given wav data to the given writer.

Notes

Although track is a borrowed value, its contents will be formatted into an owned Vec<u8> so that it can be written to the writer through riff::ChunkContents::write.

Errors

This function fails under the following circumstances: