cpal/examples/beep.rs

41 lines
1.4 KiB
Rust
Raw Normal View History

2014-12-11 15:28:26 +00:00
extern crate cpal;
fn main() {
2015-09-01 11:53:54 +00:00
let endpoint = cpal::get_default_endpoint().unwrap();
2015-09-01 12:17:57 +00:00
let format = endpoint.get_supported_formats_list().unwrap().next().unwrap();
2015-09-01 11:53:54 +00:00
let mut channel = cpal::Voice::new(&endpoint, &format).unwrap();
2014-12-11 16:23:33 +00:00
2015-04-27 15:33:02 +00:00
// Produce a sinusoid of maximum amplitude.
let mut data_source = (0u64..).map(|t| t as f32 * 0.03)
2015-08-20 12:38:25 +00:00
.map(|t| t.sin());
2014-12-11 16:23:33 +00:00
loop {
2015-08-20 12:38:25 +00:00
match channel.append_data(32768) {
cpal::UnknownTypeBuffer::U16(mut buffer) => {
for (sample, value) in buffer.chunks_mut(2).zip(&mut data_source) {
let value = ((value * 0.5 + 0.5) * std::u16::MAX as f32) as u16;
sample[0] = value;
sample[1] = value;
}
},
2015-08-20 12:38:25 +00:00
cpal::UnknownTypeBuffer::I16(mut buffer) => {
for (sample, value) in buffer.chunks_mut(2).zip(&mut data_source) {
let value = (value * std::i16::MAX as f32) as i16;
sample[0] = value;
sample[1] = value;
}
},
cpal::UnknownTypeBuffer::F32(mut buffer) => {
for (sample, value) in buffer.chunks_mut(2).zip(&mut data_source) {
sample[0] = value;
sample[1] = value;
}
},
}
2014-12-22 13:16:47 +00:00
channel.play();
2014-12-11 16:23:33 +00:00
}
2014-12-11 15:28:26 +00:00
}