Store the format in the public `Voice` struct
This commit is contained in:
parent
334c22a6f3
commit
8d21f5ff25
|
@ -72,21 +72,6 @@ impl Voice {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn get_channels(&self) -> ::ChannelsCount {
|
|
||||||
self.num_channels
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn get_samples_rate(&self) -> ::SamplesRate {
|
|
||||||
::SamplesRate(44100)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn get_samples_format(&self) -> ::SampleFormat {
|
|
||||||
::SampleFormat::I16
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn append_data<'a, T>(&'a mut self, max_elements: usize) -> Buffer<'a, T> where T: Clone {
|
pub fn append_data<'a, T>(&'a mut self, max_elements: usize) -> Buffer<'a, T> where T: Clone {
|
||||||
let available = {
|
let available = {
|
||||||
let channel = self.channel.lock().unwrap();
|
let channel = self.channel.lock().unwrap();
|
||||||
|
|
|
@ -29,24 +29,6 @@ impl Voice {
|
||||||
new_voice().unwrap()
|
new_voice().unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn get_channels(&self) -> ::ChannelsCount {
|
|
||||||
// TODO: use AudioUnitGetProperty...
|
|
||||||
2
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn get_samples_rate(&self) -> ::SamplesRate {
|
|
||||||
// TODO: use AudioUnitGetProperty...
|
|
||||||
::SamplesRate(44100)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn get_samples_format(&self) -> ::SampleFormat {
|
|
||||||
// TODO: use AudioUnitGetProperty...
|
|
||||||
::SampleFormat::F32
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn append_data<'a, T>(&'a mut self, max_elements: usize) -> Buffer<'a, T> where T: Clone {
|
pub fn append_data<'a, T>(&'a mut self, max_elements: usize) -> Buffer<'a, T> where T: Clone {
|
||||||
// Block until the audio callback is ready for more data.
|
// Block until the audio callback is ready for more data.
|
||||||
loop {
|
loop {
|
||||||
|
|
41
src/lib.rs
41
src/lib.rs
|
@ -267,41 +267,54 @@ impl Error for CreationError {
|
||||||
/// perform a conversion on your data.
|
/// perform a conversion on your data.
|
||||||
///
|
///
|
||||||
/// If you have the possibility, you should try to match the format of the voice.
|
/// If you have the possibility, you should try to match the format of the voice.
|
||||||
pub struct Voice(cpal_impl::Voice);
|
pub struct Voice {
|
||||||
|
voice: cpal_impl::Voice,
|
||||||
|
format: Format,
|
||||||
|
}
|
||||||
|
|
||||||
impl Voice {
|
impl Voice {
|
||||||
/// Builds a new channel.
|
/// Builds a new channel.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn new(endpoint: &Endpoint, format: &Format) -> Result<Voice, CreationError> {
|
pub fn new(endpoint: &Endpoint, format: &Format) -> Result<Voice, CreationError> {
|
||||||
let channel = try!(cpal_impl::Voice::new(&endpoint.0, format));
|
let channel = try!(cpal_impl::Voice::new(&endpoint.0, format));
|
||||||
Ok(Voice(channel))
|
|
||||||
|
Ok(Voice {
|
||||||
|
voice: channel,
|
||||||
|
format: format.clone(),
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the number of channels.
|
/// Returns the format used by the voice.
|
||||||
|
#[inline]
|
||||||
|
pub fn format(&self) -> &Format {
|
||||||
|
&self.format
|
||||||
|
}
|
||||||
|
|
||||||
|
/// DEPRECATED: use `format` instead. Returns the number of channels.
|
||||||
///
|
///
|
||||||
/// You can add data with any number of channels, but matching the voice's native format
|
/// You can add data with any number of channels, but matching the voice's native format
|
||||||
/// will lead to better performances.
|
/// will lead to better performances.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn get_channels(&self) -> ChannelsCount {
|
pub fn get_channels(&self) -> ChannelsCount {
|
||||||
self.0.get_channels()
|
self.format().channels.len() as ChannelsCount
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the number of samples that are played per second.
|
/// DEPRECATED: use `format` instead. Returns the number of samples that are played per second.
|
||||||
///
|
///
|
||||||
/// You can add data with any samples rate, but matching the voice's native format
|
/// You can add data with any samples rate, but matching the voice's native format
|
||||||
/// will lead to better performances.
|
/// will lead to better performances.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn get_samples_rate(&self) -> SamplesRate {
|
pub fn get_samples_rate(&self) -> SamplesRate {
|
||||||
self.0.get_samples_rate()
|
self.format().samples_rate
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the format of the samples that are accepted by the backend.
|
/// DEPRECATED: use `format` instead. Returns the format of the samples that are accepted by the backend.
|
||||||
///
|
///
|
||||||
/// You can add data of any format, but matching the voice's native format
|
/// You can add data of any format, but matching the voice's native format
|
||||||
/// will lead to better performances.
|
/// will lead to better performances.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn get_samples_format(&self) -> SampleFormat {
|
pub fn get_samples_format(&self) -> SampleFormat {
|
||||||
self.0.get_samples_format()
|
self.format().data_type
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Adds some PCM data to the voice's buffer.
|
/// Adds some PCM data to the voice's buffer.
|
||||||
|
@ -328,13 +341,13 @@ impl Voice {
|
||||||
|
|
||||||
match self.get_samples_format() {
|
match self.get_samples_format() {
|
||||||
SampleFormat::U16 => UnknownTypeBuffer::U16(Buffer {
|
SampleFormat::U16 => UnknownTypeBuffer::U16(Buffer {
|
||||||
target: Some(self.0.append_data(max_samples))
|
target: Some(self.voice.append_data(max_samples))
|
||||||
}),
|
}),
|
||||||
SampleFormat::I16 => UnknownTypeBuffer::I16(Buffer {
|
SampleFormat::I16 => UnknownTypeBuffer::I16(Buffer {
|
||||||
target: Some(self.0.append_data(max_samples))
|
target: Some(self.voice.append_data(max_samples))
|
||||||
}),
|
}),
|
||||||
SampleFormat::F32 => UnknownTypeBuffer::F32(Buffer {
|
SampleFormat::F32 => UnknownTypeBuffer::F32(Buffer {
|
||||||
target: Some(self.0.append_data(max_samples))
|
target: Some(self.voice.append_data(max_samples))
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -347,7 +360,7 @@ impl Voice {
|
||||||
/// some glitches.
|
/// some glitches.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn play(&mut self) {
|
pub fn play(&mut self) {
|
||||||
self.0.play()
|
self.voice.play()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Sends a command to the audio device that it should stop playing.
|
/// Sends a command to the audio device that it should stop playing.
|
||||||
|
@ -357,13 +370,13 @@ impl Voice {
|
||||||
/// If you call `play` afterwards, the playback will resume exactly where it was.
|
/// If you call `play` afterwards, the playback will resume exactly where it was.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn pause(&mut self) {
|
pub fn pause(&mut self) {
|
||||||
self.0.pause()
|
self.voice.pause()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns true if the voice has finished reading all the data you sent to it.
|
/// Returns true if the voice has finished reading all the data you sent to it.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn underflowed(&self) -> bool {
|
pub fn underflowed(&self) -> bool {
|
||||||
self.0.underflowed()
|
self.voice.underflowed()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -54,21 +54,6 @@ impl Voice {
|
||||||
Err(CreationError::DeviceNotAvailable)
|
Err(CreationError::DeviceNotAvailable)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn get_channels(&self) -> ::ChannelsCount {
|
|
||||||
unreachable!()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn get_samples_rate(&self) -> ::SamplesRate {
|
|
||||||
unreachable!()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn get_samples_format(&self) -> ::SampleFormat {
|
|
||||||
unreachable!()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn append_data<'a, T>(&'a mut self, _: usize) -> Buffer<'a, T> {
|
pub fn append_data<'a, T>(&'a mut self, _: usize) -> Buffer<'a, T> {
|
||||||
unreachable!()
|
unreachable!()
|
||||||
|
|
|
@ -19,10 +19,7 @@ pub struct Voice {
|
||||||
audio_client: *mut winapi::IAudioClient,
|
audio_client: *mut winapi::IAudioClient,
|
||||||
render_client: *mut winapi::IAudioRenderClient,
|
render_client: *mut winapi::IAudioRenderClient,
|
||||||
max_frames_in_buffer: winapi::UINT32,
|
max_frames_in_buffer: winapi::UINT32,
|
||||||
num_channels: winapi::WORD,
|
|
||||||
bytes_per_frame: winapi::WORD,
|
bytes_per_frame: winapi::WORD,
|
||||||
samples_per_second: winapi::DWORD,
|
|
||||||
bits_per_sample: winapi::WORD,
|
|
||||||
playing: bool,
|
playing: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -147,34 +144,12 @@ impl Voice {
|
||||||
audio_client: audio_client,
|
audio_client: audio_client,
|
||||||
render_client: render_client,
|
render_client: render_client,
|
||||||
max_frames_in_buffer: max_frames_in_buffer,
|
max_frames_in_buffer: max_frames_in_buffer,
|
||||||
num_channels: format.nChannels,
|
|
||||||
bytes_per_frame: format.nBlockAlign,
|
bytes_per_frame: format.nBlockAlign,
|
||||||
samples_per_second: format.nSamplesPerSec,
|
|
||||||
bits_per_sample: format.wBitsPerSample,
|
|
||||||
playing: false,
|
playing: false,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn get_channels(&self) -> ::ChannelsCount {
|
|
||||||
self.num_channels as ::ChannelsCount
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn get_samples_rate(&self) -> ::SamplesRate {
|
|
||||||
::SamplesRate(self.samples_per_second as u32)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn get_samples_format(&self) -> ::SampleFormat {
|
|
||||||
match self.bits_per_sample {
|
|
||||||
16 => ::SampleFormat::I16,
|
|
||||||
32 => ::SampleFormat::F32,
|
|
||||||
_ => panic!("{}-bit format not yet supported", self.bits_per_sample),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn append_data<'a, T>(&'a mut self, max_elements: usize) -> Buffer<'a, T> {
|
pub fn append_data<'a, T>(&'a mut self, max_elements: usize) -> Buffer<'a, T> {
|
||||||
unsafe {
|
unsafe {
|
||||||
// obtaining the number of frames that are available to be written
|
// obtaining the number of frames that are available to be written
|
||||||
|
|
Loading…
Reference in New Issue