devela::_dep::rodio

Module static_buffer

Available on crate feature dep_rodio only.
Expand description

A simple source of samples coming from a static buffer.

The StaticSamplesBuffer struct can be used to treat a list of values as a Source.

§Example

use rodio::static_buffer::StaticSamplesBuffer;
let _ = StaticSamplesBuffer::new(1, 44100, &[1i16, 2, 3, 4, 5, 6]);

Structs§