mirror of
https://github.com/iluvcapra/bwavfile.git
synced 2025-12-31 08:50:44 +00:00
Documentation and exposure
Documentation in the fmt module has been improved. ReadWaveData trait is now public. The
This commit is contained in:
@@ -379,6 +379,7 @@ impl WaveFmt {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub trait ReadWavAudioData {
|
pub trait ReadWavAudioData {
|
||||||
|
/// Read audio data from the receiver as interleaved [i32] samples.
|
||||||
fn read_i32_frames(
|
fn read_i32_frames(
|
||||||
&mut self,
|
&mut self,
|
||||||
format: WaveFmt,
|
format: WaveFmt,
|
||||||
@@ -393,14 +394,11 @@ pub trait ReadWavAudioData {
|
|||||||
|
|
||||||
impl<T> ReadWavAudioData for T
|
impl<T> ReadWavAudioData for T
|
||||||
where
|
where
|
||||||
T: std::io::Read,
|
T: std::io::Read
|
||||||
{
|
{
|
||||||
/// Reade audio frames into an i32 vector
|
|
||||||
///
|
|
||||||
/// # Panics:
|
/// # Panics:
|
||||||
/// * If the format's [valid bits per sample](WaveFmt::valid_bits_per_sample) is
|
/// * If the format's [valid bits per sample](WaveFmt::valid_bits_per_sample) is
|
||||||
/// not compatible with the format's [bits per sample](WaveFmt::bits_per_sample).
|
/// not compatible with the format's [bits per sample](WaveFmt::bits_per_sample).
|
||||||
///
|
|
||||||
fn read_i32_frames(
|
fn read_i32_frames(
|
||||||
&mut self,
|
&mut self,
|
||||||
format: WaveFmt,
|
format: WaveFmt,
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ pub use common_format::{
|
|||||||
};
|
};
|
||||||
pub use cue::Cue;
|
pub use cue::Cue;
|
||||||
pub use errors::Error;
|
pub use errors::Error;
|
||||||
pub use fmt::{ADMAudioID, ChannelDescriptor, ChannelMask, WaveFmt, WaveFmtExtended};
|
pub use fmt::{ADMAudioID, ChannelDescriptor, ChannelMask, WaveFmt, WaveFmtExtended, ReadWavAudioData};
|
||||||
pub use sample::{Sample, I24};
|
pub use sample::{Sample, I24};
|
||||||
pub use wavereader::{AudioFrameReader, WaveReader};
|
pub use wavereader::{AudioFrameReader, WaveReader};
|
||||||
pub use wavewriter::{AudioFrameWriter, WaveWriter};
|
pub use wavewriter::{AudioFrameWriter, WaveWriter};
|
||||||
|
|||||||
Reference in New Issue
Block a user