1 /*- 2 * Copyright (c) 2021 Christos Margiolis <christos@FreeBSD.org> 3 * 4 * Permission is hereby granted, free of charge, to any person obtaining a copy 5 * of this software and associated documentation files (the "Software"), to deal 6 * in the Software without restriction, including without limitation the rights 7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 * copies of the Software, and to permit persons to whom the Software is 9 * furnished to do so, subject to the following conditions: 10 * 11 * The above copyright notice and this permission notice shall be included in 12 * all copies or substantial portions of the Software. 13 * 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 * THE SOFTWARE. 21 * 22 * $FreeBSD$ 23 */ 24 25 #ifndef _MIXER_H_ 26 #define _MIXER_H_ 27 28 #include <sys/cdefs.h> 29 #include <sys/queue.h> 30 31 #include <limits.h> 32 33 #define MIX_ISSET(n,f) (((1U << (n)) & (f)) ? 1 : 0) 34 #define MIX_ISDEV(m,n) MIX_ISSET(n, (m)->devmask) 35 #define MIX_ISMUTE(m,n) MIX_ISSET(n, (m)->mutemask) 36 #define MIX_ISREC(m,n) MIX_ISSET(n, (m)->recmask) 37 #define MIX_ISRECSRC(m,n) MIX_ISSET(n, (m)->recsrc) 38 39 /* Forward declarations */ 40 struct mixer; 41 struct mix_dev; 42 43 typedef struct mix_ctl mix_ctl_t; 44 typedef struct mix_volume mix_volume_t; 45 46 /* User-defined controls */ 47 struct mix_ctl { 48 struct mix_dev *parent_dev; /* parent device */ 49 int id; /* control id */ 50 char name[NAME_MAX]; /* control name */ 51 int (*mod)(struct mix_dev *, void *); /* modify control values */ 52 int (*print)(struct mix_dev *, void *); /* print control */ 53 TAILQ_ENTRY(mix_ctl) ctls; 54 }; 55 56 struct mix_dev { 57 struct mixer *parent_mixer; /* parent mixer */ 58 char name[NAME_MAX]; /* device name (e.g "vol") */ 59 int devno; /* device number */ 60 struct mix_volume { 61 #define MIX_VOLMIN 0.0f 62 #define MIX_VOLMAX 1.0f 63 #define MIX_VOLNORM(v) ((v) / 100.0f) 64 #define MIX_VOLDENORM(v) ((int)((v) * 100.0f + 0.5f)) 65 float left; /* left volume */ 66 float right; /* right volume */ 67 } vol; 68 int nctl; /* number of controls */ 69 TAILQ_HEAD(, mix_ctl) ctls; /* control list */ 70 TAILQ_ENTRY(mix_dev) devs; 71 }; 72 73 struct mixer { 74 TAILQ_HEAD(, mix_dev) devs; /* device list */ 75 struct mix_dev *dev; /* selected device */ 76 oss_mixerinfo mi; /* mixer info */ 77 oss_card_info ci; /* audio card info */ 78 char name[NAME_MAX]; /* mixer name (e.g /dev/mixer0) */ 79 int fd; /* file descriptor */ 80 int unit; /* audio card unit */ 81 int ndev; /* number of devices */ 82 int devmask; /* supported devices */ 83 #define MIX_MUTE 0x01 84 #define MIX_UNMUTE 0x02 85 #define MIX_TOGGLEMUTE 0x04 86 int mutemask; /* muted devices */ 87 int recmask; /* recording devices */ 88 #define MIX_ADDRECSRC 0x01 89 #define MIX_REMOVERECSRC 0x02 90 #define MIX_SETRECSRC 0x04 91 #define MIX_TOGGLERECSRC 0x08 92 int recsrc; /* recording sources */ 93 #define MIX_MODE_MIXER 0x01 94 #define MIX_MODE_PLAY 0x02 95 #define MIX_MODE_REC 0x04 96 int mode; /* dev.pcm.X.mode sysctl */ 97 int f_default; /* default mixer flag */ 98 }; 99 100 __BEGIN_DECLS 101 102 struct mixer *mixer_open(const char *); 103 int mixer_close(struct mixer *); 104 struct mix_dev *mixer_get_dev(struct mixer *, int); 105 struct mix_dev *mixer_get_dev_byname(struct mixer *, const char *); 106 int mixer_add_ctl(struct mix_dev *, int, const char *, 107 int (*)(struct mix_dev *, void *), int (*)(struct mix_dev *, void *)); 108 int mixer_add_ctl_s(mix_ctl_t *); 109 int mixer_remove_ctl(mix_ctl_t *); 110 mix_ctl_t *mixer_get_ctl(struct mix_dev *, int); 111 mix_ctl_t *mixer_get_ctl_byname(struct mix_dev *, const char *); 112 int mixer_set_vol(struct mixer *, mix_volume_t); 113 int mixer_set_mute(struct mixer *, int); 114 int mixer_mod_recsrc(struct mixer *, int); 115 int mixer_get_dunit(void); 116 int mixer_set_dunit(struct mixer *, int); 117 int mixer_get_mode(int); 118 int mixer_get_nmixers(void); 119 120 __END_DECLS 121 122 #endif /* _MIXER_H_ */ 123