Struct libpulse_binding::format::Info
source · pub struct Info { /* private fields */ }Expand description
Represents the format of data provided in a stream or processed by a sink.
Implementations
sourceimpl Info
impl Info
sourcepub fn new() -> Option<Self>
pub fn new() -> Option<Self>
Allocates a new Info structure.
Clients must initialise at least the encoding field themselves. Returns None on failure.
sourcepub fn new_from_string(s: &str) -> Option<Self>
pub fn new_from_string(s: &str) -> Option<Self>
Parse a human-readable string of the form generated by print into an
Info structure.
Returns None on failure.
sourcepub fn new_from_sample_spec(ss: &Spec, map: Option<&Map>) -> Option<Self>
pub fn new_from_sample_spec(ss: &Spec, map: Option<&Map>) -> Option<Self>
Utility function to take a ::sample::Spec and generate the corresponding Info.
Note that if you want the server to choose some of the stream parameters, for example the
sample rate, so that they match the device parameters, then you shouldn’t use this function.
In order to allow the server to choose a parameter value, that parameter must be left
unspecified in the Info object, and this function always specifies all parameters. An
exception is the channel map: if you pass None for the channel map, then the channel map
will be left unspecified, allowing the server to choose it.
Returns None on failure.
sourcepub fn is_pcm(&self) -> bool
pub fn is_pcm(&self) -> bool
Returns whether the Info structure represents a PCM (i.e. uncompressed data) format.
sourcepub fn is_compatible_with(&self, with: &Self) -> bool
pub fn is_compatible_with(&self, with: &Self) -> bool
Returns whether the format represented by self is a subset of the format represented by
with. This means that with must have all the fields that self does, but the reverse need
not be true. This is typically expected to be used to check if a stream’s format is
compatible with a given sink. In such a case, self would be the sink’s format and with
would be the streams.
sourcepub fn to_sample_spec(&self, ss: &mut Spec, map: &mut Map) -> Result<(), PAErr>
pub fn to_sample_spec(&self, ss: &mut Spec, map: &mut Map) -> Result<(), PAErr>
Utility function to generate a ::sample::Spec and ::channelmap::Map corresponding to
a given Info.
The conversion for PCM formats is straight-forward. For non-PCM formats, if there is a fixed size-time conversion (i.e. all IEC61937-encapsulated formats), a “fake” sample spec whose size-time conversion corresponds to this format is provided and the channel map argument is ignored. For formats with variable size-time conversion, this function will fail.
sourcepub fn get_encoding(&self) -> Encoding
pub fn get_encoding(&self) -> Encoding
Get the encoding.
sourcepub fn set_encoding(&mut self, encoding: Encoding)
pub fn set_encoding(&mut self, encoding: Encoding)
Set the encoding attribute.
sourcepub fn get_properties(&self) -> &Proplist
pub fn get_properties(&self) -> &Proplist
Get an immutable reference to the property list.
sourcepub fn get_properties_mut(&mut self) -> &mut Proplist
pub fn get_properties_mut(&mut self) -> &mut Proplist
Get a mutable reference to the property list.
sourcepub fn get_prop_type(&self, key: &str) -> PropType
pub fn get_prop_type(&self, key: &str) -> PropType
Gets the type of property key.
sourcepub fn get_prop_int_range(&self, key: &str) -> Result<(i32, i32), PAErr>
pub fn get_prop_int_range(&self, key: &str) -> Result<(i32, i32), PAErr>
Gets an integer range property. On success, returns min-max tuple.
sourcepub fn get_prop_int_array(&self, key: &str) -> Option<Vec<i32>>
pub fn get_prop_int_array(&self, key: &str) -> Option<Vec<i32>>
Gets an integer array property.
Returns None on error.
sourcepub fn get_prop_string(&self, key: &str) -> Option<String>
pub fn get_prop_string(&self, key: &str) -> Option<String>
Gets a string property.
sourcepub fn get_prop_string_array(&self, key: &str) -> Option<Vec<String>>
pub fn get_prop_string_array(&self, key: &str) -> Option<Vec<String>>
Gets a string array property.
sourcepub fn set_prop_int(&mut self, key: &str, value: i32)
pub fn set_prop_int(&mut self, key: &str, value: i32)
Sets an integer property.
sourcepub fn set_prop_int_array(&mut self, key: &str, values: &[i32])
pub fn set_prop_int_array(&mut self, key: &str, values: &[i32])
Sets a property with a list of integer values.
sourcepub fn set_prop_int_range(&mut self, key: &str, min: i32, max: i32)
pub fn set_prop_int_range(&mut self, key: &str, min: i32, max: i32)
Sets a property which can have any value in a given integer range.
sourcepub fn set_prop_string(&mut self, key: &str, value: &str)
pub fn set_prop_string(&mut self, key: &str, value: &str)
Sets a string property.
sourcepub fn set_prop_string_array(&mut self, key: &str, values: &[&str])
pub fn set_prop_string_array(&mut self, key: &str, values: &[&str])
Sets a property with a list of string values.
sourcepub fn set_sample_format(&mut self, sf: Format)
pub fn set_sample_format(&mut self, sf: Format)
Convenience method to set the sample format as a property.
Note for PCM: If the sample format is left unspecified in the Info object, then the server
will select the stream sample format. In that case the stream sample format will most likely
match the device sample format, meaning that sample format conversion will be avoided.
sourcepub fn set_rate(&mut self, rate: i32)
pub fn set_rate(&mut self, rate: i32)
Convenience method to set the sampling rate as a property.
Note for PCM: If the sample rate is left unspecified in the Info object, then the server
will select the stream sample rate. In that case the stream sample rate will most likely
match the device sample rate, meaning that sample rate conversion will be avoided.
sourcepub fn set_channels(&mut self, channels: u32)
pub fn set_channels(&mut self, channels: u32)
Convenience method to set the number of channels as a property.
Note for PCM: If the channel count is left unspecified in the Info object, then the server
will select the stream channel count. In that case the stream channel count will most likely
match the device channel count, meaning that up/downmixing will be avoided.
sourcepub fn set_channel_map(&mut self, map: &Map)
pub fn set_channel_map(&mut self, map: &Map)
Convenience method to set the channel map as a property.
Note for PCM: If the channel map is left unspecified in the Info object, then the server
will select the stream channel map. In that case the stream channel map will most likely
match the device channel map, meaning that remixing will be avoided.