2017-09-17 15:45:03 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-28 17:46:27 +00:00
|
|
|
#include <errno.h>
|
2017-09-17 14:18:17 +00:00
|
|
|
#include <fcntl.h>
|
2018-04-29 13:41:18 +00:00
|
|
|
#if defined(__OpenBSD__)
|
|
|
|
# include <soundcard.h>
|
|
|
|
#else
|
|
|
|
# include <sys/soundcard.h>
|
|
|
|
#endif
|
2017-09-17 14:18:17 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2017-09-24 13:33:01 +00:00
|
|
|
#include "../util.h"
|
2017-09-17 14:18:17 +00:00
|
|
|
|
|
|
|
const char *
|
|
|
|
vol_perc(const char *card)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
int v, afd, devmask;
|
|
|
|
char *vnames[] = SOUND_DEVICE_NAMES;
|
|
|
|
|
2018-05-06 20:28:56 +00:00
|
|
|
if ((afd = open(card, O_RDONLY | O_NONBLOCK)) < 0) {
|
2018-03-28 17:46:27 +00:00
|
|
|
fprintf(stderr, "open '%s': %s\n", card, strerror(errno));
|
2017-09-17 14:18:17 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-06 20:28:56 +00:00
|
|
|
if (ioctl(afd, (int)SOUND_MIXER_READ_DEVMASK, &devmask) < 0) {
|
|
|
|
fprintf(stderr, "ioctl 'SOUND_MIXER_READ_DEVMASK': %s\n",
|
|
|
|
strerror(errno));
|
2017-09-17 14:18:17 +00:00
|
|
|
close(afd);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
for (i = 0; i < LEN(vnames); i++) {
|
|
|
|
if (devmask & (1 << i) && !strcmp("vol", vnames[i])) {
|
2018-05-06 20:28:56 +00:00
|
|
|
if (ioctl(afd, MIXER_READ(i), &v) < 0) {
|
|
|
|
fprintf(stderr, "ioctl 'MIXER_READ(%d)': %s\n", i,
|
|
|
|
strerror(errno));
|
2017-09-17 14:18:17 +00:00
|
|
|
close(afd);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close(afd);
|
|
|
|
|
|
|
|
return bprintf("%d", v & 0xff);
|
|
|
|
}
|