Struct libpulse_binding::format::Info[][src]

pub struct Info { /* fields omitted */ }

Represents the format of data provided in a stream or processed by a sink.

Methods

impl Info
[src]

Allocates a new Info structure.

Clients must initialise at least the encoding field themselves. Returns None on failure.

Parse a human-readable string of the form generated by print into an Info structure.

Returns None on failure.

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.

Returns whether the Info structure is valid.

Returns whether the Info structure represents a PCM (i.e. uncompressed data) format.

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.

Return a human-readable string representing the given format.

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.

Get the encoding.

Set the encoding attribute.

Get an immutable reference to the property list.

Get a mutable reference to the property list.

Gets the type of property key.

Gets an integer property.

Gets an integer range property. On success, returns min-max tuple.

Gets an integer array property.

Returns None on error.

Gets a string property.

Gets a string array property.

Sets an integer property.

Sets a property with a list of integer values.

Sets a property which can have any value in a given integer range.

Sets a string property.

Sets a property with a list of string values.

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.

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.

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.

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.

Trait Implementations

impl Debug for Info
[src]

Formats the value using the given formatter. Read more

impl Drop for Info
[src]

Executes the destructor for this type. Read more

impl Clone for Info
[src]

Returns a new Info struct and representing the same format. If this is called on a 'weak' instance, a non-weak object is returned.

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for Info

impl !Sync for Info