| 
    ALSA project - the C library reference
    
   | 
 
Functions | |
| int | snd_pcm_format_signed (snd_pcm_format_t format) | 
| Return sign info for a PCM sample linear format.  More... | |
| int | snd_pcm_format_unsigned (snd_pcm_format_t format) | 
| Return sign info for a PCM sample linear format.  More... | |
| int | snd_pcm_format_linear (snd_pcm_format_t format) | 
| Return linear info for a PCM sample format.  More... | |
| int | snd_pcm_format_float (snd_pcm_format_t format) | 
| Return float info for a PCM sample format.  More... | |
| int | snd_pcm_format_little_endian (snd_pcm_format_t format) | 
| Return endian info for a PCM sample format.  More... | |
| int | snd_pcm_format_big_endian (snd_pcm_format_t format) | 
| Return endian info for a PCM sample format.  More... | |
| int | snd_pcm_format_cpu_endian (snd_pcm_format_t format) | 
| Return endian info for a PCM sample format.  More... | |
| int | snd_pcm_format_width (snd_pcm_format_t format) | 
| Return the bit-width of the format.  More... | |
| int | snd_pcm_format_physical_width (snd_pcm_format_t format) | 
| Return the physical bit-width of the format (bits needed to store a PCM sample)  More... | |
| snd_pcm_format_t | snd_pcm_build_linear_format (int width, int pwidth, int unsignd, int big_endian) | 
| Compose a PCM sample linear format.  More... | |
| ssize_t | snd_pcm_format_size (snd_pcm_format_t format, size_t samples) | 
| Return bytes needed to store a quantity of PCM sample.  More... | |
| uint8_t | snd_pcm_format_silence (snd_pcm_format_t format) | 
| Return 8 bit expressing silence for a PCM sample format.  More... | |
| uint16_t | snd_pcm_format_silence_16 (snd_pcm_format_t format) | 
| Return 16 bit expressing silence for a PCM sample format.  More... | |
| uint32_t | snd_pcm_format_silence_32 (snd_pcm_format_t format) | 
| Return 32 bit expressing silence for a PCM sample format.  More... | |
| uint64_t | snd_pcm_format_silence_64 (snd_pcm_format_t format) | 
| Return 64 bit expressing silence for a PCM sample format.  More... | |
| int | snd_pcm_format_set_silence (snd_pcm_format_t format, void *buf, unsigned int samples) | 
| Silence a PCM samples buffer.  More... | |
| snd_pcm_sframes_t | snd_pcm_bytes_to_frames (snd_pcm_t *pcm, ssize_t bytes) | 
| Convert bytes in frames for a PCM.  More... | |
| ssize_t | snd_pcm_frames_to_bytes (snd_pcm_t *pcm, snd_pcm_sframes_t frames) | 
| Convert frames in bytes for a PCM.  More... | |
| long | snd_pcm_bytes_to_samples (snd_pcm_t *pcm, ssize_t bytes) | 
| Convert bytes in samples for a PCM.  More... | |
| ssize_t | snd_pcm_samples_to_bytes (snd_pcm_t *pcm, long samples) | 
| Convert samples in bytes for a PCM.  More... | |
| int | snd_pcm_area_silence (const snd_pcm_channel_area_t *dst_channel, snd_pcm_uframes_t dst_offset, unsigned int samples, snd_pcm_format_t format) | 
| Silence an area.  More... | |
| int | snd_pcm_areas_silence (const snd_pcm_channel_area_t *dst_channels, snd_pcm_uframes_t dst_offset, unsigned int channels, snd_pcm_uframes_t frames, snd_pcm_format_t format) | 
| Silence one or more areas.  More... | |
| int | snd_pcm_area_copy (const snd_pcm_channel_area_t *dst_channel, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t *src_channel, snd_pcm_uframes_t src_offset, unsigned int samples, snd_pcm_format_t format) | 
| Copy an area.  More... | |
| int | snd_pcm_areas_copy (const snd_pcm_channel_area_t *dst_channels, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t *src_channels, snd_pcm_uframes_t src_offset, unsigned int channels, snd_pcm_uframes_t frames, snd_pcm_format_t format) | 
| Copy one or more areas.  More... | |
| int | snd_pcm_areas_copy_wrap (const snd_pcm_channel_area_t *dst_channels, snd_pcm_uframes_t dst_offset, const snd_pcm_uframes_t dst_size, const snd_pcm_channel_area_t *src_channels, snd_pcm_uframes_t src_offset, const snd_pcm_uframes_t src_size, const unsigned int channels, snd_pcm_uframes_t frames, const snd_pcm_format_t format) | 
| Copy one or more areas.  More... | |
See the PCM (digital audio) interface page for more details.
| int snd_pcm_area_copy | ( | const snd_pcm_channel_area_t * | dst_area, | 
| snd_pcm_uframes_t | dst_offset, | ||
| const snd_pcm_channel_area_t * | src_area, | ||
| snd_pcm_uframes_t | src_offset, | ||
| unsigned int | samples, | ||
| snd_pcm_format_t | format | ||
| ) | 
Copy an area.
| dst_area | destination area specification | 
| dst_offset | offset in frames inside destination area | 
| src_area | source area specification | 
| src_offset | offset in frames inside source area | 
| samples | samples to copy | 
| format | PCM sample format | 
| int snd_pcm_area_silence | ( | const snd_pcm_channel_area_t * | dst_area, | 
| snd_pcm_uframes_t | dst_offset, | ||
| unsigned int | samples, | ||
| snd_pcm_format_t | format | ||
| ) | 
Silence an area.
| dst_area | area specification | 
| dst_offset | offset in frames inside area | 
| samples | samples to silence | 
| format | PCM sample format | 
| int snd_pcm_areas_copy | ( | const snd_pcm_channel_area_t * | dst_areas, | 
| snd_pcm_uframes_t | dst_offset, | ||
| const snd_pcm_channel_area_t * | src_areas, | ||
| snd_pcm_uframes_t | src_offset, | ||
| unsigned int | channels, | ||
| snd_pcm_uframes_t | frames, | ||
| snd_pcm_format_t | format | ||
| ) | 
Copy one or more areas.
| dst_areas | destination areas specification (one for each channel) | 
| dst_offset | offset in frames inside destination area | 
| src_areas | source areas specification (one for each channel) | 
| src_offset | offset in frames inside source area | 
| channels | channels count | 
| frames | frames to copy | 
| format | PCM sample format | 
| int snd_pcm_areas_copy_wrap | ( | const snd_pcm_channel_area_t * | dst_channels, | 
| snd_pcm_uframes_t | dst_offset, | ||
| const snd_pcm_uframes_t | dst_size, | ||
| const snd_pcm_channel_area_t * | src_channels, | ||
| snd_pcm_uframes_t | src_offset, | ||
| const snd_pcm_uframes_t | src_size, | ||
| const unsigned int | channels, | ||
| snd_pcm_uframes_t | frames, | ||
| const snd_pcm_format_t | format | ||
| ) | 
Copy one or more areas.
| dst_channels | destination areas specification (one for each channel) | 
| dst_offset | offset in frames inside destination area | 
| dst_size | size in frames of the destination buffer | 
| src_channels | source areas specification (one for each channel) | 
| src_offset | offset in frames inside source area | 
| src_size | size in frames of the source buffer | 
| channels | channels count | 
| frames | frames to copy | 
| format | PCM sample format | 
| int snd_pcm_areas_silence | ( | const snd_pcm_channel_area_t * | dst_areas, | 
| snd_pcm_uframes_t | dst_offset, | ||
| unsigned int | channels, | ||
| snd_pcm_uframes_t | frames, | ||
| snd_pcm_format_t | format | ||
| ) | 
Silence one or more areas.
| dst_areas | areas specification (one for each channel) | 
| dst_offset | offset in frames inside area | 
| channels | channels count | 
| frames | frames to silence | 
| format | PCM sample format | 
| snd_pcm_format_t snd_pcm_build_linear_format | ( | int | width, | 
| int | pwidth, | ||
| int | unsignd, | ||
| int | big_endian | ||
| ) | 
Compose a PCM sample linear format.
| width | Nominal bits per sample | 
| pwidth | Physical bit width of the format | 
| unsignd | Sign: 0 signed, 1 unsigned | 
| big_endian | Endian: 0 little endian, 1 big endian | 
| snd_pcm_sframes_t snd_pcm_bytes_to_frames | ( | snd_pcm_t * | pcm, | 
| ssize_t | bytes | ||
| ) | 
Convert bytes in frames for a PCM.
| pcm | PCM handle | 
| bytes | quantity in bytes | 
| long snd_pcm_bytes_to_samples | ( | snd_pcm_t * | pcm, | 
| ssize_t | bytes | ||
| ) | 
Convert bytes in samples for a PCM.
| pcm | PCM handle | 
| bytes | quantity in bytes | 
| int snd_pcm_format_big_endian | ( | snd_pcm_format_t | format | ) | 
Return endian info for a PCM sample format.
| format | Format | 
| int snd_pcm_format_cpu_endian | ( | snd_pcm_format_t | format | ) | 
Return endian info for a PCM sample format.
| format | Format | 
| int snd_pcm_format_float | ( | snd_pcm_format_t | format | ) | 
Return float info for a PCM sample format.
| format | Format | 
| int snd_pcm_format_linear | ( | snd_pcm_format_t | format | ) | 
Return linear info for a PCM sample format.
| format | Format | 
| int snd_pcm_format_little_endian | ( | snd_pcm_format_t | format | ) | 
Return endian info for a PCM sample format.
| format | Format | 
| int snd_pcm_format_physical_width | ( | snd_pcm_format_t | format | ) | 
Return the physical bit-width of the format (bits needed to store a PCM sample)
| format | Sample format | 
| int snd_pcm_format_set_silence | ( | snd_pcm_format_t | format, | 
| void * | data, | ||
| unsigned int | samples | ||
| ) | 
Silence a PCM samples buffer.
| format | Sample format | 
| data | Buffer | 
| samples | Samples count | 
| int snd_pcm_format_signed | ( | snd_pcm_format_t | format | ) | 
Return sign info for a PCM sample linear format.
| format | Format | 
| uint8_t snd_pcm_format_silence | ( | snd_pcm_format_t | format | ) | 
Return 8 bit expressing silence for a PCM sample format.
| format | Sample format | 
| uint16_t snd_pcm_format_silence_16 | ( | snd_pcm_format_t | format | ) | 
Return 16 bit expressing silence for a PCM sample format.
| format | Sample format | 
| uint32_t snd_pcm_format_silence_32 | ( | snd_pcm_format_t | format | ) | 
Return 32 bit expressing silence for a PCM sample format.
| format | Sample format | 
| uint64_t snd_pcm_format_silence_64 | ( | snd_pcm_format_t | format | ) | 
Return 64 bit expressing silence for a PCM sample format.
| format | Sample format | 
| ssize_t snd_pcm_format_size | ( | snd_pcm_format_t | format, | 
| size_t | samples | ||
| ) | 
Return bytes needed to store a quantity of PCM sample.
| format | Sample format | 
| samples | Samples count | 
| int snd_pcm_format_unsigned | ( | snd_pcm_format_t | format | ) | 
Return sign info for a PCM sample linear format.
| format | Format | 
| int snd_pcm_format_width | ( | snd_pcm_format_t | format | ) | 
Return the bit-width of the format.
| format | Sample format | 
| ssize_t snd_pcm_frames_to_bytes | ( | snd_pcm_t * | pcm, | 
| snd_pcm_sframes_t | frames | ||
| ) | 
Convert frames in bytes for a PCM.
| pcm | PCM handle | 
| frames | quantity in frames | 
| ssize_t snd_pcm_samples_to_bytes | ( | snd_pcm_t * | pcm, | 
| long | samples | ||
| ) | 
Convert samples in bytes for a PCM.
| pcm | PCM handle | 
| samples | quantity in samples |