ALSA project - the C library reference
|
#include <pcm_ioplug.h>
Callback table of ioplug
int(* snd_pcm_ioplug_callback_t::close) (snd_pcm_ioplug_t *io) |
close the PCM; optional
int(* snd_pcm_ioplug_callback_t::delay) (snd_pcm_ioplug_t *io, snd_pcm_sframes_t *delayp) |
get the delay for the running PCM; optional; since v1.0.1
int(* snd_pcm_ioplug_callback_t::drain) (snd_pcm_ioplug_t *io) |
drain; optional
void(* snd_pcm_ioplug_callback_t::dump) (snd_pcm_ioplug_t *io, snd_output_t *out) |
dump; optional
snd_pcm_chmap_t *(* snd_pcm_ioplug_callback_t::get_chmap) (snd_pcm_ioplug_t *io) |
get the channel map; optional; since v1.0.2
int(* snd_pcm_ioplug_callback_t::hw_free) (snd_pcm_ioplug_t *io) |
hw_free; optional
int(* snd_pcm_ioplug_callback_t::hw_params) (snd_pcm_ioplug_t *io, snd_pcm_hw_params_t *params) |
hw_params; optional
int(* snd_pcm_ioplug_callback_t::pause) (snd_pcm_ioplug_t *io, int enable) |
toggle pause; optional, called inside mutex lock
snd_pcm_sframes_t(* snd_pcm_ioplug_callback_t::pointer) (snd_pcm_ioplug_t *io) |
get the current DMA position; required, called inside mutex lock
int(* snd_pcm_ioplug_callback_t::poll_descriptors) (snd_pcm_ioplug_t *io, struct pollfd *pfd, unsigned int space) |
poll descriptors; optional
int(* snd_pcm_ioplug_callback_t::poll_descriptors_count) (snd_pcm_ioplug_t *io) |
poll descriptors count; optional
int(* snd_pcm_ioplug_callback_t::poll_revents) (snd_pcm_ioplug_t *io, struct pollfd *pfd, unsigned int nfds, unsigned short *revents) |
mangle poll events; optional
int(* snd_pcm_ioplug_callback_t::prepare) (snd_pcm_ioplug_t *io) |
prepare; optional
snd_pcm_chmap_query_t **(* snd_pcm_ioplug_callback_t::query_chmaps) (snd_pcm_ioplug_t *io) |
query the channel maps; optional; since v1.0.2
int(* snd_pcm_ioplug_callback_t::resume) (snd_pcm_ioplug_t *io) |
resume; optional
int(* snd_pcm_ioplug_callback_t::set_chmap) (snd_pcm_ioplug_t *io, const snd_pcm_chmap_t *map) |
set the channel map; optional; since v1.0.2
int(* snd_pcm_ioplug_callback_t::start) (snd_pcm_ioplug_t *io) |
start the PCM; required, called inside mutex lock
int(* snd_pcm_ioplug_callback_t::stop) (snd_pcm_ioplug_t *io) |
stop the PCM; required, called inside mutex lock
int(* snd_pcm_ioplug_callback_t::sw_params) (snd_pcm_ioplug_t *io, snd_pcm_sw_params_t *params) |
sw_params; optional
snd_pcm_sframes_t(* snd_pcm_ioplug_callback_t::transfer) (snd_pcm_ioplug_t *io, const snd_pcm_channel_area_t *areas, snd_pcm_uframes_t offset, snd_pcm_uframes_t size) |
transfer the data; optional, called inside mutex lock