Blame include/control.h

Packit Service db8eaa
/**
Packit Service db8eaa
 * \file include/control.h
Packit Service db8eaa
 * \brief Application interface library for the ALSA driver
Packit Service db8eaa
 * \author Jaroslav Kysela <perex@perex.cz>
Packit Service db8eaa
 * \author Abramo Bagnara <abramo@alsa-project.org>
Packit Service db8eaa
 * \author Takashi Iwai <tiwai@suse.de>
Packit Service db8eaa
 * \date 1998-2001
Packit Service db8eaa
 *
Packit Service db8eaa
 * Application interface library for the ALSA driver
Packit Service db8eaa
 */
Packit Service db8eaa
/*
Packit Service db8eaa
 *   This library is free software; you can redistribute it and/or modify
Packit Service db8eaa
 *   it under the terms of the GNU Lesser General Public License as
Packit Service db8eaa
 *   published by the Free Software Foundation; either version 2.1 of
Packit Service db8eaa
 *   the License, or (at your option) any later version.
Packit Service db8eaa
 *
Packit Service db8eaa
 *   This program is distributed in the hope that it will be useful,
Packit Service db8eaa
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service db8eaa
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service db8eaa
 *   GNU Lesser General Public License for more details.
Packit Service db8eaa
 *
Packit Service db8eaa
 *   You should have received a copy of the GNU Lesser General Public
Packit Service db8eaa
 *   License along with this library; if not, write to the Free Software
Packit Service db8eaa
 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
Packit Service db8eaa
 *
Packit Service db8eaa
 */
