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