ALSA project - the C library reference
control.h
Go to the documentation of this file.
1 
11 /*
12  * This library is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU Lesser General Public License as
14  * published by the Free Software Foundation; either version 2.1 of
15  * the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU Lesser General Public License for more details.
21  *
22  * You should have received a copy of the GNU Lesser General Public
23  * License along with this library; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25  *
26  */
27 
28 #ifndef __ALSA_CONTROL_H
29 #define __ALSA_CONTROL_H
30 
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34 
43 #define SND_CONTROL_DLSYM_VERSION _dlsym_control_001
44 
46 typedef struct snd_aes_iec958 {
47  unsigned char status[24];
48  unsigned char subcode[147];
49  unsigned char pad;
50  unsigned char dig_subframe[4];
52 
54 typedef struct _snd_ctl_card_info snd_ctl_card_info_t;
55 
57 typedef struct _snd_ctl_elem_id snd_ctl_elem_id_t;
58 
128 typedef struct _snd_ctl_elem_list snd_ctl_elem_list_t;
129 
131 typedef struct _snd_ctl_elem_info snd_ctl_elem_info_t;
132 
180 typedef struct _snd_ctl_elem_value snd_ctl_elem_value_t;
181 
183 typedef struct _snd_ctl_event snd_ctl_event_t;
184 
186 typedef enum _snd_ctl_elem_type {
201  SND_CTL_ELEM_TYPE_LAST = SND_CTL_ELEM_TYPE_INTEGER64
203 
205 typedef enum _snd_ctl_elem_iface {
220  SND_CTL_ELEM_IFACE_LAST = SND_CTL_ELEM_IFACE_SEQUENCER
222 
224 typedef enum _snd_ctl_event_type {
227  SND_CTL_EVENT_LAST = SND_CTL_EVENT_ELEM
229 
232 #define SND_CTL_EVENT_MASK_REMOVE (~0U)
234 #define SND_CTL_EVENT_MASK_VALUE (1<<0)
236 #define SND_CTL_EVENT_MASK_INFO (1<<1)
238 #define SND_CTL_EVENT_MASK_ADD (1<<2)
240 #define SND_CTL_EVENT_MASK_TLV (1<<3)
241 
243 #define SND_CTL_NAME_NONE ""
245 #define SND_CTL_NAME_PLAYBACK "Playback "
247 #define SND_CTL_NAME_CAPTURE "Capture "
248 
250 #define SND_CTL_NAME_IEC958_NONE ""
252 #define SND_CTL_NAME_IEC958_SWITCH "Switch"
254 #define SND_CTL_NAME_IEC958_VOLUME "Volume"
256 #define SND_CTL_NAME_IEC958_DEFAULT "Default"
258 #define SND_CTL_NAME_IEC958_MASK "Mask"
260 #define SND_CTL_NAME_IEC958_CON_MASK "Con Mask"
262 #define SND_CTL_NAME_IEC958_PRO_MASK "Pro Mask"
264 #define SND_CTL_NAME_IEC958_PCM_STREAM "PCM Stream"
266 #define SND_CTL_NAME_IEC958(expl,direction,what) "IEC958 " expl SND_CTL_NAME_##direction SND_CTL_NAME_IEC958_##what
267 
269 #define SND_CTL_POWER_MASK 0xff00
271 #define SND_CTL_POWER_D0 0x0000
273 #define SND_CTL_POWER_D1 0x0100
275 #define SND_CTL_POWER_D2 0x0200
277 #define SND_CTL_POWER_D3 0x0300
279 #define SND_CTL_POWER_D3hot (SND_CTL_POWER_D3|0x0000)
281 #define SND_CTL_POWER_D3cold (SND_CTL_POWER_D3|0x0001)
282 
284 #define SND_CTL_TLVT_CONTAINER 0x0000
286 #define SND_CTL_TLVT_DB_SCALE 0x0001
288 #define SND_CTL_TLVT_DB_LINEAR 0x0002
290 #define SND_CTL_TLVT_DB_RANGE 0x0003
292 #define SND_CTL_TLVT_DB_MINMAX 0x0004
294 #define SND_CTL_TLVT_DB_MINMAX_MUTE 0x0005
295 
297 #define SND_CTL_TLV_DB_GAIN_MUTE -9999999
298 
300 #define SND_CTL_TLVT_CHMAP_FIXED 0x00101
302 #define SND_CTL_TLVT_CHMAP_VAR 0x00102
304 #define SND_CTL_TLVT_CHMAP_PAIRED 0x00103
305 
307 typedef enum _snd_ctl_type {
317 
319 #define SND_CTL_NONBLOCK 0x0001
320 
322 #define SND_CTL_ASYNC 0x0002
323 
325 #define SND_CTL_READONLY 0x0004
326 
328 typedef struct _snd_ctl snd_ctl_t;
329 
331 #define SND_SCTL_NOFREE 0x0001
332 
334 typedef struct _snd_sctl snd_sctl_t;
335 
336 int snd_card_load(int card);
337 int snd_card_next(int *card);
338 int snd_card_get_index(const char *name);
339 int snd_card_get_name(int card, char **name);
340 int snd_card_get_longname(int card, char **name);
341 
342 int snd_device_name_hint(int card, const char *iface, void ***hints);
343 int snd_device_name_free_hint(void **hints);
344 char *snd_device_name_get_hint(const void *hint, const char *id);
345 
346 int snd_ctl_open(snd_ctl_t **ctl, const char *name, int mode);
347 int snd_ctl_open_lconf(snd_ctl_t **ctl, const char *name, int mode, snd_config_t *lconf);
348 int snd_ctl_open_fallback(snd_ctl_t **ctl, snd_config_t *root, const char *name, const char *orig_name, int mode);
349 int snd_ctl_close(snd_ctl_t *ctl);
350 int snd_ctl_nonblock(snd_ctl_t *ctl, int nonblock);
351 static __inline__ int snd_ctl_abort(snd_ctl_t *ctl) { return snd_ctl_nonblock(ctl, 2); }
353  snd_async_callback_t callback, void *private_data);
356 int snd_ctl_poll_descriptors(snd_ctl_t *ctl, struct pollfd *pfds, unsigned int space);
357 int snd_ctl_poll_descriptors_revents(snd_ctl_t *ctl, struct pollfd *pfds, unsigned int nfds, unsigned short *revents);
358 int snd_ctl_subscribe_events(snd_ctl_t *ctl, int subscribe);
367  unsigned int *tlv, unsigned int tlv_size);
369  const unsigned int *tlv);
371  const unsigned int *tlv);
372 #ifdef __ALSA_HWDEP_H
373 int snd_ctl_hwdep_next_device(snd_ctl_t *ctl, int * device);
375 #endif
376 #ifdef __ALSA_PCM_H
377 int snd_ctl_pcm_next_device(snd_ctl_t *ctl, int *device);
378 int snd_ctl_pcm_info(snd_ctl_t *ctl, snd_pcm_info_t * info);
379 int snd_ctl_pcm_prefer_subdevice(snd_ctl_t *ctl, int subdev);
380 #endif
381 #ifdef __ALSA_RAWMIDI_H
382 int snd_ctl_rawmidi_next_device(snd_ctl_t *ctl, int * device);
384 int snd_ctl_rawmidi_prefer_subdevice(snd_ctl_t *ctl, int subdev);
385 #endif
386 int snd_ctl_set_power_state(snd_ctl_t *ctl, unsigned int state);
387 int snd_ctl_get_power_state(snd_ctl_t *ctl, unsigned int *state);
388 
389 int snd_ctl_read(snd_ctl_t *ctl, snd_ctl_event_t *event);
390 int snd_ctl_wait(snd_ctl_t *ctl, int timeout);
391 const char *snd_ctl_name(snd_ctl_t *ctl);
393 
397 
398 unsigned int snd_ctl_event_elem_get_mask(const snd_ctl_event_t *obj);
399 unsigned int snd_ctl_event_elem_get_numid(const snd_ctl_event_t *obj);
402 unsigned int snd_ctl_event_elem_get_device(const snd_ctl_event_t *obj);
403 unsigned int snd_ctl_event_elem_get_subdevice(const snd_ctl_event_t *obj);
404 const char *snd_ctl_event_elem_get_name(const snd_ctl_event_t *obj);
405 unsigned int snd_ctl_event_elem_get_index(const snd_ctl_event_t *obj);
406 
407 int snd_ctl_elem_list_alloc_space(snd_ctl_elem_list_t *obj, unsigned int entries);
409 
411 int snd_ctl_ascii_elem_id_parse(snd_ctl_elem_id_t *dst, const char *str);
414  snd_ctl_elem_info_t *info,
415  const char *value);
416 
417 size_t snd_ctl_elem_id_sizeof(void);
422 #define snd_ctl_elem_id_alloca(ptr) __snd_alloca(ptr, snd_ctl_elem_id)
427 unsigned int snd_ctl_elem_id_get_numid(const snd_ctl_elem_id_t *obj);
429 unsigned int snd_ctl_elem_id_get_device(const snd_ctl_elem_id_t *obj);
430 unsigned int snd_ctl_elem_id_get_subdevice(const snd_ctl_elem_id_t *obj);
431 const char *snd_ctl_elem_id_get_name(const snd_ctl_elem_id_t *obj);
432 unsigned int snd_ctl_elem_id_get_index(const snd_ctl_elem_id_t *obj);
433 void snd_ctl_elem_id_set_numid(snd_ctl_elem_id_t *obj, unsigned int val);
435 void snd_ctl_elem_id_set_device(snd_ctl_elem_id_t *obj, unsigned int val);
436 void snd_ctl_elem_id_set_subdevice(snd_ctl_elem_id_t *obj, unsigned int val);
437 void snd_ctl_elem_id_set_name(snd_ctl_elem_id_t *obj, const char *val);
438 void snd_ctl_elem_id_set_index(snd_ctl_elem_id_t *obj, unsigned int val);
439 
440 size_t snd_ctl_card_info_sizeof(void);
445 #define snd_ctl_card_info_alloca(ptr) __snd_alloca(ptr, snd_ctl_card_info)
451 const char *snd_ctl_card_info_get_id(const snd_ctl_card_info_t *obj);
452 const char *snd_ctl_card_info_get_driver(const snd_ctl_card_info_t *obj);
453 const char *snd_ctl_card_info_get_name(const snd_ctl_card_info_t *obj);
457 
458 size_t snd_ctl_event_sizeof(void);
463 #define snd_ctl_event_alloca(ptr) __snd_alloca(ptr, snd_ctl_event)
467 void snd_ctl_event_copy(snd_ctl_event_t *dst, const snd_ctl_event_t *src);
469 
470 size_t snd_ctl_elem_list_sizeof(void);
471 
481 #define snd_ctl_elem_list_alloca(ptr) __snd_alloca(ptr, snd_ctl_elem_list)
482 
487 void snd_ctl_elem_list_set_offset(snd_ctl_elem_list_t *obj, unsigned int val);
488 unsigned int snd_ctl_elem_list_get_used(const snd_ctl_elem_list_t *obj);
489 unsigned int snd_ctl_elem_list_get_count(const snd_ctl_elem_list_t *obj);
490 void snd_ctl_elem_list_get_id(const snd_ctl_elem_list_t *obj, unsigned int idx, snd_ctl_elem_id_t *ptr);
491 unsigned int snd_ctl_elem_list_get_numid(const snd_ctl_elem_list_t *obj, unsigned int idx);
493 unsigned int snd_ctl_elem_list_get_device(const snd_ctl_elem_list_t *obj, unsigned int idx);
494 unsigned int snd_ctl_elem_list_get_subdevice(const snd_ctl_elem_list_t *obj, unsigned int idx);
495 const char *snd_ctl_elem_list_get_name(const snd_ctl_elem_list_t *obj, unsigned int idx);
496 unsigned int snd_ctl_elem_list_get_index(const snd_ctl_elem_list_t *obj, unsigned int idx);
497 
498 size_t snd_ctl_elem_info_sizeof(void);
503 #define snd_ctl_elem_info_alloca(ptr) __snd_alloca(ptr, snd_ctl_elem_info)
520 unsigned int snd_ctl_elem_info_get_count(const snd_ctl_elem_info_t *obj);
527 unsigned int snd_ctl_elem_info_get_items(const snd_ctl_elem_info_t *obj);
528 void snd_ctl_elem_info_set_item(snd_ctl_elem_info_t *obj, unsigned int val);
531 int snd_ctl_elem_info_get_dimension(const snd_ctl_elem_info_t *obj, unsigned int idx);
533  const int dimension[4]);
535 unsigned int snd_ctl_elem_info_get_numid(const snd_ctl_elem_info_t *obj);
537 unsigned int snd_ctl_elem_info_get_device(const snd_ctl_elem_info_t *obj);
539 const char *snd_ctl_elem_info_get_name(const snd_ctl_elem_info_t *obj);
540 unsigned int snd_ctl_elem_info_get_index(const snd_ctl_elem_info_t *obj);
542 void snd_ctl_elem_info_set_numid(snd_ctl_elem_info_t *obj, unsigned int val);
544 void snd_ctl_elem_info_set_device(snd_ctl_elem_info_t *obj, unsigned int val);
545 void snd_ctl_elem_info_set_subdevice(snd_ctl_elem_info_t *obj, unsigned int val);
546 void snd_ctl_elem_info_set_name(snd_ctl_elem_info_t *obj, const char *val);
547 void snd_ctl_elem_info_set_index(snd_ctl_elem_info_t *obj, unsigned int val);
548 
550  unsigned int element_count,
551  unsigned int member_count,
552  long min, long max, long step);
554  unsigned int element_count,
555  unsigned int member_count,
556  long long min, long long max,
557  long long step);
559  unsigned int element_count,
560  unsigned int member_count);
562  unsigned int element_count,
563  unsigned int member_count,
564  unsigned int items,
565  const char *const labels[]);
567  unsigned int element_count,
568  unsigned int member_count);
569 
570 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);
571 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);
572 int snd_ctl_elem_add_boolean(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count);
573 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[]);
576 
577 size_t snd_ctl_elem_value_sizeof(void);
578 
590 #define snd_ctl_elem_value_alloca(ptr) __snd_alloca(ptr, snd_ctl_elem_value)
591 
598 unsigned int snd_ctl_elem_value_get_numid(const snd_ctl_elem_value_t *obj);
600 unsigned int snd_ctl_elem_value_get_device(const snd_ctl_elem_value_t *obj);
602 const char *snd_ctl_elem_value_get_name(const snd_ctl_elem_value_t *obj);
603 unsigned int snd_ctl_elem_value_get_index(const snd_ctl_elem_value_t *obj);
605 void snd_ctl_elem_value_set_numid(snd_ctl_elem_value_t *obj, unsigned int val);
607 void snd_ctl_elem_value_set_device(snd_ctl_elem_value_t *obj, unsigned int val);
608 void snd_ctl_elem_value_set_subdevice(snd_ctl_elem_value_t *obj, unsigned int val);
609 void snd_ctl_elem_value_set_name(snd_ctl_elem_value_t *obj, const char *val);
610 void snd_ctl_elem_value_set_index(snd_ctl_elem_value_t *obj, unsigned int val);
611 int snd_ctl_elem_value_get_boolean(const snd_ctl_elem_value_t *obj, unsigned int idx);
612 long snd_ctl_elem_value_get_integer(const snd_ctl_elem_value_t *obj, unsigned int idx);
613 long long snd_ctl_elem_value_get_integer64(const snd_ctl_elem_value_t *obj, unsigned int idx);
614 unsigned int snd_ctl_elem_value_get_enumerated(const snd_ctl_elem_value_t *obj, unsigned int idx);
615 unsigned char snd_ctl_elem_value_get_byte(const snd_ctl_elem_value_t *obj, unsigned int idx);
616 void snd_ctl_elem_value_set_boolean(snd_ctl_elem_value_t *obj, unsigned int idx, long val);
617 void snd_ctl_elem_value_set_integer(snd_ctl_elem_value_t *obj, unsigned int idx, long val);
618 void snd_ctl_elem_value_set_integer64(snd_ctl_elem_value_t *obj, unsigned int idx, long long val);
619 void snd_ctl_elem_value_set_enumerated(snd_ctl_elem_value_t *obj, unsigned int idx, unsigned int val);
620 void snd_ctl_elem_value_set_byte(snd_ctl_elem_value_t *obj, unsigned int idx, unsigned char val);
621 void snd_ctl_elem_set_bytes(snd_ctl_elem_value_t *obj, void *data, size_t size);
622 const void * snd_ctl_elem_value_get_bytes(const snd_ctl_elem_value_t *obj);
625 
626 int snd_tlv_parse_dB_info(unsigned int *tlv, unsigned int tlv_size,
627  unsigned int **db_tlvp);
628 int snd_tlv_get_dB_range(unsigned int *tlv, long rangemin, long rangemax,
629  long *min, long *max);
630 int snd_tlv_convert_to_dB(unsigned int *tlv, long rangemin, long rangemax,
631  long volume, long *db_gain);
632 int snd_tlv_convert_from_dB(unsigned int *tlv, long rangemin, long rangemax,
633  long db_gain, long *value, int xdir);
635  long *min, long *max);
637  long volume, long *db_gain);
639  long db_gain, long *value, int xdir);
640 
650 typedef struct _snd_hctl_elem snd_hctl_elem_t;
651 
653 typedef struct _snd_hctl snd_hctl_t;
654 
661 typedef int (*snd_hctl_compare_t)(const snd_hctl_elem_t *e1,
662  const snd_hctl_elem_t *e2);
664  const snd_hctl_elem_t *c2);
672 typedef int (*snd_hctl_callback_t)(snd_hctl_t *hctl,
673  unsigned int mask,
674  snd_hctl_elem_t *elem);
682  unsigned int mask);
683 
684 int snd_hctl_open(snd_hctl_t **hctl, const char *name, int mode);
685 int snd_hctl_open_ctl(snd_hctl_t **hctlp, snd_ctl_t *ctl);
686 int snd_hctl_close(snd_hctl_t *hctl);
687 int snd_hctl_nonblock(snd_hctl_t *hctl, int nonblock);
688 static __inline__ int snd_hctl_abort(snd_hctl_t *hctl) { return snd_hctl_nonblock(hctl, 2); }
690 int snd_hctl_poll_descriptors(snd_hctl_t *hctl, struct pollfd *pfds, unsigned int space);
691 int snd_hctl_poll_descriptors_revents(snd_hctl_t *ctl, struct pollfd *pfds, unsigned int nfds, unsigned short *revents);
692 unsigned int snd_hctl_get_count(snd_hctl_t *hctl);
698 void snd_hctl_set_callback_private(snd_hctl_t *hctl, void *data);
700 int snd_hctl_load(snd_hctl_t *hctl);
701 int snd_hctl_free(snd_hctl_t *hctl);
703 const char *snd_hctl_name(snd_hctl_t *hctl);
704 int snd_hctl_wait(snd_hctl_t *hctl, int timeout);
706 
712 int snd_hctl_elem_tlv_read(snd_hctl_elem_t *elem, unsigned int *tlv, unsigned int tlv_size);
713 int snd_hctl_elem_tlv_write(snd_hctl_elem_t *elem, const unsigned int *tlv);
714 int snd_hctl_elem_tlv_command(snd_hctl_elem_t *elem, const unsigned int *tlv);
715 
717 
719 unsigned int snd_hctl_elem_get_numid(const snd_hctl_elem_t *obj);
721 unsigned int snd_hctl_elem_get_device(const snd_hctl_elem_t *obj);
722 unsigned int snd_hctl_elem_get_subdevice(const snd_hctl_elem_t *obj);
723 const char *snd_hctl_elem_get_name(const snd_hctl_elem_t *obj);
724 unsigned int snd_hctl_elem_get_index(const snd_hctl_elem_t *obj);
728 
740 int snd_sctl_build(snd_sctl_t **ctl, snd_ctl_t *handle, snd_config_t *config,
741  snd_config_t *private_data, int mode);
742 int snd_sctl_free(snd_sctl_t *handle);
743 int snd_sctl_install(snd_sctl_t *handle);
744 int snd_sctl_remove(snd_sctl_t *handle);
745 
748 #ifdef __cplusplus
749 }
750 #endif
751 
752 #endif /* __ALSA_CONTROL_H */
int snd_ctl_pcm_prefer_subdevice(snd_ctl_t *ctl, int subdev)
Set preferred PCM subdevice number of successive PCM open.
Definition: control.c:1173
int snd_ctl_rawmidi_next_device(snd_ctl_t *ctl, int *device)
Get next RawMidi device number.
Definition: control.c:1185
int snd_ctl_hwdep_info(snd_ctl_t *ctl, snd_hwdep_info_t *info)
Get info about a hardware dependent device.
Definition: control.c:1137
int snd_ctl_rawmidi_info(snd_ctl_t *ctl, snd_rawmidi_info_t *info)
Get info about a RawMidi device.
Definition: control.c:1197
int snd_ctl_hwdep_next_device(snd_ctl_t *ctl, int *device)
Get next hardware dependent device number.
Definition: control.c:1125
int snd_ctl_pcm_info(snd_ctl_t *ctl, snd_pcm_info_t *info)
Get info about a PCM device.
Definition: control.c:1161
int snd_ctl_pcm_next_device(snd_ctl_t *ctl, int *device)
Get next PCM device number.
Definition: control.c:1149
int snd_ctl_rawmidi_prefer_subdevice(snd_ctl_t *ctl, int subdev)
Set preferred RawMidi subdevice number of successive RawMidi open.
Definition: control.c:1209
struct _snd_config snd_config_t
Internal structure for a configuration node object.
Definition: conf.h:69
int snd_ctl_open_fallback(snd_ctl_t **ctl, snd_config_t *root, const char *name, const char *orig_name, int mode)
Opens a fallback CTL.
Definition: control.c:1524
size_t snd_ctl_elem_value_sizeof(void)
Get size of data structure for an element.
Definition: control.c:2897
void snd_ctl_elem_value_set_interface(snd_ctl_elem_value_t *obj, snd_ctl_elem_iface_t val)
Set the identifiers 'interface' part within the given element value.
Definition: control.c:3108
int snd_ctl_ascii_value_parse(snd_ctl_t *handle, snd_ctl_elem_value_t *dst, snd_ctl_elem_info_t *info, const char *value)
parse ASCII string as CTL element value
Definition: ctlparse.c:341
struct _snd_ctl snd_ctl_t
Definition: control.h:328
size_t snd_ctl_elem_info_sizeof(void)
get size of snd_ctl_elem_info_t
Definition: control.c:2335
int snd_ctl_nonblock(snd_ctl_t *ctl, int nonblock)
set nonblock mode
Definition: control.c:213
void snd_ctl_elem_value_set_byte(snd_ctl_elem_value_t *obj, unsigned int idx, unsigned char val)
Set an element members value.
Definition: control.c:3343
unsigned int snd_ctl_elem_list_get_count(const snd_ctl_elem_list_t *obj)
Get total count of elements present in CTL device.
Definition: control.c:2234
void snd_ctl_elem_list_clear(snd_ctl_elem_list_t *obj)
Clear given snd_ctl_elem_list_t object.
Definition: control.c:2174
void snd_ctl_elem_id_free(snd_ctl_elem_id_t *obj)
frees a previously allocated snd_ctl_elem_id_t
Definition: control.c:1770
int snd_tlv_convert_from_dB(unsigned int *tlv, long rangemin, long rangemax, long db_gain, long *value, int xdir)
Convert from dB gain to the corresponding raw value.
Definition: tlv.c:293
snd_ctl_elem_type_t snd_ctl_elem_info_get_type(const snd_ctl_elem_info_t *obj)
Get type from a CTL element id/info.
Definition: control.c:2388
const void * snd_ctl_elem_value_get_bytes(const snd_ctl_elem_value_t *obj)
Get the data stored within the element.
Definition: control.c:3382
int snd_ctl_set_power_state(snd_ctl_t *ctl, unsigned int state)
Set Power State to given SND_CTL_POWER_* value and do the power management.
Definition: control.c:1221
void snd_ctl_elem_info_set_numid(snd_ctl_elem_info_t *obj, unsigned int val)
Set element numeric identifier of a CTL element id/info.
Definition: control.c:2832
int snd_ctl_card_info_get_card(const snd_ctl_card_info_t *obj)
Get card number from a CTL card info.
Definition: control.c:1984
snd_ctl_elem_iface_t
Definition: control.h:205
int snd_ctl_elem_info_get_dimensions(const snd_ctl_elem_info_t *obj)
Get count of dimensions for given element.
Definition: control.c:2656
int snd_card_get_index(const char *name)
Convert card string to an integer value.
Definition: cards.c:125
unsigned int snd_ctl_event_elem_get_mask(const snd_ctl_event_t *obj)
Get event mask for an element related event.
Definition: control.c:1644
unsigned int snd_ctl_elem_list_get_index(const snd_ctl_elem_list_t *obj, unsigned int idx)
Get index part of CTL element identifier for an entry of a CTL element identifiers list.
Definition: control.c:2324
int snd_ctl_elem_info_is_locked(const snd_ctl_elem_info_t *obj)
Get info whether an element is locked.
Definition: control.c:2443
int snd_ctl_elem_lock(snd_ctl_t *ctl, snd_ctl_elem_id_t *id)
Lock CTL element.
Definition: control.c:1101
const char * snd_ctl_name(snd_ctl_t *ctl)
get identifier of CTL handle
Definition: control.c:166
void snd_ctl_elem_id_set_numid(snd_ctl_elem_id_t *obj, unsigned int val)
Set numeric identifier for a CTL element identifier.
Definition: control.c:1866
const char * snd_ctl_card_info_get_components(const snd_ctl_card_info_t *obj)
Get card component list from a CTL card info.
Definition: control.c:2050
int snd_ctl_elem_info_get_dimension(const snd_ctl_elem_info_t *obj, unsigned int idx)
Get specified of dimension width for given element.
Definition: control.c:2685
int snd_async_add_ctl_handler(snd_async_handler_t **handler, snd_ctl_t *ctl, snd_async_callback_t callback, void *private_data)
Add an async handler for a CTL.
Definition: control.c:1304
unsigned int snd_ctl_elem_list_get_used(const snd_ctl_elem_list_t *obj)
Get number of used entries in CTL element identifiers list.
Definition: control.c:2216
struct _snd_ctl_elem_value snd_ctl_elem_value_t
Definition: control.h:180
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[])
Create and add a user-defined control element of enumerated type.
Definition: control.c:872
snd_ctl_event_type_t snd_ctl_event_get_type(const snd_ctl_event_t *obj)
Get type of a CTL event.
Definition: control.c:2113
int snd_ctl_add_integer64_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info, unsigned int element_count, unsigned int member_count, long long min, long long max, long long step)
Create and add some user-defined control elements of integer64 type.
Definition: control.c:544
int snd_ctl_event_malloc(snd_ctl_event_t **ptr)
allocate an invalid snd_ctl_event_t using standard malloc
Definition: control.c:2070
void snd_ctl_elem_set_bytes(snd_ctl_elem_value_t *obj, void *data, size_t size)
Replace the data stored within the element.
Definition: control.c:3363
void snd_ctl_elem_id_set_device(snd_ctl_elem_id_t *obj, unsigned int val)
Set device part for a CTL element identifier.
Definition: control.c:1888
struct _snd_ctl_elem_info snd_ctl_elem_info_t
Definition: control.h:131
int snd_ctl_ascii_elem_id_parse(snd_ctl_elem_id_t *dst, const char *str)
parse ASCII string as CTL element identifier
Definition: ctlparse.c:267
void snd_ctl_elem_value_set_device(snd_ctl_elem_value_t *obj, unsigned int val)
Set the identifiers 'device' part within the given element value.
Definition: control.c:3122
int snd_ctl_elem_info_is_writable(const snd_ctl_elem_info_t *obj)
Get info about writability from a CTL element id/info.
Definition: control.c:2410
void snd_ctl_elem_id_set_interface(snd_ctl_elem_id_t *obj, snd_ctl_elem_iface_t val)
Set interface part for a CTL element identifier.
Definition: control.c:1877
int snd_ctl_elem_value_malloc(snd_ctl_elem_value_t **ptr)
Allocate an invalid snd_ctl_elem_value_t on the heap.
Definition: control.c:2914
int snd_ctl_convert_from_dB(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, long db_gain, long *value, int xdir)
Convert from dB gain to the raw volume value on the given control element.
Definition: tlv.c:499
unsigned int snd_ctl_elem_info_get_device(const snd_ctl_elem_info_t *obj)
Get device part of CTL element identifier of a CTL element id/info.
Definition: control.c:2777
int snd_ctl_elem_tlv_command(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, const unsigned int *tlv)
Process structured data from given buffer for an element set.
Definition: control.c:1087
int snd_ctl_elem_info_is_user(const snd_ctl_elem_info_t *obj)
Get info if it's a user element.
Definition: control.c:2465
long long snd_ctl_elem_info_get_step64(const snd_ctl_elem_info_t *obj)
Get value step from a SND_CTL_ELEM_TYPE_INTEGER64 CTL element id/info.
Definition: control.c:2603
int snd_ctl_elem_info_is_inactive(const snd_ctl_elem_info_t *obj)
Get info about status from a CTL element id/info.
Definition: control.c:2432
int snd_ctl_read(snd_ctl_t *ctl, snd_ctl_event_t *event)
Read an event.
Definition: control.c:1249
void snd_ctl_card_info_clear(snd_ctl_card_info_t *obj)
clear given snd_ctl_card_info_t object
Definition: control.c:1963
const char * snd_ctl_elem_info_get_name(const snd_ctl_elem_info_t *obj)
Get name part of CTL element identifier of a CTL element id/info.
Definition: control.c:2799
void snd_ctl_elem_value_set_index(snd_ctl_elem_value_t *obj, unsigned int val)
Set the identifiers 'index' part within the given element value.
Definition: control.c:3164
void snd_ctl_elem_info_set_item(snd_ctl_elem_info_t *obj, unsigned int val)
Select item in a SND_CTL_ELEM_TYPE_ENUMERATED CTL element id/info.
Definition: control.c:2627
long long snd_ctl_elem_value_get_integer64(const snd_ctl_elem_value_t *obj, unsigned int idx)
Get an element members value.
Definition: control.c:3217
void snd_ctl_elem_info_set_name(snd_ctl_elem_info_t *obj, const char *val)
Set name part of CTL element identifier of a CTL element id/info.
Definition: control.c:2876
void snd_ctl_elem_id_copy(snd_ctl_elem_id_t *dst, const snd_ctl_elem_id_t *src)
copy one snd_ctl_elem_id_t to another
Definition: control.c:1789
unsigned int snd_ctl_elem_value_get_numid(const snd_ctl_elem_value_t *obj)
Get the identifiers 'numid' part from the given element value.
Definition: control.c:2995
unsigned int snd_ctl_elem_info_get_index(const snd_ctl_elem_info_t *obj)
Get index part of CTL element identifier of a CTL element id/info.
Definition: control.c:2810
void snd_ctl_elem_info_set_interface(snd_ctl_elem_info_t *obj, snd_ctl_elem_iface_t val)
Set interface part of CTL element identifier of a CTL element id/info.
Definition: control.c:2843
int snd_ctl_open_lconf(snd_ctl_t **ctl, const char *name, int mode, snd_config_t *lconf)
Opens a CTL using local configuration.
Definition: control.c:1508
const char * snd_ctl_card_info_get_driver(const snd_ctl_card_info_t *obj)
Get card driver name from a CTL card info.
Definition: control.c:2006
void snd_ctl_elem_info_clear(snd_ctl_elem_info_t *obj)
clear given snd_ctl_elem_info_t object
Definition: control.c:2367
void snd_ctl_elem_info_get_id(const snd_ctl_elem_info_t *obj, snd_ctl_elem_id_t *ptr)
Get CTL element identifier of a CTL element id/info.
Definition: control.c:2744
char * snd_ctl_ascii_elem_id_get(snd_ctl_elem_id_t *id)
return ASCII CTL element identifier name
Definition: ctlparse.c:117
int snd_tlv_parse_dB_info(unsigned int *tlv, unsigned int tlv_size, unsigned int **db_tlvp)
Parse TLV stream and retrieve dB information.
Definition: tlv.c:59
int snd_ctl_elem_list_alloc_space(snd_ctl_elem_list_t *obj, unsigned int entries)
allocate space for CTL element identifiers list
Definition: control.c:1612
int snd_ctl_card_info_malloc(snd_ctl_card_info_t **ptr)
allocate an invalid snd_ctl_card_info_t using standard malloc
Definition: control.c:1941
int snd_ctl_elem_info_malloc(snd_ctl_elem_info_t **ptr)
allocate an invalid snd_ctl_elem_info_t using standard malloc
Definition: control.c:2345
unsigned int snd_ctl_elem_id_get_numid(const snd_ctl_elem_id_t *obj)
Get numeric identifier from a CTL element identifier.
Definition: control.c:1800
int snd_card_get_longname(int card, char **name)
Obtain the card long name.
Definition: cards.c:203
const char * snd_ctl_card_info_get_longname(const snd_ctl_card_info_t *obj)
Get card long name from a CTL card info.
Definition: control.c:2028
unsigned int snd_ctl_elem_id_get_device(const snd_ctl_elem_id_t *obj)
Get device part of a CTL element identifier.
Definition: control.c:1822
int snd_ctl_elem_add_iec958(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id)
Create and add a user-defined control element of IEC958 type.
Definition: control.c:915
void snd_ctl_elem_value_copy(snd_ctl_elem_value_t *dst, const snd_ctl_elem_value_t *src)
Bitwise copy of a snd_ctl_elem_value_t value.
Definition: control.c:2951
size_t snd_ctl_event_sizeof(void)
get size of snd_ctl_event_t
Definition: control.c:2060
int snd_ctl_elem_tlv_read(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int *tlv, unsigned int tlv_size)
Read structured data from an element set to given buffer.
Definition: control.c:1025
int snd_ctl_open(snd_ctl_t **ctl, const char *name, int mode)
Opens a CTL.
Definition: control.c:1486
unsigned char snd_ctl_elem_value_get_byte(const snd_ctl_elem_value_t *obj, unsigned int idx)
Get an element members value.
Definition: control.c:3253
size_t snd_ctl_card_info_sizeof(void)
get size of snd_ctl_card_info_t
Definition: control.c:1931
void snd_ctl_elem_value_clear(snd_ctl_elem_value_t *obj)
Clear given data of an element.
Definition: control.c:2941
long long snd_ctl_elem_info_get_min64(const snd_ctl_elem_info_t *obj)
Get minimum value from a SND_CTL_ELEM_TYPE_INTEGER64 CTL element id/info.
Definition: control.c:2579
unsigned int snd_ctl_elem_id_get_subdevice(const snd_ctl_elem_id_t *obj)
Get subdevice part of a CTL element identifier.
Definition: control.c:1833
struct _snd_ctl_card_info snd_ctl_card_info_t
Definition: control.h:54
void snd_ctl_card_info_free(snd_ctl_card_info_t *obj)
frees a previously allocated snd_ctl_card_info_t
Definition: control.c:1954
int snd_tlv_convert_to_dB(unsigned int *tlv, long rangemin, long rangemax, long volume, long *db_gain)
Convert the given raw volume value to a dB gain.
Definition: tlv.c:201
void snd_ctl_event_free(snd_ctl_event_t *obj)
frees a previously allocated snd_ctl_event_t
Definition: control.c:2083
int snd_ctl_elem_read(snd_ctl_t *ctl, snd_ctl_elem_value_t *data)
Get CTL element value.
Definition: control.c:955
void snd_ctl_elem_id_set_index(snd_ctl_elem_id_t *obj, unsigned int val)
Set index part for a CTL element identifier.
Definition: control.c:1921
snd_ctl_elem_iface_t snd_ctl_elem_id_get_interface(const snd_ctl_elem_id_t *obj)
Get interface part of a CTL element identifier.
Definition: control.c:1811
size_t snd_ctl_elem_list_sizeof(void)
get size of snd_ctl_elem_list_t.
Definition: control.c:2123
void snd_ctl_event_copy(snd_ctl_event_t *dst, const snd_ctl_event_t *src)
copy one snd_ctl_event_t to another
Definition: control.c:2102
long snd_ctl_elem_info_get_max(const snd_ctl_elem_info_t *obj)
Get maximum value from a SND_CTL_ELEM_TYPE_INTEGER CTL element id/info.
Definition: control.c:2555
const char * snd_ctl_elem_iface_name(snd_ctl_elem_iface_t iface)
get name of a CTL element related interface
Definition: control.c:1584
int snd_ctl_get_dB_range(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, long *min, long *max)
Get the dB min/max values on the given control element.
Definition: tlv.c:455
unsigned int snd_ctl_elem_list_get_numid(const snd_ctl_elem_list_t *obj, unsigned int idx)
Get CTL element numeric identifier for an entry of a CTL element identifiers list.
Definition: control.c:2259
int snd_card_next(int *card)
Try to determine the next card.
Definition: cards.c:98
int snd_ctl_elem_remove(snd_ctl_t *ctl, snd_ctl_elem_id_t *id)
Remove an user CTL element.
Definition: control.c:934
snd_ctl_elem_iface_t snd_ctl_elem_list_get_interface(const snd_ctl_elem_list_t *obj, unsigned int idx)
Get interface part of CTL element identifier for an entry of a CTL element identifiers list.
Definition: control.c:2272
void snd_ctl_elem_list_get_id(const snd_ctl_elem_list_t *obj, unsigned int idx, snd_ctl_elem_id_t *ptr)
Get CTL element identifier for an entry of a CTL element identifiers list.
Definition: control.c:2246
int snd_ctl_elem_info_is_tlv_commandable(const snd_ctl_elem_info_t *obj)
Get info about TLV command possibility from a CTL element id/info.
Definition: control.c:2498
void snd_ctl_elem_info_copy(snd_ctl_elem_info_t *dst, const snd_ctl_elem_info_t *src)
copy one snd_ctl_elem_info_t to another
Definition: control.c:2377
snd_ctl_event_type_t
Definition: control.h:224
void snd_ctl_event_clear(snd_ctl_event_t *obj)
clear given snd_ctl_event_t object
Definition: control.c:2092
const char * snd_ctl_event_elem_get_name(const snd_ctl_event_t *obj)
Get name part of CTL element identifier for an element related event.
Definition: control.c:1716
unsigned int snd_ctl_elem_value_get_index(const snd_ctl_elem_value_t *obj)
Get the identifiers 'index' part from the given element value.
Definition: control.c:3065
void snd_ctl_elem_value_set_name(snd_ctl_elem_value_t *obj, const char *val)
Set the identifiers 'name' part within the given element value.
Definition: control.c:3150
int snd_ctl_elem_info_is_volatile(const snd_ctl_elem_info_t *obj)
Get info about notification feasibility from a CTL element id/info.
Definition: control.c:2421
int snd_ctl_elem_info_is_owner(const snd_ctl_elem_info_t *obj)
Get info if I own an element.
Definition: control.c:2454
int snd_ctl_wait(snd_ctl_t *ctl, int timeout)
Wait for a CTL to become ready (i.e. at least one event pending)
Definition: control.c:1261
long long snd_ctl_elem_info_get_max64(const snd_ctl_elem_info_t *obj)
Get maximum value from a SND_CTL_ELEM_TYPE_INTEGER64 CTL element id/info.
Definition: control.c:2591
void snd_ctl_elem_list_free_space(snd_ctl_elem_list_t *obj)
free previously allocated space for CTL element identifiers list
Definition: control.c:1632
unsigned int snd_ctl_elem_list_get_subdevice(const snd_ctl_elem_list_t *obj, unsigned int idx)
Get subdevice part of CTL element identifier for an entry of a CTL element identifiers list.
Definition: control.c:2298
void snd_ctl_elem_id_set_name(snd_ctl_elem_id_t *obj, const char *val)
Set name part for a CTL element identifier.
Definition: control.c:1910
const char * snd_ctl_elem_list_get_name(const snd_ctl_elem_list_t *obj, unsigned int idx)
Get name part of CTL element identifier for an entry of a CTL element identifiers list.
Definition: control.c:2311
unsigned int snd_ctl_elem_value_get_subdevice(const snd_ctl_elem_value_t *obj)
Get the identifiers 'subdevice' part from the given element value.
Definition: control.c:3037
void snd_ctl_event_elem_get_id(const snd_ctl_event_t *obj, snd_ctl_elem_id_t *ptr)
Get CTL element identifier for an element related event.
Definition: control.c:1656
char * snd_device_name_get_hint(const void *hint, const char *id)
Extract a value from a hint.
Definition: namehint.c:713
long snd_ctl_elem_info_get_step(const snd_ctl_elem_info_t *obj)
Get value step from a SND_CTL_ELEM_TYPE_INTEGER CTL element id/info.
Definition: control.c:2567
void snd_ctl_elem_info_set_device(snd_ctl_elem_info_t *obj, unsigned int val)
Set device part of CTL element identifier of a CTL element id/info.
Definition: control.c:2854
long snd_ctl_elem_value_get_integer(const snd_ctl_elem_value_t *obj, unsigned int idx)
Get an element members value.
Definition: control.c:3199
void snd_ctl_elem_value_get_iec958(const snd_ctl_elem_value_t *obj, snd_aes_iec958_t *ptr)
Get an elements IEC958 data.
Definition: control.c:3400
void snd_ctl_elem_value_set_enumerated(snd_ctl_elem_value_t *obj, unsigned int idx, unsigned int val)
Set an element members value.
Definition: control.c:3325
struct _snd_sctl snd_sctl_t
Definition: control.h:334
void snd_ctl_elem_info_set_id(snd_ctl_elem_info_t *obj, const snd_ctl_elem_id_t *ptr)
Set CTL element identifier of a CTL element id/info.
Definition: control.c:2821
void snd_ctl_elem_value_set_numid(snd_ctl_elem_value_t *obj, unsigned int val)
Set the identifiers 'numid' part within the given element value.
Definition: control.c:3094
const char * snd_ctl_elem_value_get_name(const snd_ctl_elem_value_t *obj)
Get the identifiers 'name' part from the given element value.
Definition: control.c:3051
void snd_ctl_elem_info_free(snd_ctl_elem_info_t *obj)
frees a previously allocated snd_ctl_elem_info_t
Definition: control.c:2358
void snd_ctl_elem_id_set_subdevice(snd_ctl_elem_id_t *obj, unsigned int val)
Set subdevice part for a CTL element identifier.
Definition: control.c:1899
void snd_ctl_elem_list_free(snd_ctl_elem_list_t *obj)
frees a previously allocated snd_ctl_elem_list_t.
Definition: control.c:2157
pid_t snd_ctl_elem_info_get_owner(const snd_ctl_elem_info_t *obj)
Get owner of a locked element.
Definition: control.c:2521
struct _snd_ctl_elem_list snd_ctl_elem_list_t
Definition: control.h:128
struct _snd_ctl_event snd_ctl_event_t
Definition: control.h:183
snd_ctl_type_t
Definition: control.h:307
int snd_ctl_add_enumerated_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info, unsigned int element_count, unsigned int member_count, unsigned int items, const char *const labels[])
Create and add some user-defined control elements of enumerated type.
Definition: control.c:695
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)
Create and add an user-defined control element of integer type.
Definition: control.c:809
void snd_ctl_elem_value_set_boolean(snd_ctl_elem_value_t *obj, unsigned int idx, long val)
Set an element members value.
Definition: control.c:3271
int snd_ctl_elem_id_malloc(snd_ctl_elem_id_t **ptr)
allocate an invalid snd_ctl_elem_id_t using standard malloc
Definition: control.c:1757
snd_ctl_elem_iface_t snd_ctl_elem_value_get_interface(const snd_ctl_elem_value_t *obj)
Get the identifiers 'interface' part from the given element value.
Definition: control.c:3009
int snd_ctl_elem_info(snd_ctl_t *ctl, snd_ctl_elem_info_t *info)
Get CTL element information.
Definition: control.c:376
int snd_ctl_elem_value_get_boolean(const snd_ctl_elem_value_t *obj, unsigned int idx)
Get an element members value.
Definition: control.c:3181
void snd_ctl_elem_value_set_subdevice(snd_ctl_elem_value_t *obj, unsigned int val)
Set the identifiers 'subdevice' part within the given element value.
Definition: control.c:3136
snd_ctl_t * snd_async_handler_get_ctl(snd_async_handler_t *handler)
Return CTL handle related to an async handler.
Definition: control.c:1334
const char * snd_ctl_elem_id_get_name(const snd_ctl_elem_id_t *obj)
Get name part of a CTL element identifier.
Definition: control.c:1844
unsigned int snd_ctl_elem_info_get_count(const snd_ctl_elem_info_t *obj)
Get number of value entries from a CTL element id/info.
Definition: control.c:2532
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)
Create and add an user-defined control element of integer64 type.
Definition: control.c:830
unsigned int snd_ctl_event_elem_get_subdevice(const snd_ctl_event_t *obj)
Get subdevice part of CTL element identifier for an element related event.
Definition: control.c:1704
int snd_ctl_elem_tlv_write(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, const unsigned int *tlv)
Write structured data from given buffer to an element set.
Definition: control.c:1062
int snd_ctl_card_info(snd_ctl_t *ctl, snd_ctl_card_info_t *info)
Get card related information.
Definition: control.c:336
void snd_ctl_elem_value_free(snd_ctl_elem_value_t *obj)
Free an snd_ctl_elem_value_t previously allocated using snd_ctl_elem_value_malloc().
Definition: control.c:2929
int snd_ctl_elem_info_is_tlv_readable(const snd_ctl_elem_info_t *obj)
Get info about TLV readability from a CTL element id/info.
Definition: control.c:2476
const char * snd_ctl_card_info_get_id(const snd_ctl_card_info_t *obj)
Get card identifier from a CTL card info.
Definition: control.c:1995
int snd_ctl_poll_descriptors(snd_ctl_t *ctl, struct pollfd *pfds, unsigned int space)
get poll descriptors
Definition: control.c:282
void snd_ctl_elem_value_set_id(snd_ctl_elem_value_t *obj, const snd_ctl_elem_id_t *ptr)
Set the element identifier within the given element value.
Definition: control.c:3080
const char * snd_ctl_event_type_name(snd_ctl_event_type_t type)
get name of a CTL event type
Definition: control.c:1595
void snd_ctl_elem_info_set_subdevice(snd_ctl_elem_info_t *obj, unsigned int val)
Set subdevice part of CTL element identifier of a CTL element id/info.
Definition: control.c:2865
int snd_ctl_convert_to_dB(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, long volume, long *db_gain)
Convert the volume value to dB on the given control element.
Definition: tlv.c:476
int snd_ctl_poll_descriptors_revents(snd_ctl_t *ctl, struct pollfd *pfds, unsigned int nfds, unsigned short *revents)
get returned events from poll descriptors
Definition: control.c:305
int snd_ctl_subscribe_events(snd_ctl_t *ctl, int subscribe)
Ask to be informed about events (poll, snd_async_add_ctl_handler, snd_ctl_read)
Definition: control.c:323
int snd_ctl_elem_list_malloc(snd_ctl_elem_list_t **ptr)
allocate a snd_ctl_elem_list_t using standard malloc.
Definition: control.c:2136
int snd_ctl_elem_list(snd_ctl_t *ctl, snd_ctl_elem_list_t *list)
Get a list of element identifiers.
Definition: control.c:363
void snd_ctl_elem_list_copy(snd_ctl_elem_list_t *dst, const snd_ctl_elem_list_t *src)
copy one snd_ctl_elem_list_t to another.
Definition: control.c:2188
int snd_card_load(int card)
Try to load the driver for a card.
Definition: cards.c:83
int snd_ctl_elem_info_is_readable(const snd_ctl_elem_info_t *obj)
Get info about readability from a CTL element id/info.
Definition: control.c:2399
unsigned int snd_ctl_elem_info_get_items(const snd_ctl_elem_info_t *obj)
Get number of items available from a SND_CTL_ELEM_TYPE_ENUMERATED CTL element id/info.
Definition: control.c:2615
void snd_ctl_elem_value_set_integer(snd_ctl_elem_value_t *obj, unsigned int idx, long val)
Set an element members value.
Definition: control.c:3289
unsigned int snd_ctl_elem_info_get_numid(const snd_ctl_elem_info_t *obj)
Get element numeric identifier of a CTL element id/info.
Definition: control.c:2755
snd_ctl_elem_iface_t snd_ctl_elem_info_get_interface(const snd_ctl_elem_info_t *obj)
Get interface part of CTL element identifier of a CTL element id/info.
Definition: control.c:2766
unsigned int snd_ctl_elem_value_get_device(const snd_ctl_elem_value_t *obj)
Get the identifiers 'device' part from the given element value.
Definition: control.c:3023
void snd_ctl_card_info_copy(snd_ctl_card_info_t *dst, const snd_ctl_card_info_t *src)
copy one snd_ctl_card_info_t to another
Definition: control.c:1973
snd_ctl_elem_type_t
Definition: control.h:186
long snd_ctl_elem_info_get_min(const snd_ctl_elem_info_t *obj)
Get minimum value from a SND_CTL_ELEM_TYPE_INTEGER CTL element id/info.
Definition: control.c:2543
int snd_ctl_elem_write(snd_ctl_t *ctl, snd_ctl_elem_value_t *data)
Set CTL element value.
Definition: control.c:976
const char * snd_ctl_elem_type_name(snd_ctl_elem_type_t type)
get name of a CTL element type
Definition: control.c:1573
void snd_ctl_elem_info_set_index(snd_ctl_elem_info_t *obj, unsigned int val)
Set index part of CTL element identifier of a CTL element id/info.
Definition: control.c:2887
int snd_ctl_add_integer_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info, unsigned int element_count, unsigned int member_count, long min, long max, long step)
Create and add some user-defined control elements of integer type.
Definition: control.c:454
int snd_ctl_elem_info_is_tlv_writable(const snd_ctl_elem_info_t *obj)
Get info about TLV writeability from a CTL element id/info.
Definition: control.c:2487
int snd_tlv_get_dB_range(unsigned int *tlv, long rangemin, long rangemax, long *min, long *max)
Get the dB min/max values.
Definition: tlv.c:129
void snd_ctl_elem_id_clear(snd_ctl_elem_id_t *obj)
clear given snd_ctl_elem_id_t object
Definition: control.c:1779
int snd_card_get_name(int card, char **name)
Obtain the card name.
Definition: cards.c:173
int snd_device_name_free_hint(void **hints)
Free a list of device name hints.
Definition: namehint.c:685
void snd_ctl_elem_value_get_id(const snd_ctl_elem_value_t *obj, snd_ctl_elem_id_t *ptr)
Get the element identifier from the given element value.
Definition: control.c:2981
int snd_ctl_elem_value_compare(snd_ctl_elem_value_t *left, const snd_ctl_elem_value_t *right)
Compare two snd_ctl_elem_value_t values, bytewise.
Definition: control.c:2965
int snd_ctl_elem_add_boolean(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count)
Create and add an user-defined control element of boolean type.
Definition: control.c:851
struct _snd_ctl_elem_id snd_ctl_elem_id_t
Definition: control.h:57
int snd_ctl_poll_descriptors_count(snd_ctl_t *ctl)
get count of poll descriptors for CTL handle
Definition: control.c:265
void snd_ctl_elem_list_set_offset(snd_ctl_elem_list_t *obj, unsigned int val)
Set index of first wanted CTL element identifier in a CTL element identifiers list.
Definition: control.c:2199
int snd_device_name_hint(int card, const char *iface, void ***hints)
Get a set of device name hints.
Definition: namehint.c:582
unsigned int snd_ctl_event_elem_get_numid(const snd_ctl_event_t *obj)
Get element numeric identifier for an element related event.
Definition: control.c:1668
const char * snd_ctl_card_info_get_mixername(const snd_ctl_card_info_t *obj)
Get card mixer name from a CTL card info.
Definition: control.c:2039
unsigned int snd_ctl_elem_info_get_subdevice(const snd_ctl_elem_info_t *obj)
Get subdevice part of CTL element identifier of a CTL element id/info.
Definition: control.c:2788
int snd_ctl_get_power_state(snd_ctl_t *ctl, unsigned int *state)
Get actual Power State.
Definition: control.c:1235
unsigned int snd_ctl_event_elem_get_index(const snd_ctl_event_t *obj)
Get index part of CTL element identifier for an element related event.
Definition: control.c:1728
const char * snd_ctl_card_info_get_name(const snd_ctl_card_info_t *obj)
Get card name from a CTL card info.
Definition: control.c:2017
unsigned int snd_ctl_elem_list_get_device(const snd_ctl_elem_list_t *obj, unsigned int idx)
Get the device part of CTL element identifier for an entry of a CTL element identifiers list.
Definition: control.c:2285
unsigned int snd_ctl_elem_id_get_index(const snd_ctl_elem_id_t *obj)
Get index part of a CTL element identifier.
Definition: control.c:1855
snd_ctl_elem_iface_t snd_ctl_event_elem_get_interface(const snd_ctl_event_t *obj)
Get interface part of CTL element identifier for an element related event.
Definition: control.c:1680
void snd_ctl_elem_value_set_integer64(snd_ctl_elem_value_t *obj, unsigned int idx, long long val)
Set an element members value.
Definition: control.c:3307
void snd_ctl_elem_value_set_iec958(snd_ctl_elem_value_t *obj, const snd_aes_iec958_t *ptr)
Set an elements IEC958 data.
Definition: control.c:3418
int snd_ctl_elem_info_set_dimension(snd_ctl_elem_info_t *info, const int dimension[4])
Set width to a specified dimension level of given element information.
Definition: control.c:2717
const char * snd_ctl_elem_info_get_item_name(const snd_ctl_elem_info_t *obj)
Get name for selected item in a SND_CTL_ELEM_TYPE_ENUMERATED CTL element id/info.
Definition: control.c:2638
size_t snd_ctl_elem_id_sizeof(void)
get size of snd_ctl_elem_id_t
Definition: control.c:1747
int snd_ctl_add_bytes_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info, unsigned int element_count, unsigned int member_count)
Create and add some user-defined control elements of bytes type.
Definition: control.c:782
unsigned int snd_ctl_elem_value_get_enumerated(const snd_ctl_elem_value_t *obj, unsigned int idx)
Get an element members value.
Definition: control.c:3235
int snd_ctl_close(snd_ctl_t *ctl)
close CTL handle
Definition: control.c:193
int snd_ctl_elem_unlock(snd_ctl_t *ctl, snd_ctl_elem_id_t *id)
Unlock CTL element.
Definition: control.c:1113
unsigned int snd_ctl_event_elem_get_device(const snd_ctl_event_t *obj)
Get device part of CTL element identifier for an element related event.
Definition: control.c:1692
snd_ctl_type_t snd_ctl_type(snd_ctl_t *ctl)
get type of CTL handle
Definition: control.c:179
int snd_ctl_add_boolean_elem_set(snd_ctl_t *ctl, snd_ctl_elem_info_t *info, unsigned int element_count, unsigned int member_count)
Create and add some user-defined control elements of boolean type.
Definition: control.c:630
@ SND_CTL_ELEM_IFACE_CARD
Definition: control.h:207
@ SND_CTL_ELEM_IFACE_PCM
Definition: control.h:213
@ SND_CTL_ELEM_IFACE_SEQUENCER
Definition: control.h:219
@ SND_CTL_ELEM_IFACE_RAWMIDI
Definition: control.h:215
@ SND_CTL_ELEM_IFACE_HWDEP
Definition: control.h:209
@ SND_CTL_ELEM_IFACE_TIMER
Definition: control.h:217
@ SND_CTL_ELEM_IFACE_MIXER
Definition: control.h:211
@ SND_CTL_EVENT_ELEM
Definition: control.h:226
@ SND_CTL_TYPE_INET
Definition: control.h:313
@ SND_CTL_TYPE_EXT
Definition: control.h:315
@ SND_CTL_TYPE_HW
Definition: control.h:309
@ SND_CTL_TYPE_SHM
Definition: control.h:311
@ SND_CTL_ELEM_TYPE_INTEGER
Definition: control.h:192
@ SND_CTL_ELEM_TYPE_NONE
Definition: control.h:188
@ SND_CTL_ELEM_TYPE_INTEGER64
Definition: control.h:200
@ SND_CTL_ELEM_TYPE_IEC958
Definition: control.h:198
@ SND_CTL_ELEM_TYPE_BOOLEAN
Definition: control.h:190
@ SND_CTL_ELEM_TYPE_ENUMERATED
Definition: control.h:194
@ SND_CTL_ELEM_TYPE_BYTES
Definition: control.h:196
struct _snd_async_handler snd_async_handler_t
Internal structure for an async notification client handler.
Definition: global.h:115
void(* snd_async_callback_t)(snd_async_handler_t *handler)
Async notification callback.
Definition: global.h:122
int snd_hctl_handle_events(snd_hctl_t *hctl)
Handle pending HCTL events invoking callbacks.
Definition: hcontrol.c:779
unsigned int snd_hctl_get_count(snd_hctl_t *hctl)
Get number of loaded elements for an HCTL.
Definition: hcontrol.c:662
struct _snd_hctl snd_hctl_t
Definition: control.h:653
int snd_hctl_free(snd_hctl_t *hctl)
free HCTL loaded elements
Definition: hcontrol.c:402
int snd_hctl_open(snd_hctl_t **hctl, const char *name, int mode)
Opens an HCTL.
Definition: hcontrol.c:70
int snd_hctl_wait(snd_hctl_t *hctl, int timeout)
Wait for a HCTL to become ready (i.e. at least one event pending)
Definition: hcontrol.c:675
int snd_hctl_poll_descriptors_count(snd_hctl_t *hctl)
get count of poll descriptors for HCTL handle
Definition: hcontrol.c:168
int snd_hctl_nonblock(snd_hctl_t *hctl, int nonblock)
set nonblock mode
Definition: hcontrol.c:142
int snd_hctl_elem_tlv_read(snd_hctl_elem_t *elem, unsigned int *tlv, unsigned int tlv_size)
Get TLV value for an HCTL element.
Definition: hcontrol.c:853
int snd_hctl_open_ctl(snd_hctl_t **hctlp, snd_ctl_t *ctl)
Opens an HCTL.
Definition: hcontrol.c:89
int snd_hctl_set_compare(snd_hctl_t *hctl, snd_hctl_compare_t hsort)
Change HCTL compare function and reorder elements.
Definition: hcontrol.c:448
int(* snd_hctl_callback_t)(snd_hctl_t *hctl, unsigned int mask, snd_hctl_elem_t *elem)
HCTL callback function.
Definition: control.h:672
void * snd_hctl_get_callback_private(snd_hctl_t *hctl)
Get callback private value for an HCTL.
Definition: hcontrol.c:651
int(* snd_hctl_compare_t)(const snd_hctl_elem_t *e1, const snd_hctl_elem_t *e2)
Compare function for sorting HCTL elements.
Definition: control.h:661
int(* snd_hctl_elem_callback_t)(snd_hctl_elem_t *elem, unsigned int mask)
HCTL element callback function.
Definition: control.h:681
int snd_hctl_load(snd_hctl_t *hctl)
Load an HCTL with all elements and sort them.
Definition: hcontrol.c:565
int snd_hctl_poll_descriptors_revents(snd_hctl_t *ctl, struct pollfd *pfds, unsigned int nfds, unsigned short *revents)
get returned events from poll descriptors
Definition: hcontrol.c:195
int snd_hctl_poll_descriptors(snd_hctl_t *hctl, struct pollfd *pfds, unsigned int space)
get poll descriptors
Definition: hcontrol.c:181
int snd_hctl_elem_read(snd_hctl_elem_t *elem, snd_ctl_elem_value_t *value)
Get value for an HCTL element.
Definition: hcontrol.c:820
unsigned int snd_hctl_elem_get_subdevice(const snd_hctl_elem_t *obj)
Get subdevice part of CTL element identifier of a CTL element id/value.
Definition: hcontrol.c:953
snd_hctl_elem_t * snd_hctl_elem_prev(snd_hctl_elem_t *elem)
get previous HCTL element
Definition: hcontrol.c:537
snd_hctl_elem_t * snd_hctl_last_elem(snd_hctl_t *hctl)
get last element for an HCTL
Definition: hcontrol.c:511
snd_ctl_t * snd_hctl_ctl(snd_hctl_t *hctl)
Get a ctl handle associated to the given hctl handle.
Definition: hcontrol.c:724
snd_hctl_t * snd_hctl_elem_get_hctl(snd_hctl_elem_t *elem)
Get HCTL handle for an HCTL element.
Definition: hcontrol.c:898
void snd_hctl_set_callback(snd_hctl_t *hctl, snd_hctl_callback_t callback)
Set callback function for an HCTL.
Definition: hcontrol.c:629
unsigned int snd_hctl_elem_get_index(const snd_hctl_elem_t *obj)
Get index part of CTL element identifier of a CTL element id/value.
Definition: hcontrol.c:975
void snd_hctl_elem_set_callback_private(snd_hctl_elem_t *obj, void *val)
Set callback private value for an HCTL element.
Definition: hcontrol.c:997
int snd_hctl_compare_fast(const snd_hctl_elem_t *c1, const snd_hctl_elem_t *c2)
A "don't care" fast compare functions that may be used with snd_hctl_set_compare.
Definition: hcontrol.c:462
snd_hctl_elem_t * snd_hctl_first_elem(snd_hctl_t *hctl)
get first element for an HCTL
Definition: hcontrol.c:498
int snd_hctl_elem_tlv_write(snd_hctl_elem_t *elem, const unsigned int *tlv)
Set TLV value for an HCTL element.
Definition: hcontrol.c:869
const char * snd_hctl_elem_get_name(const snd_hctl_elem_t *obj)
Get name part of CTL element identifier of a CTL element id/value.
Definition: hcontrol.c:964
const char * snd_hctl_name(snd_hctl_t *hctl)
get identifier of HCTL handle
Definition: hcontrol.c:130
snd_ctl_elem_iface_t snd_hctl_elem_get_interface(const snd_hctl_elem_t *obj)
Get interface part of CTL element identifier of a CTL element id/value.
Definition: hcontrol.c:931
void * snd_hctl_elem_get_callback_private(const snd_hctl_elem_t *obj)
Get callback private value for an HCTL element.
Definition: hcontrol.c:1008
void snd_hctl_elem_get_id(const snd_hctl_elem_t *obj, snd_ctl_elem_id_t *ptr)
Get CTL element identifier of a CTL element id/value.
Definition: hcontrol.c:909
void snd_hctl_elem_set_callback(snd_hctl_elem_t *obj, snd_hctl_elem_callback_t val)
Set callback function for an HCTL element.
Definition: hcontrol.c:986
struct _snd_hctl_elem snd_hctl_elem_t
Definition: control.h:650
int snd_hctl_elem_info(snd_hctl_elem_t *elem, snd_ctl_elem_info_t *info)
Get information for an HCTL element.
Definition: hcontrol.c:805
unsigned int snd_hctl_elem_get_numid(const snd_hctl_elem_t *obj)
Get element numeric identifier of a CTL element id/value.
Definition: hcontrol.c:920
void snd_hctl_set_callback_private(snd_hctl_t *hctl, void *data)
Set callback private value for an HCTL.
Definition: hcontrol.c:640
unsigned int snd_hctl_elem_get_device(const snd_hctl_elem_t *obj)
Get device part of CTL element identifier of a CTL element id/value.
Definition: hcontrol.c:942
int snd_hctl_close(snd_hctl_t *hctl)
close HCTL handle
Definition: hcontrol.c:111
int snd_hctl_elem_tlv_command(snd_hctl_elem_t *elem, const unsigned int *tlv)
Set TLV value for an HCTL element.
Definition: hcontrol.c:885
snd_hctl_elem_t * snd_hctl_find_elem(snd_hctl_t *hctl, const snd_ctl_elem_id_t *id)
Search an HCTL element.
Definition: hcontrol.c:551
snd_hctl_elem_t * snd_hctl_elem_next(snd_hctl_elem_t *elem)
get next HCTL element
Definition: hcontrol.c:524
int snd_hctl_elem_write(snd_hctl_elem_t *elem, snd_ctl_elem_value_t *value)
Set value for an HCTL element.
Definition: hcontrol.c:837
struct _snd_hwdep_info snd_hwdep_info_t
Definition: hwdep.h:45
struct _snd_pcm_info snd_pcm_info_t
Definition: pcm.h:48
struct _snd_rawmidi_info snd_rawmidi_info_t
Definition: rawmidi.h:45
int snd_sctl_remove(snd_sctl_t *handle)
Remove (restore) previous values from control elements.
Definition: setup.c:181
int snd_sctl_build(snd_sctl_t **ctl, snd_ctl_t *handle, snd_config_t *config, snd_config_t *private_data, int mode)
Build setup control handle.
Definition: setup.c:603
int snd_sctl_install(snd_sctl_t *handle)
Install given values to control elements.
Definition: setup.c:83
int snd_sctl_free(snd_sctl_t *handle)
Free setup control handle.
Definition: setup.c:644
void * ptr
Definition: seq_event.h:1
Definition: control.h:46
unsigned char pad
Definition: control.h:49