Packit Service db8eaa
Packit Service db8eaa
#ifndef __ALSA_CONTROL_H
Packit Service db8eaa
#define __ALSA_CONTROL_H
Packit Service db8eaa
Packit Service db8eaa
#ifdef __cplusplus
Packit Service db8eaa
extern "C" {
Packit Service db8eaa
#endif
Packit Service db8eaa
Packit Service db8eaa
/**
Packit Service db8eaa
 *  \defgroup Control Control Interface
Packit Service db8eaa
 *  The control interface.
Packit Service db8eaa
 *  See \ref control page for more details.
Packit Service db8eaa
 *  \{
Packit Service db8eaa
 */
Packit Service db8eaa
Packit Service db8eaa
/** dlsym version for interface entry callback */
Packit Service db8eaa
#define SND_CONTROL_DLSYM_VERSION	_dlsym_control_001
Packit Service db8eaa
Packit Service db8eaa
/** IEC958 structure */
Packit Service db8eaa
typedef struct snd_aes_iec958 {
Packit Service db8eaa
	unsigned char status[24];	/**< AES/IEC958 channel status bits */
Packit Service db8eaa
	unsigned char subcode[147];	/**< AES/IEC958 subcode bits */
Packit Service db8eaa
	unsigned char pad;		/**< nothing */
Packit Service db8eaa
	unsigned char dig_subframe[4];	/**< AES/IEC958 subframe bits */
Packit Service db8eaa
} snd_aes_iec958_t;
Packit Service db8eaa
Packit Service db8eaa
/** CTL card info container */
Packit Service db8eaa
typedef struct _snd_ctl_card_info snd_ctl_card_info_t;
Packit Service db8eaa
Packit Service db8eaa
/** CTL element identifier container */
Packit Service db8eaa
typedef struct _snd_ctl_elem_id snd_ctl_elem_id_t;
Packit Service db8eaa
Packit Service db8eaa
/** CTL element list container
Packit Service db8eaa
 *
Packit Service db8eaa
 * This is a list of CTL elements. The list contains management
Packit Service db8eaa
 * information (e.g. how many elements the sound card has) as well as
Packit Service db8eaa
 * the element identifiers. All functions which operate on the list
Packit Service db8eaa
 * are named snd_ctl_elem_list_*().
Packit Service db8eaa
 *
Packit Service db8eaa
 * \par Memory management
Packit Service db8eaa
 *
Packit Service db8eaa
 * There are two memory areas to deal with: The list container itself
Packit Service db8eaa
 * and the memory for the element identifiers.
Packit Service db8eaa
 *
Packit Service db8eaa
 * To manage the area for the list container, the following functions
Packit Service db8eaa
 * are used:
Packit Service db8eaa
 *
Packit Service db8eaa
 * - snd_ctl_elem_list_malloc() / snd_ctl_elem_list_free() to allocate
Packit Service db8eaa
 *   and free memory on the heap, or
Packit Service db8eaa
 * - snd_ctl_elem_list_alloca() to allocate the memory on the
Packit Service db8eaa
 *   stack. This memory is auto-released when the stack is unwound.
Packit Service db8eaa
 *
Packit Service db8eaa
 * To manage the space for the element identifiers, the
Packit Service db8eaa
 * snd_ctl_elem_list_alloc_space() and snd_ctl_elem_list_free_space()
Packit Service db8eaa
 * are used. Allocating the right amount of space can be achieved by
Packit Service db8eaa
 * first obtaining the number of elements and then calling
Packit Service db8eaa
 * snd_ctl_elem_list_alloc_space():
Packit Service db8eaa
 *
Packit Service db8eaa
 * \code
Packit Service db8eaa
 *   snd_ctl_elem_list_t* list;
Packit Service db8eaa
 *   int count;
Packit Service db8eaa
 *
Packit Service db8eaa
 *   // Initialise list
Packit Service db8eaa
 *   snd_ctl_elem_list_malloc(&list);
Packit Service db8eaa
 *
Packit Service db8eaa
 *   // Get number of elements
Packit Service db8eaa
 *   snd_ctl_elem_list(ctl, list);
Packit Service db8eaa
 *   count = snd_ctl_elem_list_get_count(list);
Packit Service db8eaa
 *
Packit Service db8eaa
 *   // Allocate space for identifiers
Packit Service db8eaa
 *   snd_ctl_elem_list_alloc_space(list, count);
Packit Service db8eaa
 *
Packit Service db8eaa
 *   // Get identifiers
Packit Service db8eaa
 *   snd_ctl_elem_list(ctl, list); // yes, this is same as above :)
Packit Service db8eaa
 *
Packit Service db8eaa
 *   // Do something useful with the list...
Packit Service db8eaa
 *
Packit Service db8eaa
 *   // Cleanup
Packit Service db8eaa
 *   snd_ctl_elem_list_free_space(list);
Packit Service db8eaa
 *   snd_ctl_elem_list_free(list);
Packit Service db8eaa
 * \endcode
Packit Service db8eaa
 *
Packit Service db8eaa
 *
Packit Service db8eaa
 * \par The Elements
Packit Service db8eaa
 *
Packit Service db8eaa
 * The elements in the list are accessed using an index. This index is
Packit Service db8eaa
 * the location in the list; Don't confuse it with the 'index' of the
Packit Service db8eaa
 * element identifier. For example:
Packit Service db8eaa
 *
Packit Service db8eaa
 * \code
Packit Service db8eaa
 *     snd_ctl_elem_list_t list;
Packit Service db8eaa
 *     unsigned int element_index;
Packit Service db8eaa
 *
Packit Service db8eaa
 *     // Allocate space, fill list ...
Packit Service db8eaa
 *
Packit Service db8eaa
 *     element_index = snd_ctl_elem_list_get_index(&list, 2);
Packit Service db8eaa
 * \endcode
Packit Service db8eaa
 *
Packit Service db8eaa
 * This will access the 3rd element in the list (index=2) and get the
Packit Service db8eaa
 * elements index from the driver (which might be 13, for example).
Packit Service db8eaa
 */
Packit Service db8eaa
typedef struct _snd_ctl_elem_list snd_ctl_elem_list_t;
Packit Service db8eaa
Packit Service db8eaa
/** CTL element info container */
Packit Service db8eaa
typedef struct _snd_ctl_elem_info snd_ctl_elem_info_t;
Packit Service db8eaa
Packit Service db8eaa
/** CTL element value container
Packit Service db8eaa
 *
Packit Service db8eaa
 * Contains the value(s) (i.e. members) of a single element. All
Packit Service db8eaa
 * values of a given element are of the same type.
Packit Service db8eaa
 *
Packit Service db8eaa
 * \par Memory management
Packit Service db8eaa
 *
Packit Service db8eaa
 * To access a value, a snd_ctl_elem_value_t must be allocated using
Packit Service db8eaa
 * snd_ctl_elem_value_alloca() or snd_ctl_elem_value_malloc(). When
Packit Service db8eaa
 * using the latter, it must be freed again using
Packit Service db8eaa
 * snd_ctl_elem_value_free().
Packit Service db8eaa
 *
Packit Service db8eaa
 * \par Identifier
Packit Service db8eaa
 *
Packit Service db8eaa
 * Then, the ID must be filled. It is sufficient to fill only the
Packit Service db8eaa
 * numid, if known. Otherwise, interface type, device, subdevice,
Packit Service db8eaa
 * name, index must all be given.  The following functions can be used
Packit Service db8eaa
 * to fill the ID:
Packit Service db8eaa
 *
Packit Service db8eaa
 * - snd_ctl_elem_value_set_id(): Set the ID. Requires an
Packit Service db8eaa
 *   snd_ctl_elem_id_t object.
Packit Service db8eaa
 * - snd_ctl_elem_value_set_numid(): Set the numid.
Packit Service db8eaa
 * - Or use all of the following:
Packit Service db8eaa
 *
Packit Service db8eaa
 *   - snd_ctl_elem_value_set_interface()
Packit Service db8eaa
 *   - snd_ctl_elem_value_set_device()
Packit Service db8eaa
 *   - snd_ctl_elem_value_set_subdevice()
Packit Service db8eaa
 *   - snd_ctl_elem_value_set_name()
Packit Service db8eaa
 *   - snd_ctl_elem_value_set_index()
Packit Service db8eaa
 *
Packit Service db8eaa
 * When communicating with the driver (snd_ctl_elem_read(),
Packit Service db8eaa
 * snd_ctl_elem_write()), and the numid was given, the interface,
Packit Service db8eaa
 * device, ... are filled (even if you set the before). When the numid
Packit Service db8eaa
 * is unset (i.e. it is 0), it is filled.
Packit Service db8eaa
 *
Packit Service db8eaa
 * \par Communicating with the driver
Packit Service db8eaa
 *
Packit Service db8eaa
 * After the value container was created and filled with the ID of the
Packit Service db8eaa
 * desired element, the value(s) can be fetched from the driver (and
Packit Service db8eaa
 * thus from the hardware) or written to the driver.
Packit Service db8eaa
 *
Packit Service db8eaa
 * To fetch a value, use snd_ctl_elem_read(). Thereafter, use the
Packit Service db8eaa
 * snd_ctl_elem_value_get_*() functions to obtain the actual value.
Packit Service db8eaa
 *
Packit Service db8eaa
 * To write a new value, first use a snd_ctl_elem_value_set_*() to set
Packit Service db8eaa
 * it, then call snd_ctl_elem_write() to write it to the driver.
Packit Service db8eaa
 */
Packit Service db8eaa
typedef struct _snd_ctl_elem_value snd_ctl_elem_value_t;
Packit Service db8eaa
Packit Service db8eaa
/** CTL event container */
Packit Service db8eaa
typedef struct _snd_ctl_event snd_ctl_event_t;
Packit Service db8eaa
Packit Service db8eaa
/** CTL element type */
Packit Service db8eaa
typedef enum _snd_ctl_elem_type {
Packit Service db8eaa
	/** Invalid type */
Packit Service db8eaa
	SND_CTL_ELEM_TYPE_NONE = 0,
Packit Service db8eaa
	/** Boolean contents */
Packit Service db8eaa
	SND_CTL_ELEM_TYPE_BOOLEAN,
Packit Service db8eaa
	/** Integer contents */
Packit Service db8eaa
	SND_CTL_ELEM_TYPE_INTEGER,
Packit Service db8eaa
	/** Enumerated contents */
Packit Service db8eaa
	SND_CTL_ELEM_TYPE_ENUMERATED,
Packit Service db8eaa
	/** Bytes contents */
Packit Service db8eaa
	SND_CTL_ELEM_TYPE_BYTES,
Packit Service db8eaa
	/** IEC958 (S/PDIF) setting content */
Packit Service db8eaa
	SND_CTL_ELEM_TYPE_IEC958,
Packit Service db8eaa
	/** 64-bit integer contents */
Packit Service db8eaa
	SND_CTL_ELEM_TYPE_INTEGER64,
Packit Service db8eaa
	SND_CTL_ELEM_TYPE_LAST = SND_CTL_ELEM_TYPE_INTEGER64
Packit Service db8eaa
} snd_ctl_elem_type_t;
Packit Service db8eaa
Packit Service db8eaa
/** CTL related interface */
Packit Service db8eaa
typedef enum _snd_ctl_elem_iface {
Packit Service db8eaa
	/** Card level */
Packit Service db8eaa
	SND_CTL_ELEM_IFACE_CARD = 0,
Packit Service db8eaa
	/** Hardware dependent device */
Packit Service db8eaa
	SND_CTL_ELEM_IFACE_HWDEP,
Packit Service db8eaa
	/** Mixer */
Packit Service db8eaa
	SND_CTL_ELEM_IFACE_MIXER,
Packit Service db8eaa
	/** PCM */
Packit Service db8eaa
	SND_CTL_ELEM_IFACE_PCM,
Packit Service db8eaa
	/** RawMidi */
Packit Service db8eaa
	SND_CTL_ELEM_IFACE_RAWMIDI,
Packit Service db8eaa
	/** Timer */
Packit Service db8eaa
	SND_CTL_ELEM_IFACE_TIMER,
Packit Service db8eaa
	/** Sequencer */
Packit Service db8eaa
	SND_CTL_ELEM_IFACE_SEQUENCER,
Packit Service db8eaa
	SND_CTL_ELEM_IFACE_LAST = SND_CTL_ELEM_IFACE_SEQUENCER
Packit Service db8eaa
} snd_ctl_elem_iface_t;
Packit Service db8eaa
Packit Service db8eaa
/** Event class */
Packit Service db8eaa
typedef enum _snd_ctl_event_type {
Packit Service db8eaa
	/** Elements related event */
Packit Service db8eaa
	SND_CTL_EVENT_ELEM = 0,
Packit Service db8eaa
	SND_CTL_EVENT_LAST = SND_CTL_EVENT_ELEM
Packit Service db8eaa
}snd_ctl_event_type_t;
Packit Service db8eaa
Packit Service db8eaa
/** Element has been removed (Warning: test this first and if set don't
Packit Service db8eaa
  * test the other masks) \hideinitializer */
Packit Service db8eaa
#define SND_CTL_EVENT_MASK_REMOVE 	(~0U)
Packit Service db8eaa
/** Element value has been changed \hideinitializer */
Packit Service db8eaa
#define SND_CTL_EVENT_MASK_VALUE	(1<<0)
Packit Service db8eaa
/** Element info has been changed \hideinitializer */
Packit Service db8eaa
#define SND_CTL_EVENT_MASK_INFO		(1<<1)
Packit Service db8eaa
/** Element has been added \hideinitializer */
Packit Service db8eaa
#define SND_CTL_EVENT_MASK_ADD		(1<<2)
Packit Service db8eaa
/** Element's TLV value has been changed \hideinitializer */
Packit Service db8eaa
#define SND_CTL_EVENT_MASK_TLV		(1<<3)
Packit Service db8eaa
Packit Service db8eaa
/** CTL name helper */
Packit Service db8eaa
#define SND_CTL_NAME_NONE				""
Packit Service db8eaa
/** CTL name helper */
Packit Service db8eaa
#define SND_CTL_NAME_PLAYBACK				"Playback "
Packit Service db8eaa
/** CTL name helper */
Packit Service db8eaa
#define SND_CTL_NAME_CAPTURE				"Capture "
Packit Service db8eaa
Packit Service db8eaa
/** CTL name helper */
Packit Service db8eaa
#define SND_CTL_NAME_IEC958_NONE			""
Packit Service db8eaa
/** CTL name helper */
Packit Service db8eaa
#define SND_CTL_NAME_IEC958_SWITCH			"Switch"
Packit Service db8eaa
/** CTL name helper */
Packit Service db8eaa
#define SND_CTL_NAME_IEC958_VOLUME			"Volume"
Packit Service db8eaa
/** CTL name helper */
Packit Service db8eaa
#define SND_CTL_NAME_IEC958_DEFAULT			"Default"
Packit Service db8eaa
/** CTL name helper */
Packit Service db8eaa
#define SND_CTL_NAME_IEC958_MASK			"Mask"
Packit Service db8eaa
/** CTL name helper */
Packit Service db8eaa
#define SND_CTL_NAME_IEC958_CON_MASK			"Con Mask"
Packit Service db8eaa
/** CTL name helper */
Packit Service db8eaa
#define SND_CTL_NAME_IEC958_PRO_MASK			"Pro Mask"
Packit Service db8eaa
/** CTL name helper */
Packit Service db8eaa
#define SND_CTL_NAME_IEC958_PCM_STREAM			"PCM Stream"
Packit Service db8eaa
/** Element name for IEC958 (S/PDIF) */
Packit Service db8eaa
#define SND_CTL_NAME_IEC958(expl,direction,what)	"IEC958 " expl SND_CTL_NAME_##direction SND_CTL_NAME_IEC958_##what
Packit Service db8eaa
Packit Service db8eaa
/** Mask for the major Power State identifier */
Packit Service db8eaa
#define SND_CTL_POWER_MASK		0xff00
Packit Service db8eaa
/** ACPI/PCI Power State D0 */
Packit Service db8eaa
#define SND_CTL_POWER_D0          	0x0000
Packit Service db8eaa
/** ACPI/PCI Power State D1 */
Packit Service db8eaa
#define SND_CTL_POWER_D1     	     	0x0100
Packit Service db8eaa
/** ACPI/PCI Power State D2 */
Packit Service db8eaa
#define SND_CTL_POWER_D2 	        0x0200
Packit Service db8eaa
/** ACPI/PCI Power State D3 */
Packit Service db8eaa
#define SND_CTL_POWER_D3         	0x0300
Packit Service db8eaa
/** ACPI/PCI Power State D3hot */
Packit Service db8eaa
#define SND_CTL_POWER_D3hot		(SND_CTL_POWER_D3|0x0000)
Packit Service db8eaa
/** ACPI/PCI Power State D3cold */
Packit Service db8eaa
#define SND_CTL_POWER_D3cold	      	(SND_CTL_POWER_D3|0x0001)
Packit Service db8eaa
Packit Service db8eaa
/** TLV type - Container */
Packit Service db8eaa
#define SND_CTL_TLVT_CONTAINER		0x0000
Packit Service db8eaa
/** TLV type - basic dB scale */
Packit Service db8eaa
#define SND_CTL_TLVT_DB_SCALE		0x0001
Packit Service db8eaa
/** TLV type - linear volume */
Packit Service db8eaa
#define SND_CTL_TLVT_DB_LINEAR		0x0002
Packit Service db8eaa
/** TLV type - dB range container */
Packit Service db8eaa
#define SND_CTL_TLVT_DB_RANGE		0x0003
Packit Service db8eaa
/** TLV type - dB scale specified by min/max values */
Packit Service db8eaa
#define SND_CTL_TLVT_DB_MINMAX		0x0004
Packit Service db8eaa
/** TLV type - dB scale specified by min/max values (with mute) */
Packit Service db8eaa
#define SND_CTL_TLVT_DB_MINMAX_MUTE	0x0005
Packit Service db8eaa
Packit Service db8eaa
/** Mute state */
Packit Service db8eaa
#define SND_CTL_TLV_DB_GAIN_MUTE	-9999999
Packit Service db8eaa
Packit Service db8eaa
/** TLV type - fixed channel map positions */
Packit Service db8eaa
#define SND_CTL_TLVT_CHMAP_FIXED	0x00101
Packit Service db8eaa
/** TLV type - freely swappable channel map positions */
Packit Service db8eaa
#define SND_CTL_TLVT_CHMAP_VAR		0x00102
Packit Service db8eaa
/** TLV type - pair-wise swappable channel map positions */
Packit Service db8eaa
#define SND_CTL_TLVT_CHMAP_PAIRED	0x00103
Packit Service db8eaa
Packit Service db8eaa
/** CTL type */
Packit Service db8eaa
typedef enum _snd_ctl_type {
Packit Service db8eaa
	/** Kernel level CTL */
Packit Service db8eaa
	SND_CTL_TYPE_HW,
Packit Service db8eaa
	/** Shared memory client CTL */
Packit Service db8eaa
	SND_CTL_TYPE_SHM,
Packit Service db8eaa
	/** INET client CTL (not yet implemented) */
Packit Service db8eaa
	SND_CTL_TYPE_INET,
Packit Service db8eaa
	/** External control plugin */
Packit Service db8eaa
	SND_CTL_TYPE_EXT
Packit Service db8eaa
} snd_ctl_type_t;
Packit Service db8eaa
Packit Service db8eaa
/** Non blocking mode (flag for open mode) \hideinitializer */
Packit Service db8eaa
#define SND_CTL_NONBLOCK		0x0001
Packit Service db8eaa
Packit Service db8eaa
/** Async notification (flag for open mode) \hideinitializer */
Packit Service db8eaa
#define SND_CTL_ASYNC			0x0002
Packit Service db8eaa
Packit Service db8eaa
/** Read only (flag for open mode) \hideinitializer */
Packit Service db8eaa
#define SND_CTL_READONLY		0x0004
Packit Service db8eaa
Packit Service db8eaa
/** CTL handle */
Packit Service db8eaa
typedef struct _snd_ctl snd_ctl_t;
Packit Service db8eaa
Packit Service db8eaa
/** Don't destroy the ctl handle when close */
Packit Service db8eaa
#define SND_SCTL_NOFREE			0x0001
Packit Service db8eaa
Packit Service db8eaa
/** SCTL type */
Packit Service db8eaa
typedef struct _snd_sctl snd_sctl_t;
Packit Service db8eaa
Packit Service db8eaa
int snd_card_load(int card);
Packit Service db8eaa
int snd_card_next(int *card);
Packit Service db8eaa
int snd_card_get_index(const char *name);
Packit Service db8eaa
int snd_card_get_name(int card, char **name);
Packit Service db8eaa
int snd_card_get_longname(int card, char **name);
Packit Service db8eaa
Packit Service db8eaa
int snd_device_name_hint(int card, const char *iface, void ***hints);
Packit Service db8eaa
int snd_device_name_free_hint(void **hints);
Packit Service db8eaa
char *snd_device_name_get_hint(const void *hint, const char *id);
Packit Service db8eaa
Packit Service db8eaa
int snd_ctl_open(snd_ctl_t **ctl, const char *name, int mode);
Packit Service db8eaa
int snd_ctl_open_lconf(snd_ctl_t **ctl, const char *name, int mode, snd_config_t *lconf);
Packit Service db8eaa
int snd_ctl_open_fallback(snd_ctl_t **ctl, snd_config_t *root, const char *name, const char *orig_name, int mode);
Packit Service db8eaa
int snd_ctl_close(snd_ctl_t *ctl);
Packit Service db8eaa
int snd_ctl_nonblock(snd_ctl_t *ctl, int nonblock);
Packit Service db8eaa
static __inline__ int snd_ctl_abort(snd_ctl_t *ctl) { return snd_ctl_nonblock(ctl, 2); }
Packit Service db8eaa
int snd_async_add_ctl_handler(snd_async_handler_t **handler, snd_ctl_t *ctl, 
Packit Service db8eaa
			      snd_async_callback_t callback, void *private_data);
Packit Service db8eaa
snd_ctl_t *snd_async_handler_get_ctl(snd_async_handler_t *handler);
Packit Service db8eaa
int snd_ctl_poll_descriptors_count(snd_ctl_t *ctl);
Packit Service db8eaa
int snd_ctl_poll_descriptors(snd_ctl_t *ctl, struct pollfd *pfds, unsigned int space);
Packit Service db8eaa
int snd_ctl_poll_descriptors_revents(snd_ctl_t *ctl, struct pollfd *pfds, unsigned int nfds, unsigned short *revents);
Packit Service db8eaa
int snd_ctl_subscribe_events(snd_ctl_t *ctl, int subscribe);
Packit Service db8eaa
int snd_ctl_card_info(snd_ctl_t *ctl, snd_ctl_card_info_t *info);
Packit Service db8eaa
int snd_ctl_elem_list(snd_ctl_t *ctl, snd_ctl_elem_list_t *list);
Packit Service db8eaa
int snd_ctl_elem_info(snd_ctl_t *ctl, snd_ctl_elem_info_t *info);
Packit Service db8eaa
int snd_ctl_elem_read(snd_ctl_t *ctl, snd_ctl_elem_value_t *data);
Packit Service db8eaa
int snd_ctl_elem_write(snd_ctl_t *ctl, snd_ctl_elem_value_t *data);
Packit Service db8eaa
int snd_ctl_elem_lock(snd_ctl_t *ctl, snd_ctl_elem_id_t *id);
Packit Service db8eaa
int snd_ctl_elem_unlock(snd_ctl_t *ctl, snd_ctl_elem_id_t *id);
Packit Service db8eaa
int snd_ctl_elem_tlv_read(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id,
Packit Service db8eaa
			  unsigned int *tlv, unsigned int tlv_size);
Packit Service db8eaa
int snd_ctl_elem_tlv_write(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id,
Packit Service db8eaa
			   const unsigned int *tlv);
Packit Service db8eaa
int snd_ctl_elem_tlv_command(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id,
Packit Service db8eaa
			     const unsigned int *tlv);
Packit Service db8eaa
#ifdef __ALSA_HWDEP_H
Packit Service db8eaa
int snd_ctl_hwdep_next_device(snd_ctl_t *ctl, int * device);
Packit Service db8eaa
int snd_ctl_hwdep_info(snd_ctl_t *ctl, snd_hwdep_info_t * info);
Packit Service db8eaa
#endif
Packit Service db8eaa
#ifdef __ALSA_PCM_H
Packit Service db8eaa
int snd_ctl_pcm_next_device(snd_ctl_t *ctl, int *device);
Packit Service db8eaa
int snd_ctl_pcm_info(snd_ctl_t *ctl, snd_pcm_info_t * info);
Packit Service db8eaa
int snd_ctl_pcm_prefer_subdevice(snd_ctl_t *ctl, int subdev);
Packit Service db8eaa
#endif
Packit Service db8eaa
#ifdef __ALSA_RAWMIDI_H
Packit Service db8eaa
int snd_ctl_rawmidi_next_device(snd_ctl_t *ctl, int * device);
Packit Service db8eaa
int snd_ctl_rawmidi_info(snd_ctl_t *ctl, snd_rawmidi_info_t * info);
Packit Service db8eaa
int snd_ctl_rawmidi_prefer_subdevice(snd_ctl_t *ctl, int subdev);
Packit Service db8eaa
#endif
Packit Service db8eaa
int snd_ctl_set_power_state(snd_ctl_t *ctl, unsigned int state);
Packit Service db8eaa
int snd_ctl_get_power_state(snd_ctl_t *ctl, unsigned int *state);
Packit Service db8eaa
Packit Service db8eaa
int snd_ctl_read(snd_ctl_t *ctl, snd_ctl_event_t *event);
Packit Service db8eaa
int snd_ctl_wait(snd_ctl_t *ctl, int timeout);
Packit Service db8eaa
const char *snd_ctl_name(snd_ctl_t *ctl);
Packit Service db8eaa
snd_ctl_type_t snd_ctl_type(snd_ctl_t *ctl);
Packit Service db8eaa
Packit Service db8eaa
const char *snd_ctl_elem_type_name(snd_ctl_elem_type_t type);
Packit Service db8eaa
const char *snd_ctl_elem_iface_name(snd_ctl_elem_iface_t iface);
Packit Service db8eaa
const char *snd_ctl_event_type_name(snd_ctl_event_type_t type);
Packit Service db8eaa
Packit Service db8eaa
unsigned int snd_ctl_event_elem_get_mask(const snd_ctl_event_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_event_elem_get_numid(const snd_ctl_event_t *obj);
Packit Service db8eaa
void snd_ctl_event_elem_get_id(const snd_ctl_event_t *obj, snd_ctl_elem_id_t *ptr);
Packit Service db8eaa
snd_ctl_elem_iface_t snd_ctl_event_elem_get_interface(const snd_ctl_event_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_event_elem_get_device(const snd_ctl_event_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_event_elem_get_subdevice(const snd_ctl_event_t *obj);
Packit Service db8eaa
const char *snd_ctl_event_elem_get_name(const snd_ctl_event_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_event_elem_get_index(const snd_ctl_event_t *obj);
Packit Service db8eaa
Packit Service db8eaa
int snd_ctl_elem_list_alloc_space(snd_ctl_elem_list_t *obj, unsigned int entries);
Packit Service db8eaa
void snd_ctl_elem_list_free_space(snd_ctl_elem_list_t *obj);
Packit Service db8eaa
Packit Service db8eaa
char *snd_ctl_ascii_elem_id_get(snd_ctl_elem_id_t *id);
Packit Service db8eaa
int snd_ctl_ascii_elem_id_parse(snd_ctl_elem_id_t *dst, const char *str);
Packit Service db8eaa
int snd_ctl_ascii_value_parse(snd_ctl_t *handle,
Packit Service db8eaa
			      snd_ctl_elem_value_t *dst,
Packit Service db8eaa
			      snd_ctl_elem_info_t *info,
Packit Service db8eaa
			      const char *value);
Packit Service db8eaa
Packit Service db8eaa
size_t snd_ctl_elem_id_sizeof(void);
Packit Service db8eaa
/** \hideinitializer
Packit Service db8eaa
 * \brief allocate an invalid #snd_ctl_elem_id_t using standard alloca
Packit Service db8eaa
 * \param ptr returned pointer
Packit Service db8eaa
 */
Packit Service db8eaa
#define snd_ctl_elem_id_alloca(ptr) __snd_alloca(ptr, snd_ctl_elem_id)
Packit Service db8eaa
int snd_ctl_elem_id_malloc(snd_ctl_elem_id_t **ptr);
Packit Service db8eaa
void snd_ctl_elem_id_free(snd_ctl_elem_id_t *obj);
Packit Service db8eaa
void snd_ctl_elem_id_clear(snd_ctl_elem_id_t *obj);
Packit Service db8eaa
void snd_ctl_elem_id_copy(snd_ctl_elem_id_t *dst, const snd_ctl_elem_id_t *src);
Packit Service db8eaa
unsigned int snd_ctl_elem_id_get_numid(const snd_ctl_elem_id_t *obj);
Packit Service db8eaa
snd_ctl_elem_iface_t snd_ctl_elem_id_get_interface(const snd_ctl_elem_id_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_elem_id_get_device(const snd_ctl_elem_id_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_elem_id_get_subdevice(const snd_ctl_elem_id_t *obj);
Packit Service db8eaa
const char *snd_ctl_elem_id_get_name(const snd_ctl_elem_id_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_elem_id_get_index(const snd_ctl_elem_id_t *obj);
Packit Service db8eaa
void snd_ctl_elem_id_set_numid(snd_ctl_elem_id_t *obj, unsigned int val);
Packit Service db8eaa
void snd_ctl_elem_id_set_interface(snd_ctl_elem_id_t *obj, snd_ctl_elem_iface_t val);
Packit Service db8eaa
void snd_ctl_elem_id_set_device(snd_ctl_elem_id_t *obj, unsigned int val);
Packit Service db8eaa
void snd_ctl_elem_id_set_subdevice(snd_ctl_elem_id_t *obj, unsigned int val);
Packit Service db8eaa
void snd_ctl_elem_id_set_name(snd_ctl_elem_id_t *obj, const char *val);
Packit Service db8eaa
void snd_ctl_elem_id_set_index(snd_ctl_elem_id_t *obj, unsigned int val);
Packit Service db8eaa
Packit Service db8eaa
size_t snd_ctl_card_info_sizeof(void);
Packit Service db8eaa
/** \hideinitializer
Packit Service db8eaa
 * \brief allocate an invalid #snd_ctl_card_info_t using standard alloca
Packit Service db8eaa
 * \param ptr returned pointer
Packit Service db8eaa
 */
Packit Service db8eaa
#define snd_ctl_card_info_alloca(ptr) __snd_alloca(ptr, snd_ctl_card_info)
Packit Service db8eaa
int snd_ctl_card_info_malloc(snd_ctl_card_info_t **ptr);
Packit Service db8eaa
void snd_ctl_card_info_free(snd_ctl_card_info_t *obj);
Packit Service db8eaa
void snd_ctl_card_info_clear(snd_ctl_card_info_t *obj);
Packit Service db8eaa
void snd_ctl_card_info_copy(snd_ctl_card_info_t *dst, const snd_ctl_card_info_t *src);
Packit Service db8eaa
int snd_ctl_card_info_get_card(const snd_ctl_card_info_t *obj);
Packit Service db8eaa
const char *snd_ctl_card_info_get_id(const snd_ctl_card_info_t *obj);
Packit Service db8eaa
const char *snd_ctl_card_info_get_driver(const snd_ctl_card_info_t *obj);
Packit Service db8eaa
const char *snd_ctl_card_info_get_name(const snd_ctl_card_info_t *obj);
Packit Service db8eaa
const char *snd_ctl_card_info_get_longname(const snd_ctl_card_info_t *obj);
Packit Service db8eaa
const char *snd_ctl_card_info_get_mixername(const snd_ctl_card_info_t *obj);
Packit Service db8eaa
const char *snd_ctl_card_info_get_components(const snd_ctl_card_info_t *obj);
Packit Service db8eaa
Packit Service db8eaa
size_t snd_ctl_event_sizeof(void);
Packit Service db8eaa
/** \hideinitializer
Packit Service db8eaa
 * \brief allocate an invalid #snd_ctl_event_t using standard alloca
Packit Service db8eaa
 * \param ptr returned pointer
Packit Service db8eaa
 */
Packit Service db8eaa
#define snd_ctl_event_alloca(ptr) __snd_alloca(ptr, snd_ctl_event)
Packit Service db8eaa
int snd_ctl_event_malloc(snd_ctl_event_t **ptr);
Packit Service db8eaa
void snd_ctl_event_free(snd_ctl_event_t *obj);
Packit Service db8eaa
void snd_ctl_event_clear(snd_ctl_event_t *obj);
Packit Service db8eaa
void snd_ctl_event_copy(snd_ctl_event_t *dst, const snd_ctl_event_t *src);
Packit Service db8eaa
snd_ctl_event_type_t snd_ctl_event_get_type(const snd_ctl_event_t *obj);
Packit Service db8eaa
Packit Service db8eaa
size_t snd_ctl_elem_list_sizeof(void);
Packit Service db8eaa
Packit Service db8eaa
/** \hideinitializer
Packit Service db8eaa
 *
Packit Service db8eaa
 * \brief Allocate a #snd_ctl_elem_list_t using standard alloca.
Packit Service db8eaa
 *
Packit Service db8eaa
 * The memory is allocated on the stack and will automatically be
Packit Service db8eaa
 * released when the stack unwinds (i.e. no free() is needed).
Packit Service db8eaa
 *
Packit Service db8eaa
 * \param ptr Pointer to allocated memory.
Packit Service db8eaa
 */
Packit Service db8eaa
#define snd_ctl_elem_list_alloca(ptr) __snd_alloca(ptr, snd_ctl_elem_list)
Packit Service db8eaa
Packit Service db8eaa
int snd_ctl_elem_list_malloc(snd_ctl_elem_list_t **ptr);
Packit Service db8eaa
void snd_ctl_elem_list_free(snd_ctl_elem_list_t *obj);
Packit Service db8eaa
void snd_ctl_elem_list_clear(snd_ctl_elem_list_t *obj);
Packit Service db8eaa
void snd_ctl_elem_list_copy(snd_ctl_elem_list_t *dst, const snd_ctl_elem_list_t *src);
Packit Service db8eaa
void snd_ctl_elem_list_set_offset(snd_ctl_elem_list_t *obj, unsigned int val);
Packit Service db8eaa
unsigned int snd_ctl_elem_list_get_used(const snd_ctl_elem_list_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_elem_list_get_count(const snd_ctl_elem_list_t *obj);
Packit Service db8eaa
void snd_ctl_elem_list_get_id(const snd_ctl_elem_list_t *obj, unsigned int idx, snd_ctl_elem_id_t *ptr);
Packit Service db8eaa
unsigned int snd_ctl_elem_list_get_numid(const snd_ctl_elem_list_t *obj, unsigned int idx);
Packit Service db8eaa
snd_ctl_elem_iface_t snd_ctl_elem_list_get_interface(const snd_ctl_elem_list_t *obj, unsigned int idx);
Packit Service db8eaa
unsigned int snd_ctl_elem_list_get_device(const snd_ctl_elem_list_t *obj, unsigned int idx);
Packit Service db8eaa
unsigned int snd_ctl_elem_list_get_subdevice(const snd_ctl_elem_list_t *obj, unsigned int idx);
Packit Service db8eaa
const char *snd_ctl_elem_list_get_name(const snd_ctl_elem_list_t *obj, unsigned int idx);
Packit Service db8eaa
unsigned int snd_ctl_elem_list_get_index(const snd_ctl_elem_list_t *obj, unsigned int idx);
Packit Service db8eaa
Packit Service db8eaa
size_t snd_ctl_elem_info_sizeof(void);
Packit Service db8eaa
/** \hideinitializer
Packit Service db8eaa
 * \brief allocate an invalid #snd_ctl_elem_info_t using standard alloca
Packit Service db8eaa
 * \param ptr returned pointer
Packit Service db8eaa
 */
Packit Service db8eaa
#define snd_ctl_elem_info_alloca(ptr) __snd_alloca(ptr, snd_ctl_elem_info)
Packit Service db8eaa
int snd_ctl_elem_info_malloc(snd_ctl_elem_info_t **ptr);
Packit Service db8eaa
void snd_ctl_elem_info_free(snd_ctl_elem_info_t *obj);
Packit Service db8eaa
void snd_ctl_elem_info_clear(snd_ctl_elem_info_t *obj);
Packit Service db8eaa
void snd_ctl_elem_info_copy(snd_ctl_elem_info_t *dst, const snd_ctl_elem_info_t *src);
Packit Service db8eaa
snd_ctl_elem_type_t snd_ctl_elem_info_get_type(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
int snd_ctl_elem_info_is_readable(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
int snd_ctl_elem_info_is_writable(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
int snd_ctl_elem_info_is_volatile(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
int snd_ctl_elem_info_is_inactive(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
int snd_ctl_elem_info_is_locked(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
int snd_ctl_elem_info_is_tlv_readable(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
int snd_ctl_elem_info_is_tlv_writable(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
int snd_ctl_elem_info_is_tlv_commandable(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
int snd_ctl_elem_info_is_owner(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
int snd_ctl_elem_info_is_user(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
pid_t snd_ctl_elem_info_get_owner(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_elem_info_get_count(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
long snd_ctl_elem_info_get_min(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
long snd_ctl_elem_info_get_max(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
long snd_ctl_elem_info_get_step(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
long long snd_ctl_elem_info_get_min64(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
long long snd_ctl_elem_info_get_max64(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
long long snd_ctl_elem_info_get_step64(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_elem_info_get_items(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
void snd_ctl_elem_info_set_item(snd_ctl_elem_info_t *obj, unsigned int val);
Packit Service db8eaa
const char *snd_ctl_elem_info_get_item_name(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
int snd_ctl_elem_info_get_dimensions(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
int snd_ctl_elem_info_get_dimension(const snd_ctl_elem_info_t *obj, unsigned int idx);
Packit Service db8eaa
int snd_ctl_elem_info_set_dimension(snd_ctl_elem_info_t *info,
Packit Service db8eaa
				    const int dimension[4]);
Packit Service db8eaa
void snd_ctl_elem_info_get_id(const snd_ctl_elem_info_t *obj, snd_ctl_elem_id_t *ptr);
Packit Service db8eaa
unsigned int snd_ctl_elem_info_get_numid(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
snd_ctl_elem_iface_t snd_ctl_elem_info_get_interface(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_elem_info_get_device(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_elem_info_get_subdevice(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
const char *snd_ctl_elem_info_get_name(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_elem_info_get_index(const snd_ctl_elem_info_t *obj);
Packit Service db8eaa
void snd_ctl_elem_info_set_id(snd_ctl_elem_info_t *obj, const snd_ctl_elem_id_t *ptr);
Packit Service db8eaa
void snd_ctl_elem_info_set_numid(snd_ctl_elem_info_t *obj, unsigned int val);
Packit Service db8eaa
void snd_ctl_elem_info_set_interface(snd_ctl_elem_info_t *obj, snd_ctl_elem_iface_t val);
Packit Service db8eaa
void snd_ctl_elem_info_set_device(snd_ctl_elem_info_t *obj, unsigned int val);
Packit Service db8eaa
void snd_ctl_elem_info_set_subdevice(snd_ctl_elem_info_t *obj, unsigned int val);
Packit Service db8eaa
void snd_ctl_elem_info_set_name(snd_ctl_elem_info_t *obj, const char *val);
Packit Service db8eaa
void snd_ctl_elem_info_set_index(snd_ctl_elem_info_t *obj, unsigned int val);
Packit Service db8eaa
Packit Service db8eaa
int snd_ctl_add_integer_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info,
Packit Service db8eaa
				 unsigned int element_count,
Packit Service db8eaa
				 unsigned int member_count,
Packit Service db8eaa
				 long min, long max, long step);
Packit Service db8eaa
int snd_ctl_add_integer64_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info,
Packit Service db8eaa
				   unsigned int element_count,
Packit Service db8eaa
				   unsigned int member_count,
Packit Service db8eaa
				   long long min, long long max,
Packit Service db8eaa
				   long long step);
Packit Service db8eaa
int snd_ctl_add_boolean_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info,
Packit Service db8eaa
				 unsigned int element_count,
Packit Service db8eaa
				 unsigned int member_count);
Packit Service db8eaa
int snd_ctl_add_enumerated_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info,
Packit Service db8eaa
				    unsigned int element_count,
Packit Service db8eaa
				    unsigned int member_count,
Packit Service db8eaa
				    unsigned int items,
Packit Service db8eaa
				    const char *const labels[]);
Packit Service db8eaa
int snd_ctl_add_bytes_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info,
Packit Service db8eaa
			       unsigned int element_count,
Packit Service db8eaa
			       unsigned int member_count);
Packit Service db8eaa
Packit Service db8eaa
int 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);
Packit Service db8eaa
int 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);
Packit Service db8eaa
int snd_ctl_elem_add_boolean(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count);
Packit Service db8eaa
int 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[]);
Packit Service db8eaa
int snd_ctl_elem_add_iec958(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id);
Packit Service db8eaa
int snd_ctl_elem_remove(snd_ctl_t *ctl, snd_ctl_elem_id_t *id);
Packit Service db8eaa
Packit Service db8eaa
size_t snd_ctl_elem_value_sizeof(void);
Packit Service db8eaa
Packit Service db8eaa
/** \hideinitializer
Packit Service db8eaa
 * \brief Allocate an invalid #snd_ctl_elem_value_t on the stack.
Packit Service db8eaa
 *
Packit Service db8eaa
 * Allocate space for a value object on the stack. The allocated
Packit Service db8eaa
 * memory need not be freed, because is on the stack.
Packit Service db8eaa
 *
Packit Service db8eaa
 * See snd_ctl_elem_value_t for details.
Packit Service db8eaa
 *
Packit Service db8eaa
 * \param ptr Pointer to a snd_ctl_elem_value_t pointer. The address
Packit Service db8eaa
 *            of the allocated space will returned here.
Packit Service db8eaa
 */
Packit Service db8eaa
#define snd_ctl_elem_value_alloca(ptr) __snd_alloca(ptr, snd_ctl_elem_value)
Packit Service db8eaa
Packit Service db8eaa
int snd_ctl_elem_value_malloc(snd_ctl_elem_value_t **ptr);
Packit Service db8eaa
void snd_ctl_elem_value_free(snd_ctl_elem_value_t *obj);
Packit Service db8eaa
void snd_ctl_elem_value_clear(snd_ctl_elem_value_t *obj);
Packit Service db8eaa
void snd_ctl_elem_value_copy(snd_ctl_elem_value_t *dst, const snd_ctl_elem_value_t *src);
Packit Service db8eaa
int snd_ctl_elem_value_compare(snd_ctl_elem_value_t *left, const snd_ctl_elem_value_t *right);
Packit Service db8eaa
void snd_ctl_elem_value_get_id(const snd_ctl_elem_value_t *obj, snd_ctl_elem_id_t *ptr);
Packit Service db8eaa
unsigned int snd_ctl_elem_value_get_numid(const snd_ctl_elem_value_t *obj);
Packit Service db8eaa
snd_ctl_elem_iface_t snd_ctl_elem_value_get_interface(const snd_ctl_elem_value_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_elem_value_get_device(const snd_ctl_elem_value_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_elem_value_get_subdevice(const snd_ctl_elem_value_t *obj);
Packit Service db8eaa
const char *snd_ctl_elem_value_get_name(const snd_ctl_elem_value_t *obj);
Packit Service db8eaa
unsigned int snd_ctl_elem_value_get_index(const snd_ctl_elem_value_t *obj);
Packit Service db8eaa
void snd_ctl_elem_value_set_id(snd_ctl_elem_value_t *obj, const snd_ctl_elem_id_t *ptr);
Packit Service db8eaa
void snd_ctl_elem_value_set_numid(snd_ctl_elem_value_t *obj, unsigned int val);
Packit Service db8eaa
void snd_ctl_elem_value_set_interface(snd_ctl_elem_value_t *obj, snd_ctl_elem_iface_t val);
Packit Service db8eaa
void snd_ctl_elem_value_set_device(snd_ctl_elem_value_t *obj, unsigned int val);
Packit Service db8eaa
void snd_ctl_elem_value_set_subdevice(snd_ctl_elem_value_t *obj, unsigned int val);
Packit Service db8eaa
void snd_ctl_elem_value_set_name(snd_ctl_elem_value_t *obj, const char *val);
Packit Service db8eaa
void snd_ctl_elem_value_set_index(snd_ctl_elem_value_t *obj, unsigned int val);
Packit Service db8eaa
int snd_ctl_elem_value_get_boolean(const snd_ctl_elem_value_t *obj, unsigned int idx);
Packit Service db8eaa
long snd_ctl_elem_value_get_integer(const snd_ctl_elem_value_t *obj, unsigned int idx);
Packit Service db8eaa
long long snd_ctl_elem_value_get_integer64(const snd_ctl_elem_value_t *obj, unsigned int idx);
Packit Service db8eaa
unsigned int snd_ctl_elem_value_get_enumerated(const snd_ctl_elem_value_t *obj, unsigned int idx);
Packit Service db8eaa
unsigned char snd_ctl_elem_value_get_byte(const snd_ctl_elem_value_t *obj, unsigned int idx);
Packit Service db8eaa
void snd_ctl_elem_value_set_boolean(snd_ctl_elem_value_t *obj, unsigned int idx, long val);
Packit Service db8eaa
void snd_ctl_elem_value_set_integer(snd_ctl_elem_value_t *obj, unsigned int idx, long val);
Packit Service db8eaa
void snd_ctl_elem_value_set_integer64(snd_ctl_elem_value_t *obj, unsigned int idx, long long val);
Packit Service db8eaa
void snd_ctl_elem_value_set_enumerated(snd_ctl_elem_value_t *obj, unsigned int idx, unsigned int val);
Packit Service db8eaa
void snd_ctl_elem_value_set_byte(snd_ctl_elem_value_t *obj, unsigned int idx, unsigned char val);
Packit Service db8eaa
void snd_ctl_elem_set_bytes(snd_ctl_elem_value_t *obj, void *data, size_t size);
Packit Service db8eaa
const void * snd_ctl_elem_value_get_bytes(const snd_ctl_elem_value_t *obj);
Packit Service db8eaa
void snd_ctl_elem_value_get_iec958(const snd_ctl_elem_value_t *obj, snd_aes_iec958_t *ptr);
Packit Service db8eaa
void snd_ctl_elem_value_set_iec958(snd_ctl_elem_value_t *obj, const snd_aes_iec958_t *ptr);
Packit Service db8eaa
Packit Service db8eaa
int snd_tlv_parse_dB_info(unsigned int *tlv, unsigned int tlv_size,
Packit Service db8eaa
			  unsigned int **db_tlvp);
Packit Service db8eaa
int snd_tlv_get_dB_range(unsigned int *tlv, long rangemin, long rangemax,
Packit Service db8eaa
			 long *min, long *max);
Packit Service db8eaa
int snd_tlv_convert_to_dB(unsigned int *tlv, long rangemin, long rangemax,
Packit Service db8eaa
			  long volume, long *db_gain);
Packit Service db8eaa
int snd_tlv_convert_from_dB(unsigned int *tlv, long rangemin, long rangemax,
Packit Service db8eaa
			    long db_gain, long *value, int xdir);
Packit Service db8eaa
int snd_ctl_get_dB_range(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id,
Packit Service db8eaa
			 long *min, long *max);
Packit Service db8eaa
int snd_ctl_convert_to_dB(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id,
Packit Service db8eaa
			  long volume, long *db_gain);
Packit Service db8eaa
int snd_ctl_convert_from_dB(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id,
Packit Service db8eaa
			    long db_gain, long *value, int xdir);
Packit Service db8eaa
Packit Service db8eaa
/**
Packit Service db8eaa
 *  \defgroup HControl High level Control Interface
Packit Service db8eaa
 *  \ingroup Control
Packit Service db8eaa
 *  The high level control interface.
Packit Service db8eaa
 *  See \ref hcontrol page for more details.
Packit Service db8eaa
 *  \{
Packit Service db8eaa
 */
Packit Service db8eaa
Packit Service db8eaa
/** HCTL element handle */
Packit Service db8eaa
typedef struct _snd_hctl_elem snd_hctl_elem_t;
Packit Service db8eaa
Packit Service db8eaa
/** HCTL handle */
Packit Service db8eaa
typedef struct _snd_hctl snd_hctl_t;
Packit Service db8eaa
Packit Service db8eaa
/**
Packit Service db8eaa
 * \brief Compare function for sorting HCTL elements
Packit Service db8eaa
 * \param e1 First element
Packit Service db8eaa
 * \param e2 Second element
Packit Service db8eaa
 * \return -1 if e1 < e2, 0 if e1 == e2, 1 if e1 > e2
Packit Service db8eaa
 */
Packit Service db8eaa
typedef int (*snd_hctl_compare_t)(const snd_hctl_elem_t *e1,
Packit Service db8eaa
				  const snd_hctl_elem_t *e2);
Packit Service db8eaa
int snd_hctl_compare_fast(const snd_hctl_elem_t *c1,
Packit Service db8eaa
			  const snd_hctl_elem_t *c2);
Packit Service db8eaa
/** 
Packit Service db8eaa
 * \brief HCTL callback function
Packit Service db8eaa
 * \param hctl HCTL handle
Packit Service db8eaa
 * \param mask event mask
Packit Service db8eaa
 * \param elem related HCTL element (if any)
Packit Service db8eaa
 * \return 0 on success otherwise a negative error code
Packit Service db8eaa
 */
Packit Service db8eaa
typedef int (*snd_hctl_callback_t)(snd_hctl_t *hctl,
Packit Service db8eaa
				   unsigned int mask,
Packit Service db8eaa
				   snd_hctl_elem_t *elem);
Packit Service db8eaa
/** 
Packit Service db8eaa
 * \brief HCTL element callback function
Packit Service db8eaa
 * \param elem HCTL element
Packit Service db8eaa
 * \param mask event mask
Packit Service db8eaa
 * \return 0 on success otherwise a negative error code
Packit Service db8eaa
 */
Packit Service db8eaa
typedef int (*snd_hctl_elem_callback_t)(snd_hctl_elem_t *elem,
Packit Service db8eaa
					unsigned int mask);
Packit Service db8eaa
Packit Service db8eaa
int snd_hctl_open(snd_hctl_t **hctl, const char *name, int mode);
Packit Service db8eaa
int snd_hctl_open_ctl(snd_hctl_t **hctlp, snd_ctl_t *ctl);
Packit Service db8eaa
int snd_hctl_close(snd_hctl_t *hctl);
Packit Service db8eaa
int snd_hctl_nonblock(snd_hctl_t *hctl, int nonblock);
Packit Service db8eaa
static __inline__ int snd_hctl_abort(snd_hctl_t *hctl) { return snd_hctl_nonblock(hctl, 2); }
Packit Service db8eaa
int snd_hctl_poll_descriptors_count(snd_hctl_t *hctl);
Packit Service db8eaa
int snd_hctl_poll_descriptors(snd_hctl_t *hctl, struct pollfd *pfds, unsigned int space);
Packit Service db8eaa
int snd_hctl_poll_descriptors_revents(snd_hctl_t *ctl, struct pollfd *pfds, unsigned int nfds, unsigned short *revents);
Packit Service db8eaa
unsigned int snd_hctl_get_count(snd_hctl_t *hctl);
Packit Service db8eaa
int snd_hctl_set_compare(snd_hctl_t *hctl, snd_hctl_compare_t hsort);
Packit Service db8eaa
snd_hctl_elem_t *snd_hctl_first_elem(snd_hctl_t *hctl);
Packit Service db8eaa
snd_hctl_elem_t *snd_hctl_last_elem(snd_hctl_t *hctl);
Packit Service db8eaa
snd_hctl_elem_t *snd_hctl_find_elem(snd_hctl_t *hctl, const snd_ctl_elem_id_t *id);
Packit Service db8eaa
void snd_hctl_set_callback(snd_hctl_t *hctl, snd_hctl_callback_t callback);
Packit Service db8eaa
void snd_hctl_set_callback_private(snd_hctl_t *hctl, void *data);
Packit Service db8eaa
void *snd_hctl_get_callback_private(snd_hctl_t *hctl);
Packit Service db8eaa
int snd_hctl_load(snd_hctl_t *hctl);
Packit Service db8eaa
int snd_hctl_free(snd_hctl_t *hctl);
Packit Service db8eaa
int snd_hctl_handle_events(snd_hctl_t *hctl);
Packit Service db8eaa
const char *snd_hctl_name(snd_hctl_t *hctl);
Packit Service db8eaa
int snd_hctl_wait(snd_hctl_t *hctl, int timeout);
Packit Service db8eaa
snd_ctl_t *snd_hctl_ctl(snd_hctl_t *hctl);
Packit Service db8eaa
Packit Service db8eaa
snd_hctl_elem_t *snd_hctl_elem_next(snd_hctl_elem_t *elem);
Packit Service db8eaa
snd_hctl_elem_t *snd_hctl_elem_prev(snd_hctl_elem_t *elem);
Packit Service db8eaa
int snd_hctl_elem_info(snd_hctl_elem_t *elem, snd_ctl_elem_info_t * info);
Packit Service db8eaa
int snd_hctl_elem_read(snd_hctl_elem_t *elem, snd_ctl_elem_value_t * value);
Packit Service db8eaa
int snd_hctl_elem_write(snd_hctl_elem_t *elem, snd_ctl_elem_value_t * value);
Packit Service db8eaa
int snd_hctl_elem_tlv_read(snd_hctl_elem_t *elem, unsigned int *tlv, unsigned int tlv_size);
Packit Service db8eaa
int snd_hctl_elem_tlv_write(snd_hctl_elem_t *elem, const unsigned int *tlv);
Packit Service db8eaa
int snd_hctl_elem_tlv_command(snd_hctl_elem_t *elem, const unsigned int *tlv);
Packit Service db8eaa
Packit Service db8eaa
snd_hctl_t *snd_hctl_elem_get_hctl(snd_hctl_elem_t *elem);
Packit Service db8eaa
Packit Service db8eaa
void snd_hctl_elem_get_id(const snd_hctl_elem_t *obj, snd_ctl_elem_id_t *ptr);
Packit Service db8eaa
unsigned int snd_hctl_elem_get_numid(const snd_hctl_elem_t *obj);
Packit Service db8eaa
snd_ctl_elem_iface_t snd_hctl_elem_get_interface(const snd_hctl_elem_t *obj);
Packit Service db8eaa
unsigned int snd_hctl_elem_get_device(const snd_hctl_elem_t *obj);
Packit Service db8eaa
unsigned int snd_hctl_elem_get_subdevice(const snd_hctl_elem_t *obj);
Packit Service db8eaa
const char *snd_hctl_elem_get_name(const snd_hctl_elem_t *obj);
Packit Service db8eaa
unsigned int snd_hctl_elem_get_index(const snd_hctl_elem_t *obj);
Packit Service db8eaa
void snd_hctl_elem_set_callback(snd_hctl_elem_t *obj, snd_hctl_elem_callback_t val);
Packit Service db8eaa
void * snd_hctl_elem_get_callback_private(const snd_hctl_elem_t *obj);
Packit Service db8eaa
void snd_hctl_elem_set_callback_private(snd_hctl_elem_t *obj, void * val);
Packit Service db8eaa
Packit Service db8eaa
/** \} */
Packit Service db8eaa
Packit Service db8eaa
/** \} */
Packit Service db8eaa
Packit Service db8eaa
/**
Packit Service db8eaa
 *  \defgroup SControl Setup Control Interface
Packit Service db8eaa
 *  \ingroup Control
Packit Service db8eaa
 *  The setup control interface - set or modify control elements from a configuration file.
Packit Service db8eaa
 *  \{
Packit Service db8eaa
 */
Packit Service db8eaa
Packit Service db8eaa
int snd_sctl_build(snd_sctl_t **ctl, snd_ctl_t *handle, snd_config_t *config,
Packit Service db8eaa
		   snd_config_t *private_data, int mode);
Packit Service db8eaa
int snd_sctl_free(snd_sctl_t *handle);
Packit Service db8eaa
int snd_sctl_install(snd_sctl_t *handle);
Packit Service db8eaa
int snd_sctl_remove(snd_sctl_t *handle);
Packit Service db8eaa
Packit Service db8eaa
/** \} */
Packit Service db8eaa
Packit Service db8eaa
#ifdef __cplusplus
Packit Service db8eaa
}
Packit Service db8eaa
#endif
Packit Service db8eaa
Packit Service db8eaa
#endif /* __ALSA_CONTROL_H */