[][src]Struct hound::SampleWriter16

pub struct SampleWriter16<'parent, W> where
    W: Write + Seek + 'parent, 
{ /* fields omitted */ }

A writer that specifically only writes integer samples of 16 bits per sample.

The writer buffers written samples internally so they can be written in a single batch later on. This has two advantages when performance is important:

A SampleWriter16 can be obtained by calling WavWriter::get_i16_writer.

Methods

impl<'parent, W: Write + Seek> SampleWriter16<'parent, W>[src]

pub fn write_sample<S: Sample>(&mut self, sample: S)[src]

Writes a single sample for one channel.

WAVE interleaves channel data, so the channel that this writes the sample to depends on previous writes.

Unlike WavWriter::write_sample(), no range check is performed. Only the least significant 16 bits are considered, everything else is discarded. Apart from that check, this method is more efficient than WavWriter::write_sample(), because it can avoid dispatching on the number of bits. That was done already when the SampleWriter16 was constructed.

Note that nothing is actually written until flush() is called.

pub unsafe fn write_sample_unchecked<S: Sample>(&mut self, sample: S)[src]

Like write_sample(), but does not perform a bounds check when writing to the internal buffer.

It is the responsibility of the programmer to ensure that no more samples are written than allocated when the writer was created.

pub fn flush(self) -> Result<()>[src]

Flush the internal buffer to the underlying writer.

Panics

Panics if insufficient samples (less than specified when the writer was constructed) have been written with write_sample().

Auto Trait Implementations

impl<'parent, W> Unpin for SampleWriter16<'parent, W>

impl<'parent, W> Sync for SampleWriter16<'parent, W> where
    W: Sync

impl<'parent, W> Send for SampleWriter16<'parent, W> where
    W: Send

impl<'parent, W> !UnwindSafe for SampleWriter16<'parent, W>

impl<'parent, W> RefUnwindSafe for SampleWriter16<'parent, W> where
    W: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]