Struct libpulse_binding::sample::Spec [−][src]
A sample format and attribute specification
Fields
format: Format
The sample format.
rate: u32
The sample rate. (e.g. 44100).
channels: u8
Audio channels. (1 for mono, 2 for stereo, ...).
Methods
impl Spec
[src]
impl Spec
pub fn init(&mut self)
[src]
pub fn init(&mut self)
Initialize the specified sample spec.
The sample spec will have a defined state but is_valid
will fail for
it.
pub fn is_valid(&self) -> bool
[src]
pub fn is_valid(&self) -> bool
Returns true
when the sample type specification is valid
pub fn equal_to(&self, to: &Self) -> bool
[src]
pub fn equal_to(&self, to: &Self) -> bool
Returns true
when the two sample type specifications match
pub fn bytes_per_second(&self) -> usize
[src]
pub fn bytes_per_second(&self) -> usize
Returns the amount of bytes that constitute playback of one second of audio, with the specified sample type.
pub fn frame_size(&self) -> usize
[src]
pub fn frame_size(&self) -> usize
Returns the size of a frame
pub fn sample_size(&self) -> usize
[src]
pub fn sample_size(&self) -> usize
Returns the size of a sample
pub fn bytes_to_usec(&self, length: u64) -> MicroSeconds
[src]
pub fn bytes_to_usec(&self, length: u64) -> MicroSeconds
Calculate the time it would take to play a buffer of the specified size. The return value will always be rounded down for non-integral return values.
pub fn usec_to_bytes(&self, t: MicroSeconds) -> usize
[src]
pub fn usec_to_bytes(&self, t: MicroSeconds) -> usize
Calculates the size of a buffer required, for playback duration of the time specified. The return value will always be rounded down for non-integral return values.
pub fn print(&self) -> String
[src]
pub fn print(&self) -> String
Pretty print a sample type specification to a string
Trait Implementations
impl Debug for Spec
[src]
impl Debug for Spec
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Copy for Spec
[src]
impl Copy for Spec
impl Clone for Spec
[src]
impl Clone for Spec
fn clone(&self) -> Spec
[src]
fn clone(&self) -> Spec
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl PartialEq for Spec
[src]
impl PartialEq for Spec
fn eq(&self, other: &Spec) -> bool
[src]
fn eq(&self, other: &Spec) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Spec) -> bool
[src]
fn ne(&self, other: &Spec) -> bool
This method tests for !=
.
impl Eq for Spec
[src]
impl Eq for Spec