aboutsummaryrefslogtreecommitdiff
path: root/src/mixer.c
diff options
context:
space:
mode:
authorTaylor Holberton <taylorcholberton@gmail.com>2016-11-23 13:34:18 -0800
committerTaylor Holberton <taylorcholberton@gmail.com>2016-11-23 13:34:18 -0800
commitad4d7d706c6c0b8e4233446fa545128af6c73002 (patch)
tree916d0d5d029f34295e481448aa0b8f5a19e28669 /src/mixer.c
parentd265c27dc2cd86ddc31f2aaf8a6481075ad6b759 (diff)
added mixer ctl member documentation
Diffstat (limited to 'src/mixer.c')
-rw-r--r--src/mixer.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mixer.c b/src/mixer.c
index 1d2cd74..0fe9c99 100644
--- a/src/mixer.c
+++ b/src/mixer.c
@@ -53,7 +53,9 @@
struct mixer_ctl {
/** The mixer that the mixer control belongs to */
struct mixer *mixer;
+ /** Information on the control's value (i.e. type, number of values) */
struct snd_ctl_elem_info info;
+ /** A list of string representations of enumerated values (only valid for enumerated controls) */
char **ename;
};