cpal/src/platform/windows/asio/stream.rs

686 lines
29 KiB
Rust
Raw Normal View History

2018-10-12 05:54:26 +00:00
extern crate asio_sys as sys;
2018-11-01 06:58:50 +00:00
extern crate num_traits;
2018-10-12 05:54:26 +00:00
use std;
use Format;
use CreationError;
use StreamData;
use super::Device;
use UnknownTypeInputBuffer;
2018-10-30 05:50:20 +00:00
use UnknownTypeOutputBuffer;
2018-10-12 05:54:26 +00:00
use std::sync::{Arc, Mutex};
use std::mem;
use std::sync::atomic::{AtomicUsize, Ordering};
use SampleFormat;
2018-10-30 23:34:14 +00:00
use super::asio_utils as au;
2018-11-01 06:58:50 +00:00
use self::num_traits::PrimInt;
2018-10-12 05:54:26 +00:00
pub struct EventLoop {
2018-10-29 11:57:42 +00:00
asio_streams: Arc<Mutex<sys::AsioStreams>>,
2018-10-30 03:27:50 +00:00
cpal_streams: Arc<Mutex<Vec<Option<Stream>>>>,
2018-10-24 06:34:31 +00:00
stream_count: AtomicUsize,
2018-10-12 05:54:26 +00:00
callbacks: Arc<Mutex<Vec<&'static mut (FnMut(StreamId, StreamData) + Send)>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct StreamId(usize);
pub struct InputBuffer<'a, T: 'a> {
buffer: &'a [T],
}
pub struct OutputBuffer<'a, T: 'a> {
buffer: &'a mut [T],
}
2018-10-30 05:50:20 +00:00
struct Stream{
playing: bool,
2018-10-30 03:27:50 +00:00
}
2018-10-12 12:38:55 +00:00
#[derive(Default)]
struct I16Buffer{
cpal: Vec<i16>,
channel: Vec<Vec<i16>>,
}
#[derive(Default)]
struct U16Buffer{
cpal: Vec<u16>,
channel: Vec<Vec<u16>>,
}
#[derive(Default)]
struct F32Buffer{
cpal: Vec<f32>,
channel: Vec<Vec<f32>>,
}
struct Buffers {
i16_buff: I16Buffer,
u16_buff: U16Buffer,
f32_buff: F32Buffer,
}
2018-11-01 06:58:50 +00:00
enum Endian {
Little,
Big,
}
2018-10-12 05:54:26 +00:00
impl EventLoop {
pub fn new() -> EventLoop {
EventLoop {
2018-10-29 11:57:42 +00:00
asio_streams: Arc::new(Mutex::new(sys::AsioStreams{input: None, output: None})),
2018-10-30 03:27:50 +00:00
cpal_streams: Arc::new(Mutex::new(Vec::new())),
2018-10-24 06:34:31 +00:00
stream_count: AtomicUsize::new(0),
2018-10-12 05:54:26 +00:00
callbacks: Arc::new(Mutex::new(Vec::new())),
}
}
2018-10-30 05:50:20 +00:00
/// Create a new CPAL Input Stream
/// If there is no ASIO Input Stream
/// it will be created
2018-11-04 10:23:24 +00:00
fn get_input_stream(&self, drivers: &sys::Drivers, format: &Format) -> Result<usize, CreationError> {
let Format {
channels,
sample_rate,
..
} = format;
let num_channels = *channels as usize;
let sample_rate = sample_rate.0;
2018-10-29 11:57:42 +00:00
let ref mut streams = *self.asio_streams.lock().unwrap();
2018-11-02 11:06:08 +00:00
if sample_rate != drivers.get_sample_rate().rate {
if drivers.can_sample_rate(sample_rate) {
drivers.set_sample_rate(sample_rate).expect("Unsupported sample rate");
} else {
panic!("This sample rate {:?} is not supported", sample_rate);
}
}
2018-10-29 11:57:42 +00:00
match streams.input {
Some(ref input) => Ok(input.buffer_size as usize),
None => {
let output = streams.output.take();
drivers.prepare_input_stream(output, num_channels)
.map(|new_streams| {
let bs = match new_streams.input {
Some(ref inp) => inp.buffer_size as usize,
None => unreachable!(),
};
*streams = new_streams;
bs
})
.map_err(|ref e| {
println!("Error preparing stream: {}", e);
CreationError::DeviceNotAvailable
})
}
}
}
2018-11-04 10:23:24 +00:00
fn get_output_stream(&self, drivers: &sys::Drivers, format: &Format) -> Result<usize, CreationError> {
let Format {
channels,
sample_rate,
..
} = format;
let num_channels = *channels as usize;
let sample_rate = sample_rate.0;
2018-10-29 11:57:42 +00:00
let ref mut streams = *self.asio_streams.lock().unwrap();
2018-11-02 11:06:08 +00:00
if sample_rate != drivers.get_sample_rate().rate {
if drivers.can_sample_rate(sample_rate) {
drivers.set_sample_rate(sample_rate).expect("Unsupported sample rate");
} else {
panic!("This sample rate {:?} is not supported", sample_rate);
}
}
2018-10-29 11:57:42 +00:00
match streams.output {
Some(ref output) => Ok(output.buffer_size as usize),
None => {
let input = streams.input.take();
drivers.prepare_output_stream(input, num_channels)
.map(|new_streams| {
let bs = match new_streams.output {
Some(ref out) => out.buffer_size as usize,
None => unreachable!(),
};
*streams = new_streams;
bs
})
.map_err(|ref e| {
println!("Error preparing stream: {}", e);
CreationError::DeviceNotAvailable
})
},
}
}
2018-10-12 05:54:26 +00:00
pub fn build_input_stream(
&self,
device: &Device,
format: &Format,
) -> Result<StreamId, CreationError> {
2018-10-16 05:48:40 +00:00
let Device {
drivers,
..
} = device;
2018-10-19 03:05:55 +00:00
let num_channels = format.channels.clone();
2018-10-16 05:48:40 +00:00
let stream_type = drivers.get_data_type().expect("Couldn't load data type");
2018-11-04 10:23:24 +00:00
self.get_input_stream(&drivers, format).map(|stream_buffer_size| {
2018-10-29 11:57:42 +00:00
let cpal_num_samples = stream_buffer_size * num_channels as usize;
2018-10-12 05:54:26 +00:00
let count = self.stream_count.load(Ordering::SeqCst);
self.stream_count.store(count + 1, Ordering::SeqCst);
2018-10-24 06:34:31 +00:00
let asio_streams = self.asio_streams.clone();
2018-10-30 05:50:20 +00:00
let cpal_streams = self.cpal_streams.clone();
2018-10-12 05:54:26 +00:00
let callbacks = self.callbacks.clone();
2018-10-29 11:57:42 +00:00
2018-10-12 12:38:55 +00:00
// Create buffers
let channel_len = cpal_num_samples
/ num_channels as usize;
2018-10-29 11:57:42 +00:00
let mut buffers = match format.data_type{
2018-10-12 12:38:55 +00:00
SampleFormat::I16 => {
Buffers{
i16_buff: I16Buffer{
cpal: vec![0 as i16; cpal_num_samples],
channel: (0..num_channels)
.map(|_| Vec::with_capacity(channel_len))
.collect()},
u16_buff: U16Buffer::default(),
f32_buff: F32Buffer::default(),
}
}
SampleFormat::U16 => {
Buffers{
i16_buff: I16Buffer::default(),
u16_buff: U16Buffer{
cpal: vec![0 as u16; cpal_num_samples],
channel: (0..num_channels)
.map(|_| Vec::with_capacity(channel_len))
.collect()},
f32_buff: F32Buffer::default(),
}
}
SampleFormat::F32 => {
Buffers{
i16_buff: I16Buffer::default(),
u16_buff: U16Buffer::default(),
f32_buff: F32Buffer{
cpal: vec![0 as f32; cpal_num_samples],
channel: (0..num_channels)
.map(|_| Vec::with_capacity(channel_len))
.collect()},
}
}
};
2018-10-12 05:54:26 +00:00
2018-10-29 11:57:42 +00:00
sys::set_callback(move |index| unsafe {
2018-10-30 05:50:20 +00:00
//if not playing return early
{
if let Some(s) = cpal_streams.lock().unwrap().get(count - 1){
if let Some(s) = s{
if !s.playing { return (); }
}
}
}
2018-10-29 11:57:42 +00:00
if let Some(ref asio_stream) = asio_streams.lock().unwrap().input {
2018-10-12 05:54:26 +00:00
// Number of samples needed total
let mut callbacks = callbacks.lock().unwrap();
2018-10-30 05:50:20 +00:00
// Theres only a single callback because theres only one event loop
2018-10-12 05:54:26 +00:00
match callbacks.first_mut() {
Some(callback) => {
2018-11-02 11:06:08 +00:00
macro_rules! convert_sample {
($AsioTypeIdent:ident,
u16,
$SampleTypeIdent:ident,
$Sample:expr
) => {
((*$Sample as f64 + $AsioTypeIdent::MAX as f64) /
(::std::u16::MAX as f64 /
::std::AsioTypeIdent::MAX as f64)) as u16
};
($AsioTypeIdent:ident,
$SampleType:ty,
$SampleTypeIdent:ident,
$Sample:expr
) => {
(*$Sample as i64 *
::std::$SampleTypeIdent::MAX as i64 /
::std::$AsioTypeIdent::MAX as i64) as $SampleType
};
};
2018-10-12 05:54:26 +00:00
macro_rules! try_callback {
($SampleFormat:ident,
2018-10-29 11:57:42 +00:00
$SampleType:ty,
$SampleTypeIdent:ident,
$AsioType:ty,
$AsioTypeIdent:ident,
$Buffers:expr,
$BuffersType:ty,
2018-11-01 06:58:50 +00:00
$BuffersTypeIdent:ident,
$Endianness:expr,
$ConvertEndian:expr
2018-10-29 11:57:42 +00:00
) => {
2018-10-12 05:54:26 +00:00
2018-11-01 06:58:50 +00:00
2018-10-12 05:54:26 +00:00
// For each channel write the cpal data to
// the asio buffer
// Also need to check for Endian
2018-10-29 11:57:42 +00:00
for (i, channel) in $Buffers.channel.iter_mut().enumerate(){
let buff_ptr = asio_stream
2018-10-12 05:54:26 +00:00
.buffer_infos[i]
2018-10-29 11:57:42 +00:00
.buffers[index as usize] as *mut $AsioType;
let asio_buffer: &'static [$AsioType] =
std::slice::from_raw_parts(
2018-10-12 05:54:26 +00:00
buff_ptr,
asio_stream.buffer_size as usize);
2018-10-29 11:57:42 +00:00
for asio_s in asio_buffer.iter(){
2018-11-02 11:06:08 +00:00
channel.push( $ConvertEndian(convert_sample!(
$AsioTypeIdent,
$SampleType,
$SampleTypeIdent,
asio_s), $Endianness));
2018-10-29 11:57:42 +00:00
}
}
2018-10-12 05:54:26 +00:00
2018-10-29 11:57:42 +00:00
// interleave all the channels
{
let $BuffersTypeIdent {
cpal: ref mut c_buffer,
channel: ref mut channels,
} = $Buffers;
au::interleave(&channels, c_buffer);
for c in channels.iter_mut() {
c.clear();
}
2018-10-12 05:54:26 +00:00
}
2018-10-29 11:57:42 +00:00
let buff = InputBuffer{
buffer: &mut $Buffers.cpal,
};
callback(
StreamId(count),
StreamData::Input{
buffer: UnknownTypeInputBuffer::$SampleFormat(
::InputBuffer{
buffer: Some(super::super::InputBuffer::Asio(buff))
})
}
);
}
};
2018-10-12 05:54:26 +00:00
// Generic over types
// TODO check for endianess
match stream_type {
sys::AsioSampleType::ASIOSTInt32LSB => {
2018-10-12 12:38:55 +00:00
try_callback!(I16, i16, i16, i32, i32,
2018-11-01 06:58:50 +00:00
buffers.i16_buff, I16Buffer, I16Buffer,
Endian::Little, convert_endian_to);
2018-10-12 05:54:26 +00:00
}
sys::AsioSampleType::ASIOSTInt16LSB => {
2018-10-12 12:38:55 +00:00
try_callback!(I16, i16, i16, i16, i16,
2018-11-01 06:58:50 +00:00
buffers.i16_buff, I16Buffer, I16Buffer,
Endian::Little, convert_endian_to);
}
sys::AsioSampleType::ASIOSTInt32MSB => {
try_callback!(I16, i16, i16, i32, i32,
buffers.i16_buff, I16Buffer, I16Buffer,
Endian::Big, convert_endian_to);
}
sys::AsioSampleType::ASIOSTInt16MSB => {
try_callback!(I16, i16, i16, i16, i16,
buffers.i16_buff, I16Buffer, I16Buffer,
Endian::Big, convert_endian_to);
2018-10-12 05:54:26 +00:00
}
sys::AsioSampleType::ASIOSTFloat32LSB => {
2018-10-12 12:38:55 +00:00
try_callback!(F32, f32, f32, f32, f32,
2018-11-01 06:58:50 +00:00
buffers.f32_buff, F32Buffer, F32Buffer,
Endian::Little, |a, _| a);
2018-10-12 05:54:26 +00:00
}
sys::AsioSampleType::ASIOSTFloat64LSB => {
2018-10-12 12:38:55 +00:00
try_callback!(F32, f32, f32, f64, f64,
2018-11-01 06:58:50 +00:00
buffers.f32_buff, F32Buffer, F32Buffer,
Endian::Little, |a, _| a);
}
sys::AsioSampleType::ASIOSTFloat32MSB => {
try_callback!(F32, f32, f32, f32, f32,
buffers.f32_buff, F32Buffer, F32Buffer,
Endian::Big, |a, _| a);
}
sys::AsioSampleType::ASIOSTFloat64MSB => {
try_callback!(F32, f32, f32, f64, f64,
buffers.f32_buff, F32Buffer, F32Buffer,
Endian::Big, |a, _| a);
2018-10-12 05:54:26 +00:00
}
_ => println!("unsupported format {:?}", stream_type),
}
}
None => return (),
}
}
});
2018-10-30 05:50:20 +00:00
self.cpal_streams.lock().unwrap().push(Some(Stream{ playing: false }));
2018-10-29 11:57:42 +00:00
StreamId(count)
})
2018-10-12 05:54:26 +00:00
}
2018-10-29 11:57:42 +00:00
pub fn build_output_stream(
&self,
device: &Device,
format: &Format,
) -> Result<StreamId, CreationError> {
let Device {
drivers,
..
} = device;
let num_channels = format.channels.clone();
let stream_type = drivers.get_data_type().expect("Couldn't load data type");
2018-11-04 10:23:24 +00:00
self.get_output_stream(&drivers, format).map(|stream_buffer_size| {
2018-10-29 11:57:42 +00:00
let cpal_num_samples = stream_buffer_size * num_channels as usize;
let count = self.stream_count.load(Ordering::SeqCst);
self.stream_count.store(count + 1, Ordering::SeqCst);
let asio_streams = self.asio_streams.clone();
2018-10-30 05:50:20 +00:00
let cpal_streams = self.cpal_streams.clone();
2018-10-29 11:57:42 +00:00
let callbacks = self.callbacks.clone();
// Create buffers
let channel_len = cpal_num_samples
/ num_channels as usize;
let mut re_buffers = match format.data_type{
SampleFormat::I16 => {
Buffers{
i16_buff: I16Buffer{
cpal: vec![0 as i16; cpal_num_samples],
channel: (0..num_channels)
.map(|_| Vec::with_capacity(channel_len))
.collect()},
u16_buff: U16Buffer::default(),
f32_buff: F32Buffer::default(),
}
}
SampleFormat::U16 => {
Buffers{
i16_buff: I16Buffer::default(),
u16_buff: U16Buffer{
cpal: vec![0 as u16; cpal_num_samples],
channel: (0..num_channels)
.map(|_| Vec::with_capacity(channel_len))
.collect()},
f32_buff: F32Buffer::default(),
}
}
SampleFormat::F32 => {
Buffers{
i16_buff: I16Buffer::default(),
u16_buff: U16Buffer::default(),
f32_buff: F32Buffer{
cpal: vec![0 as f32; cpal_num_samples],
channel: (0..num_channels)
.map(|_| Vec::with_capacity(channel_len))
.collect()},
}
}
};
sys::set_callback(move |index| unsafe {
2018-10-30 05:50:20 +00:00
//if not playing return early
{
if let Some(s) = cpal_streams.lock().unwrap().get(count - 1){
if let Some(s) = s{
if !s.playing { return (); }
}
}
}
2018-10-29 11:57:42 +00:00
if let Some(ref asio_stream) = asio_streams.lock().unwrap().output {
// Number of samples needed total
let mut callbacks = callbacks.lock().unwrap();
2018-11-02 11:06:08 +00:00
macro_rules! convert_sample {
($AsioTypeIdent:ident,
$AsioType:ty,
u16,
$Sample:expr
) => {
((*$Sample as i64 *
::std::$AsioTypeIdent::MAX as i64 /
::std::u16::MAX as i64) - $AsioTypeIdent::MAX as i64) as $AsioType
};
($AsioTypeIdent:ident,
$AsioType:ty,
$SampleTypeIdent:ident,
$Sample:expr
) => {
(*$Sample as i64 *
::std::$AsioTypeIdent::MAX as i64 /
::std::$SampleTypeIdent::MAX as i64) as $AsioType
};
};
2018-10-30 05:50:20 +00:00
// Theres only a single callback because theres only one event loop
2018-10-29 11:57:42 +00:00
match callbacks.first_mut() {
Some(callback) => {
macro_rules! try_callback {
($SampleFormat:ident,
$SampleType:ty,
$SampleTypeIdent:ident,
$AsioType:ty,
$AsioTypeIdent:ident,
$Buffers:expr,
$BuffersType:ty,
2018-11-01 06:58:50 +00:00
$BuffersTypeIdent:ident,
$Endianness:expr,
$ConvertEndian:expr
2018-10-29 11:57:42 +00:00
) => {
let mut my_buffers = $Buffers;
{
let buff = OutputBuffer{
buffer: &mut my_buffers.cpal
};
callback(
StreamId(count),
StreamData::Output{
buffer: UnknownTypeOutputBuffer::$SampleFormat(
::OutputBuffer{
target: Some(super::super::OutputBuffer::Asio(buff))
})
}
);
}
// Deinter all the channels
{
let $BuffersTypeIdent {
cpal: ref mut c_buffer,
channel: ref mut channels,
} = my_buffers;
au::deinterleave(&c_buffer[..], channels);
}
2018-10-30 05:50:20 +00:00
let silence = match index {
0 =>{
if !sys::SILENCE_FIRST.load(Ordering::SeqCst) {
sys::SILENCE_FIRST.store(true, Ordering::SeqCst);
sys::SILENCE_SECOND.store(false, Ordering::SeqCst);
true
}else{false}
},
1 =>{
if !sys::SILENCE_SECOND.load(Ordering::SeqCst) {
sys::SILENCE_SECOND.store(true, Ordering::SeqCst);
sys::SILENCE_FIRST.store(false, Ordering::SeqCst);
true
}else{false}
},
_ => unreachable!(),
};
2018-10-29 11:57:42 +00:00
// For each channel write the cpal data to
// the asio buffer
for (i, channel) in my_buffers.channel.iter().enumerate(){
2018-10-29 12:05:13 +00:00
let buff_ptr = asio_stream
2018-10-29 11:57:42 +00:00
.buffer_infos[i]
2018-10-29 12:05:13 +00:00
.buffers[index as usize] as *mut $AsioType;
2018-10-29 11:57:42 +00:00
let asio_buffer: &'static mut [$AsioType] =
std::slice::from_raw_parts_mut(
buff_ptr,
asio_stream.buffer_size as usize);
for (asio_s, cpal_s) in asio_buffer.iter_mut()
.zip(channel){
2018-10-30 05:50:20 +00:00
if silence { *asio_s = 0.0 as $AsioType; }
2018-11-02 11:06:08 +00:00
*asio_s += $ConvertEndian(convert_sample!(
$AsioTypeIdent,
$AsioType,
$SampleTypeIdent,
cpal_s
),
2018-11-01 06:58:50 +00:00
$Endianness);
2018-10-29 11:57:42 +00:00
}
}
};
}
// Generic over types
match stream_type {
sys::AsioSampleType::ASIOSTInt32LSB => {
try_callback!(I16, i16, i16, i32, i32,
2018-11-01 06:58:50 +00:00
&mut re_buffers.i16_buff, I16Buffer, I16Buffer,
Endian::Little, convert_endian_from);
2018-10-29 11:57:42 +00:00
}
sys::AsioSampleType::ASIOSTInt16LSB => {
try_callback!(I16, i16, i16, i16, i16,
2018-11-01 06:58:50 +00:00
&mut re_buffers.i16_buff, I16Buffer, I16Buffer,
Endian::Little, convert_endian_from);
}
sys::AsioSampleType::ASIOSTInt32MSB => {
try_callback!(I16, i16, i16, i32, i32,
&mut re_buffers.i16_buff, I16Buffer, I16Buffer,
Endian::Big, convert_endian_from);
}
sys::AsioSampleType::ASIOSTInt16MSB => {
try_callback!(I16, i16, i16, i16, i16,
&mut re_buffers.i16_buff, I16Buffer, I16Buffer,
Endian::Big, convert_endian_from);
2018-10-29 11:57:42 +00:00
}
sys::AsioSampleType::ASIOSTFloat32LSB => {
try_callback!(F32, f32, f32, f32, f32,
2018-11-01 06:58:50 +00:00
&mut re_buffers.f32_buff, F32Buffer, F32Buffer,
Endian::Little, |a, _| a);
2018-10-29 11:57:42 +00:00
}
sys::AsioSampleType::ASIOSTFloat64LSB => {
try_callback!(F32, f32, f32, f64, f64,
2018-11-01 06:58:50 +00:00
&mut re_buffers.f32_buff, F32Buffer, F32Buffer,
Endian::Little, |a, _| a);
}
sys::AsioSampleType::ASIOSTFloat32MSB => {
try_callback!(F32, f32, f32, f32, f32,
&mut re_buffers.f32_buff, F32Buffer, F32Buffer,
Endian::Big, |a, _| a);
}
sys::AsioSampleType::ASIOSTFloat64MSB => {
try_callback!(F32, f32, f32, f64, f64,
&mut re_buffers.f32_buff, F32Buffer, F32Buffer,
Endian::Big, |a, _| a);
2018-10-29 11:57:42 +00:00
}
_ => println!("unsupported format {:?}", stream_type),
}
}
None => return (),
}
}
});
2018-10-30 05:50:20 +00:00
self.cpal_streams.lock().unwrap().push(Some(Stream{ playing: false }));
2018-10-29 11:57:42 +00:00
StreamId(count)
})
2018-10-12 05:54:26 +00:00
}
2018-10-30 03:27:50 +00:00
2018-10-30 05:50:20 +00:00
pub fn play_stream(&self, stream_id: StreamId) {
let mut streams = self.cpal_streams.lock().unwrap();
if let Some(s) = streams.get_mut(stream_id.0).expect("Bad play stream index") {
s.playing = true;
}
// Calling play when already playing is a no-op
2018-10-12 05:54:26 +00:00
sys::play();
}
2018-10-30 05:50:20 +00:00
pub fn pause_stream(&self, stream_id: StreamId) {
let mut streams = self.cpal_streams.lock().unwrap();
if let Some(s) = streams.get_mut(stream_id.0).expect("Bad pause stream index") {
s.playing = false;
}
let any_playing = streams
.iter()
.filter(|s| if let Some(s) = s {
s.playing
} else {false} )
.next();
if let None = any_playing {
sys::stop();
}
2018-10-12 05:54:26 +00:00
}
2018-10-29 11:57:42 +00:00
2018-10-12 05:54:26 +00:00
pub fn destroy_stream(&self, stream_id: StreamId) {
2018-10-30 03:27:50 +00:00
let mut streams = self.cpal_streams.lock().unwrap();
2018-10-30 05:50:20 +00:00
streams.get_mut(stream_id.0).take();
2018-10-30 03:27:50 +00:00
let count = self.stream_count.load(Ordering::SeqCst);
self.stream_count.store(count - 1, Ordering::SeqCst);
if count == 1 {
*self.asio_streams.lock().unwrap() = sys::AsioStreams{ output: None, input: None };
sys::clean_up();
2018-10-12 05:54:26 +00:00
}
}
2018-10-30 03:27:50 +00:00
2018-10-12 05:54:26 +00:00
pub fn run<F>(&self, mut callback: F) -> !
where
F: FnMut(StreamId, StreamData) + Send,
{
let callback: &mut (FnMut(StreamId, StreamData) + Send) = &mut callback;
self.callbacks
.lock()
.unwrap()
.push(unsafe { mem::transmute(callback) });
loop {
// Might need a sleep here to prevent the loop being
// removed in --release
}
}
}
2018-10-30 03:27:50 +00:00
impl Drop for EventLoop {
fn drop(&mut self) {
sys::clean_up();
}
}
2018-10-12 05:54:26 +00:00
impl<'a, T> InputBuffer<'a, T> {
pub fn buffer(&self) -> &[T] {
&self.buffer
}
pub fn finish(self) {
}
}
impl<'a, T> OutputBuffer<'a, T> {
pub fn buffer(&mut self) -> &mut [T] {
&mut self.buffer
}
pub fn len(&self) -> usize {
self.buffer.len()
}
pub fn finish(self) {}
}
2018-11-01 06:58:50 +00:00
fn convert_endian_to<T: PrimInt>(sample: T, endian: Endian) -> T {
match endian {
Endian::Big => sample.to_be(),
Endian::Little => sample.to_le(),
}
}
fn convert_endian_from<T: PrimInt>(sample: T, endian: Endian) -> T {
match endian {
Endian::Big => T::from_be(sample),
Endian::Little => T::from_le(sample),
}
}