[−][src]Trait hound::Sample
A type that can be used to represent audio samples.
Via this trait, decoding can be generic over i8
, i16
, i32
and f32
.
All integer formats with bit depths up to 32 bits per sample can be decoded
into i32
, but it takes up more memory. If you know beforehand that you
will be reading a file with 16 bits per sample, then decoding into an i16
will be sufficient.
Required methods
fn write<W: Write>(self, writer: &mut W, bits: u16) -> Result<()>
Writes the audio sample to the WAVE data chunk.
fn read<R: Read>(
reader: &mut R,
_: SampleFormat,
bytes: u16,
bits: u16
) -> Result<Self>
reader: &mut R,
_: SampleFormat,
bytes: u16,
bits: u16
) -> Result<Self>
Reads the audio sample from the WAVE data chunk.
fn as_i16(self) -> i16
Cast the sample to a 16-bit sample.
This does not change the value of the sample, it only casts it. The value is assumed to fit within the range. This is not verified, truncation may occur.
Implementations on Foreign Types
impl Sample for i8
[src]
fn write<W: Write>(self, writer: &mut W, bits: u16) -> Result<()>
[src]
fn as_i16(self) -> i16
[src]
fn read<R: Read>(
reader: &mut R,
fmt: SampleFormat,
bytes: u16,
bits: u16
) -> Result<i8>
[src]
reader: &mut R,
fmt: SampleFormat,
bytes: u16,
bits: u16
) -> Result<i8>
impl Sample for i16
[src]
fn write<W: Write>(self, writer: &mut W, bits: u16) -> Result<()>
[src]
fn as_i16(self) -> i16
[src]
fn read<R: Read>(
reader: &mut R,
fmt: SampleFormat,
bytes: u16,
bits: u16
) -> Result<i16>
[src]
reader: &mut R,
fmt: SampleFormat,
bytes: u16,
bits: u16
) -> Result<i16>
impl Sample for i32
[src]
fn write<W: Write>(self, writer: &mut W, bits: u16) -> Result<()>
[src]
fn as_i16(self) -> i16
[src]
fn read<R: Read>(
reader: &mut R,
fmt: SampleFormat,
bytes: u16,
bits: u16
) -> Result<i32>
[src]
reader: &mut R,
fmt: SampleFormat,
bytes: u16,
bits: u16
) -> Result<i32>
impl Sample for f32
[src]
fn write<W: Write>(self, writer: &mut W, bits: u16) -> Result<()>
[src]
fn as_i16(self) -> i16
[src]
fn read<R: Read>(
reader: &mut R,
fmt: SampleFormat,
bytes: u16,
bits: u16
) -> Result<Self>
[src]
reader: &mut R,
fmt: SampleFormat,
bytes: u16,
bits: u16
) -> Result<Self>