Path: blob/master/thirdparty/linuxbsd_headers/alsa/control.h
9898 views
/**1* \file include/control.h2* \brief Application interface library for the ALSA driver3* \author Jaroslav Kysela <[email protected]>4* \author Abramo Bagnara <[email protected]>5* \author Takashi Iwai <[email protected]>6* \date 1998-20017*8* Application interface library for the ALSA driver9*/10/*11* This library is free software; you can redistribute it and/or modify12* it under the terms of the GNU Lesser General Public License as13* published by the Free Software Foundation; either version 2.1 of14* the License, or (at your option) any later version.15*16* This program is distributed in the hope that it will be useful,17* but WITHOUT ANY WARRANTY; without even the implied warranty of18* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the19* GNU Lesser General Public License for more details.20*21* You should have received a copy of the GNU Lesser General Public22* License along with this library; if not, write to the Free Software23* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA24*25*/2627#ifndef __ALSA_CONTROL_H28#define __ALSA_CONTROL_H2930#ifdef __cplusplus31extern "C" {32#endif3334/**35* \defgroup Control Control Interface36* The control interface.37* See \ref control page for more details.38* \{39*/4041/** dlsym version for interface entry callback */42#define SND_CONTROL_DLSYM_VERSION _dlsym_control_0014344/** IEC958 structure */45typedef struct snd_aes_iec958 {46unsigned char status[24]; /**< AES/IEC958 channel status bits */47unsigned char subcode[147]; /**< AES/IEC958 subcode bits */48unsigned char pad; /**< nothing */49unsigned char dig_subframe[4]; /**< AES/IEC958 subframe bits */50} snd_aes_iec958_t;5152/** CTL card info container */53typedef struct _snd_ctl_card_info snd_ctl_card_info_t;5455/** CTL element identifier container */56typedef struct _snd_ctl_elem_id snd_ctl_elem_id_t;5758/** CTL element identifier list container */59typedef struct _snd_ctl_elem_list snd_ctl_elem_list_t;6061/** CTL element info container */62typedef struct _snd_ctl_elem_info snd_ctl_elem_info_t;6364/** CTL element value container */65typedef struct _snd_ctl_elem_value snd_ctl_elem_value_t;6667/** CTL event container */68typedef struct _snd_ctl_event snd_ctl_event_t;6970/** CTL element type */71typedef enum _snd_ctl_elem_type {72/** Invalid type */73SND_CTL_ELEM_TYPE_NONE = 0,74/** Boolean contents */75SND_CTL_ELEM_TYPE_BOOLEAN,76/** Integer contents */77SND_CTL_ELEM_TYPE_INTEGER,78/** Enumerated contents */79SND_CTL_ELEM_TYPE_ENUMERATED,80/** Bytes contents */81SND_CTL_ELEM_TYPE_BYTES,82/** IEC958 (S/PDIF) setting content */83SND_CTL_ELEM_TYPE_IEC958,84/** 64-bit integer contents */85SND_CTL_ELEM_TYPE_INTEGER64,86SND_CTL_ELEM_TYPE_LAST = SND_CTL_ELEM_TYPE_INTEGER6487} snd_ctl_elem_type_t;8889/** CTL related interface */90typedef enum _snd_ctl_elem_iface {91/** Card level */92SND_CTL_ELEM_IFACE_CARD = 0,93/** Hardware dependent device */94SND_CTL_ELEM_IFACE_HWDEP,95/** Mixer */96SND_CTL_ELEM_IFACE_MIXER,97/** PCM */98SND_CTL_ELEM_IFACE_PCM,99/** RawMidi */100SND_CTL_ELEM_IFACE_RAWMIDI,101/** Timer */102SND_CTL_ELEM_IFACE_TIMER,103/** Sequencer */104SND_CTL_ELEM_IFACE_SEQUENCER,105SND_CTL_ELEM_IFACE_LAST = SND_CTL_ELEM_IFACE_SEQUENCER106} snd_ctl_elem_iface_t;107108/** Event class */109typedef enum _snd_ctl_event_type {110/** Elements related event */111SND_CTL_EVENT_ELEM = 0,112SND_CTL_EVENT_LAST = SND_CTL_EVENT_ELEM113}snd_ctl_event_type_t;114115/** Element has been removed (Warning: test this first and if set don't116* test the other masks) \hideinitializer */117#define SND_CTL_EVENT_MASK_REMOVE (~0U)118/** Element value has been changed \hideinitializer */119#define SND_CTL_EVENT_MASK_VALUE (1<<0)120/** Element info has been changed \hideinitializer */121#define SND_CTL_EVENT_MASK_INFO (1<<1)122/** Element has been added \hideinitializer */123#define SND_CTL_EVENT_MASK_ADD (1<<2)124/** Element's TLV value has been changed \hideinitializer */125#define SND_CTL_EVENT_MASK_TLV (1<<3)126127/** CTL name helper */128#define SND_CTL_NAME_NONE ""129/** CTL name helper */130#define SND_CTL_NAME_PLAYBACK "Playback "131/** CTL name helper */132#define SND_CTL_NAME_CAPTURE "Capture "133134/** CTL name helper */135#define SND_CTL_NAME_IEC958_NONE ""136/** CTL name helper */137#define SND_CTL_NAME_IEC958_SWITCH "Switch"138/** CTL name helper */139#define SND_CTL_NAME_IEC958_VOLUME "Volume"140/** CTL name helper */141#define SND_CTL_NAME_IEC958_DEFAULT "Default"142/** CTL name helper */143#define SND_CTL_NAME_IEC958_MASK "Mask"144/** CTL name helper */145#define SND_CTL_NAME_IEC958_CON_MASK "Con Mask"146/** CTL name helper */147#define SND_CTL_NAME_IEC958_PRO_MASK "Pro Mask"148/** CTL name helper */149#define SND_CTL_NAME_IEC958_PCM_STREAM "PCM Stream"150/** Element name for IEC958 (S/PDIF) */151#define SND_CTL_NAME_IEC958(expl,direction,what) "IEC958 " expl SND_CTL_NAME_##direction SND_CTL_NAME_IEC958_##what152153/** Mask for the major Power State identifier */154#define SND_CTL_POWER_MASK 0xff00155/** ACPI/PCI Power State D0 */156#define SND_CTL_POWER_D0 0x0000157/** ACPI/PCI Power State D1 */158#define SND_CTL_POWER_D1 0x0100159/** ACPI/PCI Power State D2 */160#define SND_CTL_POWER_D2 0x0200161/** ACPI/PCI Power State D3 */162#define SND_CTL_POWER_D3 0x0300163/** ACPI/PCI Power State D3hot */164#define SND_CTL_POWER_D3hot (SND_CTL_POWER_D3|0x0000)165/** ACPI/PCI Power State D3cold */166#define SND_CTL_POWER_D3cold (SND_CTL_POWER_D3|0x0001)167168/** TLV type - Container */169#define SND_CTL_TLVT_CONTAINER 0x0000170/** TLV type - basic dB scale */171#define SND_CTL_TLVT_DB_SCALE 0x0001172/** TLV type - linear volume */173#define SND_CTL_TLVT_DB_LINEAR 0x0002174/** TLV type - dB range container */175#define SND_CTL_TLVT_DB_RANGE 0x0003176/** TLV type - dB scale specified by min/max values */177#define SND_CTL_TLVT_DB_MINMAX 0x0004178/** TLV type - dB scale specified by min/max values (with mute) */179#define SND_CTL_TLVT_DB_MINMAX_MUTE 0x0005180181/** Mute state */182#define SND_CTL_TLV_DB_GAIN_MUTE -9999999183184/** TLV type - fixed channel map positions */185#define SND_CTL_TLVT_CHMAP_FIXED 0x00101186/** TLV type - freely swappable channel map positions */187#define SND_CTL_TLVT_CHMAP_VAR 0x00102188/** TLV type - pair-wise swappable channel map positions */189#define SND_CTL_TLVT_CHMAP_PAIRED 0x00103190191/** CTL type */192typedef enum _snd_ctl_type {193/** Kernel level CTL */194SND_CTL_TYPE_HW,195/** Shared memory client CTL */196SND_CTL_TYPE_SHM,197/** INET client CTL (not yet implemented) */198SND_CTL_TYPE_INET,199/** External control plugin */200SND_CTL_TYPE_EXT201} snd_ctl_type_t;202203/** Non blocking mode (flag for open mode) \hideinitializer */204#define SND_CTL_NONBLOCK 0x0001205206/** Async notification (flag for open mode) \hideinitializer */207#define SND_CTL_ASYNC 0x0002208209/** Read only (flag for open mode) \hideinitializer */210#define SND_CTL_READONLY 0x0004211212/** CTL handle */213typedef struct _snd_ctl snd_ctl_t;214215/** Don't destroy the ctl handle when close */216#define SND_SCTL_NOFREE 0x0001217218/** SCTL type */219typedef struct _snd_sctl snd_sctl_t;220221int snd_card_load(int card);222int snd_card_next(int *card);223int snd_card_get_index(const char *name);224int snd_card_get_name(int card, char **name);225int snd_card_get_longname(int card, char **name);226227int snd_device_name_hint(int card, const char *iface, void ***hints);228int snd_device_name_free_hint(void **hints);229char *snd_device_name_get_hint(const void *hint, const char *id);230231int snd_ctl_open(snd_ctl_t **ctl, const char *name, int mode);232int snd_ctl_open_lconf(snd_ctl_t **ctl, const char *name, int mode, snd_config_t *lconf);233int snd_ctl_open_fallback(snd_ctl_t **ctl, snd_config_t *root, const char *name, const char *orig_name, int mode);234int snd_ctl_close(snd_ctl_t *ctl);235int snd_ctl_nonblock(snd_ctl_t *ctl, int nonblock);236static __inline__ int snd_ctl_abort(snd_ctl_t *ctl) { return snd_ctl_nonblock(ctl, 2); }237int snd_async_add_ctl_handler(snd_async_handler_t **handler, snd_ctl_t *ctl,238snd_async_callback_t callback, void *private_data);239snd_ctl_t *snd_async_handler_get_ctl(snd_async_handler_t *handler);240int snd_ctl_poll_descriptors_count(snd_ctl_t *ctl);241int snd_ctl_poll_descriptors(snd_ctl_t *ctl, struct pollfd *pfds, unsigned int space);242int snd_ctl_poll_descriptors_revents(snd_ctl_t *ctl, struct pollfd *pfds, unsigned int nfds, unsigned short *revents);243int snd_ctl_subscribe_events(snd_ctl_t *ctl, int subscribe);244int snd_ctl_card_info(snd_ctl_t *ctl, snd_ctl_card_info_t *info);245int snd_ctl_elem_list(snd_ctl_t *ctl, snd_ctl_elem_list_t *list);246int snd_ctl_elem_info(snd_ctl_t *ctl, snd_ctl_elem_info_t *info);247int snd_ctl_elem_read(snd_ctl_t *ctl, snd_ctl_elem_value_t *data);248int snd_ctl_elem_write(snd_ctl_t *ctl, snd_ctl_elem_value_t *data);249int snd_ctl_elem_lock(snd_ctl_t *ctl, snd_ctl_elem_id_t *id);250int snd_ctl_elem_unlock(snd_ctl_t *ctl, snd_ctl_elem_id_t *id);251int snd_ctl_elem_tlv_read(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id,252unsigned int *tlv, unsigned int tlv_size);253int snd_ctl_elem_tlv_write(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id,254const unsigned int *tlv);255int snd_ctl_elem_tlv_command(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id,256const unsigned int *tlv);257#ifdef __ALSA_HWDEP_H258int snd_ctl_hwdep_next_device(snd_ctl_t *ctl, int * device);259int snd_ctl_hwdep_info(snd_ctl_t *ctl, snd_hwdep_info_t * info);260#endif261#ifdef __ALSA_PCM_H262int snd_ctl_pcm_next_device(snd_ctl_t *ctl, int *device);263int snd_ctl_pcm_info(snd_ctl_t *ctl, snd_pcm_info_t * info);264int snd_ctl_pcm_prefer_subdevice(snd_ctl_t *ctl, int subdev);265#endif266#ifdef __ALSA_RAWMIDI_H267int snd_ctl_rawmidi_next_device(snd_ctl_t *ctl, int * device);268int snd_ctl_rawmidi_info(snd_ctl_t *ctl, snd_rawmidi_info_t * info);269int snd_ctl_rawmidi_prefer_subdevice(snd_ctl_t *ctl, int subdev);270#endif271int snd_ctl_set_power_state(snd_ctl_t *ctl, unsigned int state);272int snd_ctl_get_power_state(snd_ctl_t *ctl, unsigned int *state);273274int snd_ctl_read(snd_ctl_t *ctl, snd_ctl_event_t *event);275int snd_ctl_wait(snd_ctl_t *ctl, int timeout);276const char *snd_ctl_name(snd_ctl_t *ctl);277snd_ctl_type_t snd_ctl_type(snd_ctl_t *ctl);278279const char *snd_ctl_elem_type_name(snd_ctl_elem_type_t type);280const char *snd_ctl_elem_iface_name(snd_ctl_elem_iface_t iface);281const char *snd_ctl_event_type_name(snd_ctl_event_type_t type);282283unsigned int snd_ctl_event_elem_get_mask(const snd_ctl_event_t *obj);284unsigned int snd_ctl_event_elem_get_numid(const snd_ctl_event_t *obj);285void snd_ctl_event_elem_get_id(const snd_ctl_event_t *obj, snd_ctl_elem_id_t *ptr);286snd_ctl_elem_iface_t snd_ctl_event_elem_get_interface(const snd_ctl_event_t *obj);287unsigned int snd_ctl_event_elem_get_device(const snd_ctl_event_t *obj);288unsigned int snd_ctl_event_elem_get_subdevice(const snd_ctl_event_t *obj);289const char *snd_ctl_event_elem_get_name(const snd_ctl_event_t *obj);290unsigned int snd_ctl_event_elem_get_index(const snd_ctl_event_t *obj);291292int snd_ctl_elem_list_alloc_space(snd_ctl_elem_list_t *obj, unsigned int entries);293void snd_ctl_elem_list_free_space(snd_ctl_elem_list_t *obj);294295char *snd_ctl_ascii_elem_id_get(snd_ctl_elem_id_t *id);296int snd_ctl_ascii_elem_id_parse(snd_ctl_elem_id_t *dst, const char *str);297int snd_ctl_ascii_value_parse(snd_ctl_t *handle,298snd_ctl_elem_value_t *dst,299snd_ctl_elem_info_t *info,300const char *value);301302size_t snd_ctl_elem_id_sizeof(void);303/** \hideinitializer304* \brief allocate an invalid #snd_ctl_elem_id_t using standard alloca305* \param ptr returned pointer306*/307#define snd_ctl_elem_id_alloca(ptr) __snd_alloca(ptr, snd_ctl_elem_id)308int snd_ctl_elem_id_malloc(snd_ctl_elem_id_t **ptr);309void snd_ctl_elem_id_free(snd_ctl_elem_id_t *obj);310void snd_ctl_elem_id_clear(snd_ctl_elem_id_t *obj);311void snd_ctl_elem_id_copy(snd_ctl_elem_id_t *dst, const snd_ctl_elem_id_t *src);312unsigned int snd_ctl_elem_id_get_numid(const snd_ctl_elem_id_t *obj);313snd_ctl_elem_iface_t snd_ctl_elem_id_get_interface(const snd_ctl_elem_id_t *obj);314unsigned int snd_ctl_elem_id_get_device(const snd_ctl_elem_id_t *obj);315unsigned int snd_ctl_elem_id_get_subdevice(const snd_ctl_elem_id_t *obj);316const char *snd_ctl_elem_id_get_name(const snd_ctl_elem_id_t *obj);317unsigned int snd_ctl_elem_id_get_index(const snd_ctl_elem_id_t *obj);318void snd_ctl_elem_id_set_numid(snd_ctl_elem_id_t *obj, unsigned int val);319void snd_ctl_elem_id_set_interface(snd_ctl_elem_id_t *obj, snd_ctl_elem_iface_t val);320void snd_ctl_elem_id_set_device(snd_ctl_elem_id_t *obj, unsigned int val);321void snd_ctl_elem_id_set_subdevice(snd_ctl_elem_id_t *obj, unsigned int val);322void snd_ctl_elem_id_set_name(snd_ctl_elem_id_t *obj, const char *val);323void snd_ctl_elem_id_set_index(snd_ctl_elem_id_t *obj, unsigned int val);324325size_t snd_ctl_card_info_sizeof(void);326/** \hideinitializer327* \brief allocate an invalid #snd_ctl_card_info_t using standard alloca328* \param ptr returned pointer329*/330#define snd_ctl_card_info_alloca(ptr) __snd_alloca(ptr, snd_ctl_card_info)331int snd_ctl_card_info_malloc(snd_ctl_card_info_t **ptr);332void snd_ctl_card_info_free(snd_ctl_card_info_t *obj);333void snd_ctl_card_info_clear(snd_ctl_card_info_t *obj);334void snd_ctl_card_info_copy(snd_ctl_card_info_t *dst, const snd_ctl_card_info_t *src);335int snd_ctl_card_info_get_card(const snd_ctl_card_info_t *obj);336const char *snd_ctl_card_info_get_id(const snd_ctl_card_info_t *obj);337const char *snd_ctl_card_info_get_driver(const snd_ctl_card_info_t *obj);338const char *snd_ctl_card_info_get_name(const snd_ctl_card_info_t *obj);339const char *snd_ctl_card_info_get_longname(const snd_ctl_card_info_t *obj);340const char *snd_ctl_card_info_get_mixername(const snd_ctl_card_info_t *obj);341const char *snd_ctl_card_info_get_components(const snd_ctl_card_info_t *obj);342343size_t snd_ctl_event_sizeof(void);344/** \hideinitializer345* \brief allocate an invalid #snd_ctl_event_t using standard alloca346* \param ptr returned pointer347*/348#define snd_ctl_event_alloca(ptr) __snd_alloca(ptr, snd_ctl_event)349int snd_ctl_event_malloc(snd_ctl_event_t **ptr);350void snd_ctl_event_free(snd_ctl_event_t *obj);351void snd_ctl_event_clear(snd_ctl_event_t *obj);352void snd_ctl_event_copy(snd_ctl_event_t *dst, const snd_ctl_event_t *src);353snd_ctl_event_type_t snd_ctl_event_get_type(const snd_ctl_event_t *obj);354355size_t snd_ctl_elem_list_sizeof(void);356/** \hideinitializer357* \brief allocate an invalid #snd_ctl_elem_list_t using standard alloca358* \param ptr returned pointer359*/360#define snd_ctl_elem_list_alloca(ptr) __snd_alloca(ptr, snd_ctl_elem_list)361int snd_ctl_elem_list_malloc(snd_ctl_elem_list_t **ptr);362void snd_ctl_elem_list_free(snd_ctl_elem_list_t *obj);363void snd_ctl_elem_list_clear(snd_ctl_elem_list_t *obj);364void snd_ctl_elem_list_copy(snd_ctl_elem_list_t *dst, const snd_ctl_elem_list_t *src);365void snd_ctl_elem_list_set_offset(snd_ctl_elem_list_t *obj, unsigned int val);366unsigned int snd_ctl_elem_list_get_used(const snd_ctl_elem_list_t *obj);367unsigned int snd_ctl_elem_list_get_count(const snd_ctl_elem_list_t *obj);368void snd_ctl_elem_list_get_id(const snd_ctl_elem_list_t *obj, unsigned int idx, snd_ctl_elem_id_t *ptr);369unsigned int snd_ctl_elem_list_get_numid(const snd_ctl_elem_list_t *obj, unsigned int idx);370snd_ctl_elem_iface_t snd_ctl_elem_list_get_interface(const snd_ctl_elem_list_t *obj, unsigned int idx);371unsigned int snd_ctl_elem_list_get_device(const snd_ctl_elem_list_t *obj, unsigned int idx);372unsigned int snd_ctl_elem_list_get_subdevice(const snd_ctl_elem_list_t *obj, unsigned int idx);373const char *snd_ctl_elem_list_get_name(const snd_ctl_elem_list_t *obj, unsigned int idx);374unsigned int snd_ctl_elem_list_get_index(const snd_ctl_elem_list_t *obj, unsigned int idx);375376size_t snd_ctl_elem_info_sizeof(void);377/** \hideinitializer378* \brief allocate an invalid #snd_ctl_elem_info_t using standard alloca379* \param ptr returned pointer380*/381#define snd_ctl_elem_info_alloca(ptr) __snd_alloca(ptr, snd_ctl_elem_info)382int snd_ctl_elem_info_malloc(snd_ctl_elem_info_t **ptr);383void snd_ctl_elem_info_free(snd_ctl_elem_info_t *obj);384void snd_ctl_elem_info_clear(snd_ctl_elem_info_t *obj);385void snd_ctl_elem_info_copy(snd_ctl_elem_info_t *dst, const snd_ctl_elem_info_t *src);386snd_ctl_elem_type_t snd_ctl_elem_info_get_type(const snd_ctl_elem_info_t *obj);387int snd_ctl_elem_info_is_readable(const snd_ctl_elem_info_t *obj);388int snd_ctl_elem_info_is_writable(const snd_ctl_elem_info_t *obj);389int snd_ctl_elem_info_is_volatile(const snd_ctl_elem_info_t *obj);390int snd_ctl_elem_info_is_inactive(const snd_ctl_elem_info_t *obj);391int snd_ctl_elem_info_is_locked(const snd_ctl_elem_info_t *obj);392int snd_ctl_elem_info_is_tlv_readable(const snd_ctl_elem_info_t *obj);393int snd_ctl_elem_info_is_tlv_writable(const snd_ctl_elem_info_t *obj);394int snd_ctl_elem_info_is_tlv_commandable(const snd_ctl_elem_info_t *obj);395int snd_ctl_elem_info_is_owner(const snd_ctl_elem_info_t *obj);396int snd_ctl_elem_info_is_user(const snd_ctl_elem_info_t *obj);397pid_t snd_ctl_elem_info_get_owner(const snd_ctl_elem_info_t *obj);398unsigned int snd_ctl_elem_info_get_count(const snd_ctl_elem_info_t *obj);399long snd_ctl_elem_info_get_min(const snd_ctl_elem_info_t *obj);400long snd_ctl_elem_info_get_max(const snd_ctl_elem_info_t *obj);401long snd_ctl_elem_info_get_step(const snd_ctl_elem_info_t *obj);402long long snd_ctl_elem_info_get_min64(const snd_ctl_elem_info_t *obj);403long long snd_ctl_elem_info_get_max64(const snd_ctl_elem_info_t *obj);404long long snd_ctl_elem_info_get_step64(const snd_ctl_elem_info_t *obj);405unsigned int snd_ctl_elem_info_get_items(const snd_ctl_elem_info_t *obj);406void snd_ctl_elem_info_set_item(snd_ctl_elem_info_t *obj, unsigned int val);407const char *snd_ctl_elem_info_get_item_name(const snd_ctl_elem_info_t *obj);408int snd_ctl_elem_info_get_dimensions(const snd_ctl_elem_info_t *obj);409int snd_ctl_elem_info_get_dimension(const snd_ctl_elem_info_t *obj, unsigned int idx);410int snd_ctl_elem_info_set_dimension(snd_ctl_elem_info_t *info,411const int dimension[4]);412void snd_ctl_elem_info_get_id(const snd_ctl_elem_info_t *obj, snd_ctl_elem_id_t *ptr);413unsigned int snd_ctl_elem_info_get_numid(const snd_ctl_elem_info_t *obj);414snd_ctl_elem_iface_t snd_ctl_elem_info_get_interface(const snd_ctl_elem_info_t *obj);415unsigned int snd_ctl_elem_info_get_device(const snd_ctl_elem_info_t *obj);416unsigned int snd_ctl_elem_info_get_subdevice(const snd_ctl_elem_info_t *obj);417const char *snd_ctl_elem_info_get_name(const snd_ctl_elem_info_t *obj);418unsigned int snd_ctl_elem_info_get_index(const snd_ctl_elem_info_t *obj);419void snd_ctl_elem_info_set_id(snd_ctl_elem_info_t *obj, const snd_ctl_elem_id_t *ptr);420void snd_ctl_elem_info_set_numid(snd_ctl_elem_info_t *obj, unsigned int val);421void snd_ctl_elem_info_set_interface(snd_ctl_elem_info_t *obj, snd_ctl_elem_iface_t val);422void snd_ctl_elem_info_set_device(snd_ctl_elem_info_t *obj, unsigned int val);423void snd_ctl_elem_info_set_subdevice(snd_ctl_elem_info_t *obj, unsigned int val);424void snd_ctl_elem_info_set_name(snd_ctl_elem_info_t *obj, const char *val);425void snd_ctl_elem_info_set_index(snd_ctl_elem_info_t *obj, unsigned int val);426427int snd_ctl_add_integer_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info,428unsigned int element_count,429unsigned int member_count,430long min, long max, long step);431int snd_ctl_add_integer64_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info,432unsigned int element_count,433unsigned int member_count,434long long min, long long max,435long long step);436int snd_ctl_add_boolean_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info,437unsigned int element_count,438unsigned int member_count);439int snd_ctl_add_enumerated_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info,440unsigned int element_count,441unsigned int member_count,442unsigned int items,443const char *const labels[]);444int snd_ctl_add_bytes_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info,445unsigned int element_count,446unsigned int member_count);447448int snd_ctl_elem_add_integer(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count, long imin, long imax, long istep);449int snd_ctl_elem_add_integer64(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count, long long imin, long long imax, long long istep);450int snd_ctl_elem_add_boolean(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count);451int snd_ctl_elem_add_enumerated(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count, unsigned int items, const char *const names[]);452int snd_ctl_elem_add_iec958(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id);453int snd_ctl_elem_remove(snd_ctl_t *ctl, snd_ctl_elem_id_t *id);454455size_t snd_ctl_elem_value_sizeof(void);456/** \hideinitializer457* \brief allocate an invalid #snd_ctl_elem_value_t using standard alloca458* \param ptr returned pointer459*/460#define snd_ctl_elem_value_alloca(ptr) __snd_alloca(ptr, snd_ctl_elem_value)461int snd_ctl_elem_value_malloc(snd_ctl_elem_value_t **ptr);462void snd_ctl_elem_value_free(snd_ctl_elem_value_t *obj);463void snd_ctl_elem_value_clear(snd_ctl_elem_value_t *obj);464void snd_ctl_elem_value_copy(snd_ctl_elem_value_t *dst, const snd_ctl_elem_value_t *src);465int snd_ctl_elem_value_compare(snd_ctl_elem_value_t *left, const snd_ctl_elem_value_t *right);466void snd_ctl_elem_value_get_id(const snd_ctl_elem_value_t *obj, snd_ctl_elem_id_t *ptr);467unsigned int snd_ctl_elem_value_get_numid(const snd_ctl_elem_value_t *obj);468snd_ctl_elem_iface_t snd_ctl_elem_value_get_interface(const snd_ctl_elem_value_t *obj);469unsigned int snd_ctl_elem_value_get_device(const snd_ctl_elem_value_t *obj);470unsigned int snd_ctl_elem_value_get_subdevice(const snd_ctl_elem_value_t *obj);471const char *snd_ctl_elem_value_get_name(const snd_ctl_elem_value_t *obj);472unsigned int snd_ctl_elem_value_get_index(const snd_ctl_elem_value_t *obj);473void snd_ctl_elem_value_set_id(snd_ctl_elem_value_t *obj, const snd_ctl_elem_id_t *ptr);474void snd_ctl_elem_value_set_numid(snd_ctl_elem_value_t *obj, unsigned int val);475void snd_ctl_elem_value_set_interface(snd_ctl_elem_value_t *obj, snd_ctl_elem_iface_t val);476void snd_ctl_elem_value_set_device(snd_ctl_elem_value_t *obj, unsigned int val);477void snd_ctl_elem_value_set_subdevice(snd_ctl_elem_value_t *obj, unsigned int val);478void snd_ctl_elem_value_set_name(snd_ctl_elem_value_t *obj, const char *val);479void snd_ctl_elem_value_set_index(snd_ctl_elem_value_t *obj, unsigned int val);480int snd_ctl_elem_value_get_boolean(const snd_ctl_elem_value_t *obj, unsigned int idx);481long snd_ctl_elem_value_get_integer(const snd_ctl_elem_value_t *obj, unsigned int idx);482long long snd_ctl_elem_value_get_integer64(const snd_ctl_elem_value_t *obj, unsigned int idx);483unsigned int snd_ctl_elem_value_get_enumerated(const snd_ctl_elem_value_t *obj, unsigned int idx);484unsigned char snd_ctl_elem_value_get_byte(const snd_ctl_elem_value_t *obj, unsigned int idx);485void snd_ctl_elem_value_set_boolean(snd_ctl_elem_value_t *obj, unsigned int idx, long val);486void snd_ctl_elem_value_set_integer(snd_ctl_elem_value_t *obj, unsigned int idx, long val);487void snd_ctl_elem_value_set_integer64(snd_ctl_elem_value_t *obj, unsigned int idx, long long val);488void snd_ctl_elem_value_set_enumerated(snd_ctl_elem_value_t *obj, unsigned int idx, unsigned int val);489void snd_ctl_elem_value_set_byte(snd_ctl_elem_value_t *obj, unsigned int idx, unsigned char val);490void snd_ctl_elem_set_bytes(snd_ctl_elem_value_t *obj, void *data, size_t size);491const void * snd_ctl_elem_value_get_bytes(const snd_ctl_elem_value_t *obj);492void snd_ctl_elem_value_get_iec958(const snd_ctl_elem_value_t *obj, snd_aes_iec958_t *ptr);493void snd_ctl_elem_value_set_iec958(snd_ctl_elem_value_t *obj, const snd_aes_iec958_t *ptr);494495int snd_tlv_parse_dB_info(unsigned int *tlv, unsigned int tlv_size,496unsigned int **db_tlvp);497int snd_tlv_get_dB_range(unsigned int *tlv, long rangemin, long rangemax,498long *min, long *max);499int snd_tlv_convert_to_dB(unsigned int *tlv, long rangemin, long rangemax,500long volume, long *db_gain);501int snd_tlv_convert_from_dB(unsigned int *tlv, long rangemin, long rangemax,502long db_gain, long *value, int xdir);503int snd_ctl_get_dB_range(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id,504long *min, long *max);505int snd_ctl_convert_to_dB(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id,506long volume, long *db_gain);507int snd_ctl_convert_from_dB(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id,508long db_gain, long *value, int xdir);509510/**511* \defgroup HControl High level Control Interface512* \ingroup Control513* The high level control interface.514* See \ref hcontrol page for more details.515* \{516*/517518/** HCTL element handle */519typedef struct _snd_hctl_elem snd_hctl_elem_t;520521/** HCTL handle */522typedef struct _snd_hctl snd_hctl_t;523524/**525* \brief Compare function for sorting HCTL elements526* \param e1 First element527* \param e2 Second element528* \return -1 if e1 < e2, 0 if e1 == e2, 1 if e1 > e2529*/530typedef int (*snd_hctl_compare_t)(const snd_hctl_elem_t *e1,531const snd_hctl_elem_t *e2);532int snd_hctl_compare_fast(const snd_hctl_elem_t *c1,533const snd_hctl_elem_t *c2);534/**535* \brief HCTL callback function536* \param hctl HCTL handle537* \param mask event mask538* \param elem related HCTL element (if any)539* \return 0 on success otherwise a negative error code540*/541typedef int (*snd_hctl_callback_t)(snd_hctl_t *hctl,542unsigned int mask,543snd_hctl_elem_t *elem);544/**545* \brief HCTL element callback function546* \param elem HCTL element547* \param mask event mask548* \return 0 on success otherwise a negative error code549*/550typedef int (*snd_hctl_elem_callback_t)(snd_hctl_elem_t *elem,551unsigned int mask);552553int snd_hctl_open(snd_hctl_t **hctl, const char *name, int mode);554int snd_hctl_open_ctl(snd_hctl_t **hctlp, snd_ctl_t *ctl);555int snd_hctl_close(snd_hctl_t *hctl);556int snd_hctl_nonblock(snd_hctl_t *hctl, int nonblock);557static __inline__ int snd_hctl_abort(snd_hctl_t *hctl) { return snd_hctl_nonblock(hctl, 2); }558int snd_hctl_poll_descriptors_count(snd_hctl_t *hctl);559int snd_hctl_poll_descriptors(snd_hctl_t *hctl, struct pollfd *pfds, unsigned int space);560int snd_hctl_poll_descriptors_revents(snd_hctl_t *ctl, struct pollfd *pfds, unsigned int nfds, unsigned short *revents);561unsigned int snd_hctl_get_count(snd_hctl_t *hctl);562int snd_hctl_set_compare(snd_hctl_t *hctl, snd_hctl_compare_t hsort);563snd_hctl_elem_t *snd_hctl_first_elem(snd_hctl_t *hctl);564snd_hctl_elem_t *snd_hctl_last_elem(snd_hctl_t *hctl);565snd_hctl_elem_t *snd_hctl_find_elem(snd_hctl_t *hctl, const snd_ctl_elem_id_t *id);566void snd_hctl_set_callback(snd_hctl_t *hctl, snd_hctl_callback_t callback);567void snd_hctl_set_callback_private(snd_hctl_t *hctl, void *data);568void *snd_hctl_get_callback_private(snd_hctl_t *hctl);569int snd_hctl_load(snd_hctl_t *hctl);570int snd_hctl_free(snd_hctl_t *hctl);571int snd_hctl_handle_events(snd_hctl_t *hctl);572const char *snd_hctl_name(snd_hctl_t *hctl);573int snd_hctl_wait(snd_hctl_t *hctl, int timeout);574snd_ctl_t *snd_hctl_ctl(snd_hctl_t *hctl);575576snd_hctl_elem_t *snd_hctl_elem_next(snd_hctl_elem_t *elem);577snd_hctl_elem_t *snd_hctl_elem_prev(snd_hctl_elem_t *elem);578int snd_hctl_elem_info(snd_hctl_elem_t *elem, snd_ctl_elem_info_t * info);579int snd_hctl_elem_read(snd_hctl_elem_t *elem, snd_ctl_elem_value_t * value);580int snd_hctl_elem_write(snd_hctl_elem_t *elem, snd_ctl_elem_value_t * value);581int snd_hctl_elem_tlv_read(snd_hctl_elem_t *elem, unsigned int *tlv, unsigned int tlv_size);582int snd_hctl_elem_tlv_write(snd_hctl_elem_t *elem, const unsigned int *tlv);583int snd_hctl_elem_tlv_command(snd_hctl_elem_t *elem, const unsigned int *tlv);584585snd_hctl_t *snd_hctl_elem_get_hctl(snd_hctl_elem_t *elem);586587void snd_hctl_elem_get_id(const snd_hctl_elem_t *obj, snd_ctl_elem_id_t *ptr);588unsigned int snd_hctl_elem_get_numid(const snd_hctl_elem_t *obj);589snd_ctl_elem_iface_t snd_hctl_elem_get_interface(const snd_hctl_elem_t *obj);590unsigned int snd_hctl_elem_get_device(const snd_hctl_elem_t *obj);591unsigned int snd_hctl_elem_get_subdevice(const snd_hctl_elem_t *obj);592const char *snd_hctl_elem_get_name(const snd_hctl_elem_t *obj);593unsigned int snd_hctl_elem_get_index(const snd_hctl_elem_t *obj);594void snd_hctl_elem_set_callback(snd_hctl_elem_t *obj, snd_hctl_elem_callback_t val);595void * snd_hctl_elem_get_callback_private(const snd_hctl_elem_t *obj);596void snd_hctl_elem_set_callback_private(snd_hctl_elem_t *obj, void * val);597598/** \} */599600/** \} */601602/**603* \defgroup SControl Setup Control Interface604* \ingroup Control605* The setup control interface - set or modify control elements from a configuration file.606* \{607*/608609int snd_sctl_build(snd_sctl_t **ctl, snd_ctl_t *handle, snd_config_t *config,610snd_config_t *private_data, int mode);611int snd_sctl_free(snd_sctl_t *handle);612int snd_sctl_install(snd_sctl_t *handle);613int snd_sctl_remove(snd_sctl_t *handle);614615/** \} */616617#ifdef __cplusplus618}619#endif620621#endif /* __ALSA_CONTROL_H */622623624