ALSA project - the C library reference
control_external.h
Go to the documentation of this file.
1
10/*
11 * This library is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as
13 * published by the Free Software Foundation; either version 2.1 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 *
25 */
26#ifndef __ALSA_CONTROL_EXTERNAL_H
27#define __ALSA_CONTROL_EXTERNAL_H
28
29#include "control.h"
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
43#define SND_CTL_PLUGIN_ENTRY(name) _snd_ctl_##name##_open
44
48#define SND_CTL_PLUGIN_SYMBOL(name) SND_DLSYM_BUILD_VERSION(SND_CTL_PLUGIN_ENTRY(name), SND_CONTROL_DLSYM_VERSION);
49
53#define SND_CTL_PLUGIN_DEFINE_FUNC(plugin) \
54int SND_CTL_PLUGIN_ENTRY(plugin) (snd_ctl_t **handlep, const char *name,\
55 snd_config_t *root, snd_config_t *conf, int mode)
56
58typedef struct snd_ctl_ext snd_ctl_ext_t;
62typedef unsigned long snd_ctl_ext_key_t;
63#ifdef DOC_HIDDEN
64/* redefine typedef's for stupid doxygen */
67#endif
69typedef int (snd_ctl_ext_tlv_rw_t)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, int op_flag, unsigned int numid,
70 unsigned int *tlv, unsigned int tlv_size);
71
72/*
73 * Protocol version
74 */
75#define SND_CTL_EXT_VERSION_MAJOR 1
76#define SND_CTL_EXT_VERSION_MINOR 0
77#define SND_CTL_EXT_VERSION_TINY 1
81#define SND_CTL_EXT_VERSION ((SND_CTL_EXT_VERSION_MAJOR<<16) |\
82 (SND_CTL_EXT_VERSION_MINOR<<8) |\
83 (SND_CTL_EXT_VERSION_TINY))
84
91 unsigned int version;
99 char id[16];
103 char driver[16];
107 char name[32];
111 char longname[80];
115 char mixername[80];
120
133
140 union {
142 const unsigned int *p;
144};
145
151 void (*close)(snd_ctl_ext_t *ext);
159 int (*elem_list)(snd_ctl_ext_t *ext, unsigned int offset, snd_ctl_elem_id_t *id);
172 int *type, unsigned int *acc, unsigned int *count);
177 long *imin, long *imax, long *istep);
182 int64_t *imin, int64_t *imax, int64_t *istep);
186 int (*get_enumerated_info)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int *items);
190 int (*get_enumerated_name)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int item,
191 char *name, size_t name_max_len);
195 int (*read_integer)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, long *value);
199 int (*read_integer64)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, int64_t *value);
203 int (*read_enumerated)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int *items);
207 int (*read_bytes)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned char *data,
208 size_t max_bytes);
216 int (*write_integer)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, long *value);
220 int (*write_integer64)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, int64_t *value);
224 int (*write_enumerated)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int *items);
228 int (*write_bytes)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned char *data,
229 size_t max_bytes);
237 void (*subscribe_events)(snd_ctl_ext_t *ext, int subscribe);
241 int (*read_event)(snd_ctl_ext_t *ext, snd_ctl_elem_id_t *id, unsigned int *event_mask);
249 int (*poll_descriptors)(snd_ctl_ext_t *ext, struct pollfd *pfds, unsigned int space);
253 int (*poll_revents)(snd_ctl_ext_t *ext, struct pollfd *pfds, unsigned int nfds, unsigned short *revents);
254};
255
259typedef enum snd_ctl_ext_access {
260 SND_CTL_EXT_ACCESS_READ = (1<<0),
261 SND_CTL_EXT_ACCESS_WRITE = (1<<1),
262 SND_CTL_EXT_ACCESS_READWRITE = (3<<0),
263 SND_CTL_EXT_ACCESS_VOLATILE = (1<<2),
264 SND_CTL_EXT_ACCESS_TLV_READ = (1<<4),
265 SND_CTL_EXT_ACCESS_TLV_WRITE = (1<<5),
266 SND_CTL_EXT_ACCESS_TLV_READWRITE = (3<<4),
267 SND_CTL_EXT_ACCESS_TLV_COMMAND = (1<<6),
268 SND_CTL_EXT_ACCESS_INACTIVE = (1<<8),
269 SND_CTL_EXT_ACCESS_TLV_CALLBACK = (1<<28),
271
275#define SND_CTL_EXT_KEY_NOT_FOUND (snd_ctl_ext_key_t)(-1)
276
277int snd_ctl_ext_create(snd_ctl_ext_t *ext, const char *name, int mode);
278int snd_ctl_ext_delete(snd_ctl_ext_t *ext);
279
282#ifdef __cplusplus
283}
284#endif
285
286#endif /* __ALSA_CONTROL_EXTERNAL_H */
Application interface library for the ALSA driver.
struct _snd_ctl snd_ctl_t
Definition: control.h:360
struct _snd_ctl_elem_id snd_ctl_elem_id_t
Definition: control.h:82
int() snd_ctl_ext_tlv_rw_t(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, int op_flag, unsigned int numid, unsigned int *tlv, unsigned int tlv_size)
Definition: control_external.h:69
snd_ctl_ext snd_ctl_ext_t
Definition: control_external.h:65
snd_ctl_ext_callback snd_ctl_ext_callback_t
Definition: control_external.h:66
unsigned long snd_ctl_ext_key_t
Definition: control_external.h:62
snd_ctl_ext_access_t
Definition: control_external.h:259
Definition: control.h:46
Definition: control_external.h:147
int(* poll_revents)(snd_ctl_ext_t *ext, struct pollfd *pfds, unsigned int nfds, unsigned short *revents)
Definition: control_external.h:253
int(* get_enumerated_name)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int item, char *name, size_t name_max_len)
Definition: control_external.h:190
int(* write_integer64)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, int64_t *value)
Definition: control_external.h:220
int(* get_integer_info)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, long *imin, long *imax, long *istep)
Definition: control_external.h:176
int(* elem_list)(snd_ctl_ext_t *ext, unsigned int offset, snd_ctl_elem_id_t *id)
Definition: control_external.h:159
int(* read_integer64)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, int64_t *value)
Definition: control_external.h:199
int(* read_enumerated)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int *items)
Definition: control_external.h:203
int(* read_integer)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, long *value)
Definition: control_external.h:195
int(* write_integer)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, long *value)
Definition: control_external.h:216
void(* subscribe_events)(snd_ctl_ext_t *ext, int subscribe)
Definition: control_external.h:237
void(* free_key)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key)
Definition: control_external.h:167
int(* write_bytes)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned char *data, size_t max_bytes)
Definition: control_external.h:228
int(* poll_descriptors_count)(snd_ctl_ext_t *ext)
Definition: control_external.h:245
snd_ctl_ext_key_t(* find_elem)(snd_ctl_ext_t *ext, const snd_ctl_elem_id_t *id)
Definition: control_external.h:163
int(* read_iec958)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, snd_aes_iec958_t *iec958)
Definition: control_external.h:212
int(* write_enumerated)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int *items)
Definition: control_external.h:224
int(* get_integer64_info)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, int64_t *imin, int64_t *imax, int64_t *istep)
Definition: control_external.h:181
int(* elem_count)(snd_ctl_ext_t *ext)
Definition: control_external.h:155
int(* read_event)(snd_ctl_ext_t *ext, snd_ctl_elem_id_t *id, unsigned int *event_mask)
Definition: control_external.h:241
void(* close)(snd_ctl_ext_t *ext)
Definition: control_external.h:151
int(* get_enumerated_info)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int *items)
Definition: control_external.h:186
int(* get_attribute)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, int *type, unsigned int *acc, unsigned int *count)
Definition: control_external.h:171
int(* poll_descriptors)(snd_ctl_ext_t *ext, struct pollfd *pfds, unsigned int space)
Definition: control_external.h:249
int(* read_bytes)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned char *data, size_t max_bytes)
Definition: control_external.h:207
int(* write_iec958)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, snd_aes_iec958_t *iec958)
Definition: control_external.h:233
Definition: control_external.h:86
char name[32]
Definition: control_external.h:107
int poll_fd
Definition: control_external.h:119
const snd_ctl_ext_callback_t * callback
Definition: control_external.h:124
int nonblock
Definition: control_external.h:134
char longname[80]
Definition: control_external.h:111
int subscribed
Definition: control_external.h:135
char mixername[80]
Definition: control_external.h:115
union snd_ctl_ext::@7 tlv
void * private_data
Definition: control_external.h:128
int card_idx
Definition: control_external.h:95
char driver[16]
Definition: control_external.h:103
snd_ctl_t * handle
Definition: control_external.h:132
unsigned int version
Definition: control_external.h:91