2000-01-28 14:55:50 +00:00
|
|
|
/*
|
|
|
|
* audio.c - audio interface for reference clock audio drivers
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2004-07-20 15:01:56 +00:00
|
|
|
# include <config.h>
|
2000-01-28 14:55:50 +00:00
|
|
|
#endif
|
|
|
|
|
2004-07-20 15:01:56 +00:00
|
|
|
#if defined(HAVE_SYS_AUDIOIO_H) || defined(HAVE_SUN_AUDIOIO_H) || \
|
|
|
|
defined(HAVE_SYS_SOUNDCARD_H) || defined(HAVE_MACHINE_SOUNDCARD_H)
|
2001-08-29 14:35:15 +00:00
|
|
|
|
2000-01-28 14:55:50 +00:00
|
|
|
#include "audio.h"
|
2001-08-29 14:35:15 +00:00
|
|
|
#include "ntp_stdlib.h"
|
|
|
|
#include "ntp_syslog.h"
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2000-01-28 14:55:50 +00:00
|
|
|
#include <stdio.h>
|
2001-08-29 14:35:15 +00:00
|
|
|
#include "ntp_string.h"
|
2000-01-28 14:55:50 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_SYS_AUDIOIO_H
|
2004-07-20 15:01:56 +00:00
|
|
|
# include <sys/audioio.h>
|
2000-01-28 14:55:50 +00:00
|
|
|
#endif /* HAVE_SYS_AUDIOIO_H */
|
2001-08-29 14:35:15 +00:00
|
|
|
|
2000-01-28 14:55:50 +00:00
|
|
|
#ifdef HAVE_SUN_AUDIOIO_H
|
2004-07-20 15:01:56 +00:00
|
|
|
# include <sys/ioccom.h>
|
|
|
|
# include <sun/audioio.h>
|
2000-01-28 14:55:50 +00:00
|
|
|
#endif /* HAVE_SUN_AUDIOIO_H */
|
2001-08-29 14:35:15 +00:00
|
|
|
|
2000-01-28 14:55:50 +00:00
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
2004-07-20 15:01:56 +00:00
|
|
|
# include <sys/ioctl.h>
|
2000-01-28 14:55:50 +00:00
|
|
|
#endif /* HAVE_SYS_IOCTL_H */
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2004-07-20 15:01:56 +00:00
|
|
|
#ifdef HAVE_MACHINE_SOUNDCARD_H
|
|
|
|
# include <machine/soundcard.h>
|
|
|
|
# define PCM_STYLE_SOUND
|
|
|
|
#else
|
|
|
|
# ifdef HAVE_SYS_SOUNDCARD_H
|
|
|
|
# include <sys/soundcard.h>
|
|
|
|
# define PCM_STYLE_SOUND
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef PCM_STYLE_SOUND
|
|
|
|
# include <ctype.h>
|
|
|
|
#endif
|
|
|
|
|
2017-03-23 05:19:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 4.4BSD-Lite switched to an unsigned long ioctl arg. Detect common
|
|
|
|
* derivatives here, and apply that type. To make the following code
|
|
|
|
* less verbose we make a proper typedef.
|
|
|
|
* The joy of IOCTL programming...
|
|
|
|
*/
|
|
|
|
# if defined(__FreeBSD__) || defined(__APPLE__) || defined(__NetBSD__) || defined __OpenBSD__
|
|
|
|
typedef unsigned long ioctl_arg_T;
|
|
|
|
#else
|
|
|
|
typedef int ioctl_arg_T;
|
|
|
|
#endif
|
|
|
|
|
2000-01-28 14:55:50 +00:00
|
|
|
/*
|
|
|
|
* Global variables
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_SYS_AUDIOIO_H
|
|
|
|
static struct audio_device device; /* audio device ident */
|
2001-08-29 14:35:15 +00:00
|
|
|
#endif /* HAVE_SYS_AUDIOIO_H */
|
2004-07-20 15:01:56 +00:00
|
|
|
#ifdef PCM_STYLE_SOUND
|
|
|
|
# define INIT_FILE "/etc/ntp.audio"
|
|
|
|
|
2017-03-23 05:19:00 +00:00
|
|
|
static ioctl_arg_T agc = SOUND_MIXER_WRITE_RECLEV; /* or IGAIN or LINE */
|
|
|
|
static ioctl_arg_T audiomonitor = SOUND_MIXER_WRITE_VOLUME; /* or OGAIN */
|
|
|
|
static int devmask = 0;
|
|
|
|
static int recmask = 0;
|
|
|
|
static char cf_c_dev[100], cf_i_dev[100], cf_agc[100], cf_monitor[100];
|
|
|
|
|
|
|
|
static const char *m_names[SOUND_MIXER_NRDEVICES] = SOUND_DEVICE_NAMES;
|
2004-07-20 15:01:56 +00:00
|
|
|
#else /* not PCM_STYLE_SOUND */
|
2000-01-28 14:55:50 +00:00
|
|
|
static struct audio_info info; /* audio device info */
|
2004-07-20 15:01:56 +00:00
|
|
|
#endif /* not PCM_STYLE_SOUND */
|
2000-01-28 14:55:50 +00:00
|
|
|
static int ctl_fd; /* audio control file descriptor */
|
|
|
|
|
2004-07-20 15:01:56 +00:00
|
|
|
#ifdef PCM_STYLE_SOUND
|
2015-02-05 20:53:33 +00:00
|
|
|
static void audio_config_read (int, const char **, const char **);
|
2013-12-04 21:33:17 +00:00
|
|
|
static int mixer_name (const char *, int);
|
2004-07-20 15:01:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
mixer_name(
|
|
|
|
const char *m_name,
|
|
|
|
int m_mask
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < SOUND_MIXER_NRDEVICES; ++i)
|
|
|
|
if (((1 << i) & m_mask)
|
|
|
|
&& !strcmp(m_names[i], m_name))
|
|
|
|
break;
|
|
|
|
|
|
|
|
return (SOUND_MIXER_NRDEVICES == i)
|
|
|
|
? -1
|
|
|
|
: i
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check:
|
|
|
|
*
|
|
|
|
* /etc/ntp.audio# where # is the unit number
|
|
|
|
* /etc/ntp.audio.# where # is the unit number
|
|
|
|
* /etc/ntp.audio
|
|
|
|
*
|
|
|
|
* for contents of the form:
|
|
|
|
*
|
|
|
|
* idev /dev/input_device
|
|
|
|
* cdev /dev/control_device
|
|
|
|
* agc pcm_input_device {igain,line,line1,...}
|
|
|
|
* monitor pcm_monitor_device {ogain,...}
|
|
|
|
*
|
|
|
|
* The device names for the "agc" and "monitor" keywords
|
|
|
|
* can be found by running either the "mixer" program or the
|
|
|
|
* util/audio-pcm program.
|
|
|
|
*
|
|
|
|
* Great hunks of this subroutine were swiped from refclock_oncore.c
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
audio_config_read(
|
|
|
|
int unit,
|
2015-02-05 20:53:33 +00:00
|
|
|
const char **c_dev, /* Control device */
|
|
|
|
const char **i_dev /* input device */
|
2004-07-20 15:01:56 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
FILE *fd;
|
|
|
|
char device[20], line[100], ab[100];
|
|
|
|
|
2013-12-04 21:33:17 +00:00
|
|
|
snprintf(device, sizeof(device), "%s%d", INIT_FILE, unit);
|
2004-07-20 15:01:56 +00:00
|
|
|
if ((fd = fopen(device, "r")) == NULL) {
|
|
|
|
printf("audio_config_read: <%s> NO\n", device);
|
2013-12-04 21:33:17 +00:00
|
|
|
snprintf(device, sizeof(device), "%s.%d", INIT_FILE,
|
|
|
|
unit);
|
2004-07-20 15:01:56 +00:00
|
|
|
if ((fd = fopen(device, "r")) == NULL) {
|
|
|
|
printf("audio_config_read: <%s> NO\n", device);
|
2013-12-04 21:33:17 +00:00
|
|
|
snprintf(device, sizeof(device), "%s",
|
|
|
|
INIT_FILE);
|
2004-07-20 15:01:56 +00:00
|
|
|
if ((fd = fopen(device, "r")) == NULL) {
|
2013-12-04 21:33:17 +00:00
|
|
|
printf("audio_config_read: <%s> NO\n",
|
|
|
|
device);
|
2004-07-20 15:01:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("audio_config_read: reading <%s>\n", device);
|
|
|
|
while (fgets(line, sizeof line, fd)) {
|
|
|
|
char *cp, *cc, *ca;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Remove comments */
|
|
|
|
if ((cp = strchr(line, '#')))
|
|
|
|
*cp = '\0';
|
|
|
|
|
|
|
|
/* Remove any trailing spaces */
|
|
|
|
for (i = strlen(line);
|
2015-02-05 20:53:33 +00:00
|
|
|
i > 0 && isascii((unsigned char)line[i - 1]) && isspace((unsigned char)line[i - 1]);
|
2004-07-20 15:01:56 +00:00
|
|
|
)
|
|
|
|
line[--i] = '\0';
|
|
|
|
|
|
|
|
/* Remove leading space */
|
2015-02-05 20:53:33 +00:00
|
|
|
for (cc = line; *cc && isascii((unsigned char)*cc) && isspace((unsigned char)*cc); cc++)
|
2004-07-20 15:01:56 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Stop if nothing left */
|
|
|
|
if (!*cc)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Uppercase the command and find the arg */
|
|
|
|
for (ca = cc; *ca; ca++) {
|
2015-02-05 20:53:33 +00:00
|
|
|
if (isascii((unsigned char)*ca)) {
|
|
|
|
if (islower((unsigned char)*ca)) {
|
|
|
|
*ca = toupper((unsigned char)*ca);
|
|
|
|
} else if (isspace((unsigned char)*ca) || (*ca == '='))
|
2004-07-20 15:01:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove space (and possible =) leading the arg */
|
2015-02-05 20:53:33 +00:00
|
|
|
for (; *ca && isascii((unsigned char)*ca) && (isspace((unsigned char)*ca) || (*ca == '=')); ca++)
|
2004-07-20 15:01:56 +00:00
|
|
|
continue;
|
|
|
|
|
2013-12-04 21:33:17 +00:00
|
|
|
if (!strncmp(cc, "IDEV", 4) &&
|
|
|
|
1 == sscanf(ca, "%99s", ab)) {
|
2014-12-20 22:52:39 +00:00
|
|
|
strlcpy(cf_i_dev, ab, sizeof(cf_i_dev));
|
2004-07-20 15:01:56 +00:00
|
|
|
printf("idev <%s>\n", ab);
|
2013-12-04 21:33:17 +00:00
|
|
|
} else if (!strncmp(cc, "CDEV", 4) &&
|
|
|
|
1 == sscanf(ca, "%99s", ab)) {
|
2014-12-20 22:52:39 +00:00
|
|
|
strlcpy(cf_c_dev, ab, sizeof(cf_c_dev));
|
2004-07-20 15:01:56 +00:00
|
|
|
printf("cdev <%s>\n", ab);
|
2013-12-04 21:33:17 +00:00
|
|
|
} else if (!strncmp(cc, "AGC", 3) &&
|
|
|
|
1 == sscanf(ca, "%99s", ab)) {
|
2014-12-20 22:52:39 +00:00
|
|
|
strlcpy(cf_agc, ab, sizeof(cf_agc));
|
2004-07-20 15:01:56 +00:00
|
|
|
printf("agc <%s> %d\n", ab, i);
|
2013-12-04 21:33:17 +00:00
|
|
|
} else if (!strncmp(cc, "MONITOR", 7) &&
|
|
|
|
1 == sscanf(ca, "%99s", ab)) {
|
2014-12-20 22:52:39 +00:00
|
|
|
strlcpy(cf_monitor, ab, sizeof(cf_monitor));
|
2004-07-20 15:01:56 +00:00
|
|
|
printf("monitor <%s> %d\n", ab, mixer_name(ab, -1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(fd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif /* PCM_STYLE_SOUND */
|
2000-01-28 14:55:50 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* audio_init - open and initialize audio device
|
|
|
|
*
|
2004-07-20 15:01:56 +00:00
|
|
|
* This code works with SunOS 4.x, Solaris 2.x, and PCM; however, it is
|
2000-01-28 14:55:50 +00:00
|
|
|
* believed generic and applicable to other systems with a minor twid
|
|
|
|
* or two. All it does is open the device, set the buffer size (Solaris
|
|
|
|
* only), preset the gain and set the input port. It assumes that the
|
|
|
|
* codec sample rate (8000 Hz), precision (8 bits), number of channels
|
|
|
|
* (1) and encoding (ITU-T G.711 mu-law companded) have been set by
|
|
|
|
* default.
|
|
|
|
*/
|
|
|
|
int
|
2001-08-29 14:35:15 +00:00
|
|
|
audio_init(
|
2015-02-05 20:53:33 +00:00
|
|
|
const char *dname, /* device name */
|
2004-07-20 15:01:56 +00:00
|
|
|
int bufsiz, /* buffer size */
|
|
|
|
int unit /* device unit (0-3) */
|
2001-08-29 14:35:15 +00:00
|
|
|
)
|
2000-01-28 14:55:50 +00:00
|
|
|
{
|
2004-07-20 15:01:56 +00:00
|
|
|
#ifdef PCM_STYLE_SOUND
|
|
|
|
# define ACTL_DEV "/dev/mixer%d"
|
|
|
|
char actl_dev[30];
|
|
|
|
# ifdef HAVE_STRUCT_SND_SIZE
|
|
|
|
struct snd_size s_size;
|
|
|
|
# endif
|
|
|
|
# ifdef AIOGFMT
|
|
|
|
snd_chan_param s_c_p;
|
|
|
|
# endif
|
|
|
|
#endif
|
2000-01-28 14:55:50 +00:00
|
|
|
int fd;
|
|
|
|
int rval;
|
2015-02-05 20:53:33 +00:00
|
|
|
const char *actl =
|
2004-07-20 15:01:56 +00:00
|
|
|
#ifdef PCM_STYLE_SOUND
|
|
|
|
actl_dev
|
|
|
|
#else
|
|
|
|
"/dev/audioctl"
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
|
|
|
#ifdef PCM_STYLE_SOUND
|
2013-12-04 21:33:17 +00:00
|
|
|
snprintf(actl_dev, sizeof(actl_dev), ACTL_DEV, unit);
|
2004-07-20 15:01:56 +00:00
|
|
|
|
|
|
|
audio_config_read(unit, &actl, &dname);
|
|
|
|
/* If we have values for cf_c_dev or cf_i_dev, use them. */
|
|
|
|
if (*cf_c_dev)
|
2008-08-18 14:26:05 +00:00
|
|
|
actl = cf_c_dev;
|
2004-07-20 15:01:56 +00:00
|
|
|
if (*cf_i_dev)
|
2008-08-18 14:26:05 +00:00
|
|
|
dname = cf_i_dev;
|
2004-07-20 15:01:56 +00:00
|
|
|
#endif
|
2000-01-28 14:55:50 +00:00
|
|
|
|
|
|
|
/*
|
2013-12-04 21:33:17 +00:00
|
|
|
* Open audio device
|
2000-01-28 14:55:50 +00:00
|
|
|
*/
|
2001-08-29 14:35:15 +00:00
|
|
|
fd = open(dname, O_RDWR | O_NONBLOCK, 0777);
|
2013-12-04 21:33:17 +00:00
|
|
|
if (fd < 0) {
|
2014-12-20 22:52:39 +00:00
|
|
|
msyslog(LOG_ERR, "audio_init: %s %m", dname);
|
2000-01-28 14:55:50 +00:00
|
|
|
return (fd);
|
2013-12-04 21:33:17 +00:00
|
|
|
}
|
2000-01-28 14:55:50 +00:00
|
|
|
|
|
|
|
/*
|
2001-08-29 14:35:15 +00:00
|
|
|
* Open audio control device.
|
2000-01-28 14:55:50 +00:00
|
|
|
*/
|
2004-07-20 15:01:56 +00:00
|
|
|
ctl_fd = open(actl, O_RDWR);
|
2000-01-28 14:55:50 +00:00
|
|
|
if (ctl_fd < 0) {
|
2014-12-20 22:52:39 +00:00
|
|
|
msyslog(LOG_ERR, "audio_init: invalid control device <%s>",
|
2013-12-04 21:33:17 +00:00
|
|
|
actl);
|
2000-01-28 14:55:50 +00:00
|
|
|
close(fd);
|
|
|
|
return(ctl_fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set audio device parameters.
|
|
|
|
*/
|
2004-07-20 15:01:56 +00:00
|
|
|
#ifdef PCM_STYLE_SOUND
|
|
|
|
printf("audio_init: <%s> bufsiz %d\n", dname, bufsiz);
|
|
|
|
rval = fd;
|
|
|
|
|
|
|
|
# ifdef HAVE_STRUCT_SND_SIZE
|
|
|
|
if (ioctl(fd, AIOGSIZE, &s_size) == -1)
|
|
|
|
printf("audio_init: AIOGSIZE: %s\n", strerror(errno));
|
|
|
|
else
|
|
|
|
printf("audio_init: orig: play_size %d, rec_size %d\n",
|
|
|
|
s_size.play_size, s_size.rec_size);
|
|
|
|
|
|
|
|
s_size.play_size = s_size.rec_size = bufsiz;
|
|
|
|
printf("audio_init: want: play_size %d, rec_size %d\n",
|
|
|
|
s_size.play_size, s_size.rec_size);
|
|
|
|
|
|
|
|
if (ioctl(fd, AIOSSIZE, &s_size) == -1)
|
|
|
|
printf("audio_init: AIOSSIZE: %s\n", strerror(errno));
|
|
|
|
else
|
|
|
|
printf("audio_init: set: play_size %d, rec_size %d\n",
|
|
|
|
s_size.play_size, s_size.rec_size);
|
|
|
|
# endif /* HAVE_STRUCT_SND_SIZE */
|
|
|
|
|
2008-08-18 14:26:05 +00:00
|
|
|
# ifdef SNDCTL_DSP_SETFRAGMENT
|
|
|
|
{
|
|
|
|
int tmp = (16 << 16) + 6; /* 16 fragments, each 2^6 bytes */
|
|
|
|
if (ioctl(fd, SNDCTL_DSP_SETFRAGMENT, &tmp) == -1)
|
|
|
|
printf("audio_init: SNDCTL_DSP_SETFRAGMENT: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
}
|
|
|
|
# endif /* SNDCTL_DSP_SETFRAGMENT */
|
|
|
|
|
2004-07-20 15:01:56 +00:00
|
|
|
# ifdef AIOGFMT
|
|
|
|
if (ioctl(fd, AIOGFMT, &s_c_p) == -1)
|
|
|
|
printf("audio_init: AIOGFMT: %s\n", strerror(errno));
|
|
|
|
else
|
|
|
|
printf("audio_init: play_rate %lu, rec_rate %lu, play_format %#lx, rec_format %#lx\n",
|
|
|
|
s_c_p.play_rate, s_c_p.rec_rate, s_c_p.play_format, s_c_p.rec_format);
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* Grab the device and record masks */
|
|
|
|
|
|
|
|
if (ioctl(ctl_fd, SOUND_MIXER_READ_DEVMASK, &devmask) == -1)
|
|
|
|
printf("SOUND_MIXER_READ_DEVMASK: %s\n", strerror(errno));
|
|
|
|
if (ioctl(ctl_fd, SOUND_MIXER_READ_RECMASK, &recmask) == -1)
|
|
|
|
printf("SOUND_MIXER_READ_RECMASK: %s\n", strerror(errno));
|
|
|
|
|
|
|
|
/* validate and set any specified config file stuff */
|
2013-12-04 21:33:17 +00:00
|
|
|
if (cf_agc[0] != '\0') {
|
2004-07-20 15:01:56 +00:00
|
|
|
int i;
|
|
|
|
|
2014-12-20 22:52:39 +00:00
|
|
|
/* recmask */
|
|
|
|
i = mixer_name(cf_agc, recmask);
|
2004-07-20 15:01:56 +00:00
|
|
|
if (i >= 0)
|
|
|
|
agc = MIXER_WRITE(i);
|
|
|
|
else
|
|
|
|
printf("input %s not in recmask %#x\n",
|
|
|
|
cf_agc, recmask);
|
|
|
|
}
|
|
|
|
|
2013-12-04 21:33:17 +00:00
|
|
|
if (cf_monitor[0] != '\0') {
|
2004-07-20 15:01:56 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
/* devmask */
|
|
|
|
i = mixer_name(cf_monitor, devmask);
|
|
|
|
if (i >= 0)
|
2016-11-22 06:28:26 +00:00
|
|
|
audiomonitor = MIXER_WRITE(i);
|
2004-07-20 15:01:56 +00:00
|
|
|
else
|
|
|
|
printf("monitor %s not in devmask %#x\n",
|
|
|
|
cf_monitor, devmask);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* not PCM_STYLE_SOUND */
|
|
|
|
AUDIO_INITINFO(&info);
|
|
|
|
info.play.gain = AUDIO_MAX_GAIN;
|
|
|
|
info.play.port = AUDIO_SPEAKER;
|
|
|
|
# ifdef HAVE_SYS_AUDIOIO_H
|
|
|
|
info.record.buffer_size = bufsiz;
|
|
|
|
# endif /* HAVE_SYS_AUDIOIO_H */
|
2017-03-23 05:19:00 +00:00
|
|
|
rval = ioctl(ctl_fd, AUDIO_SETINFO, (char *)&info);
|
2000-01-28 14:55:50 +00:00
|
|
|
if (rval < 0) {
|
2014-12-20 22:52:39 +00:00
|
|
|
msyslog(LOG_ERR, "audio: invalid control device parameters");
|
2000-01-28 14:55:50 +00:00
|
|
|
close(ctl_fd);
|
|
|
|
close(fd);
|
|
|
|
return(rval);
|
|
|
|
}
|
2004-07-20 15:01:56 +00:00
|
|
|
rval = fd;
|
|
|
|
#endif /* not PCM_STYLE_SOUND */
|
|
|
|
return (rval);
|
2000-01-28 14:55:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-07-20 15:01:56 +00:00
|
|
|
* audio_gain - adjust codec gains and port
|
2000-01-28 14:55:50 +00:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
audio_gain(
|
2004-07-20 15:01:56 +00:00
|
|
|
int gain, /* volume level (gain) 0-255 */
|
|
|
|
int mongain, /* input to output mix (monitor gain) 0-255 */
|
|
|
|
int port /* selected I/O port: 1 mic/2 line in */
|
2000-01-28 14:55:50 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
int rval;
|
2004-07-20 15:01:56 +00:00
|
|
|
static int o_mongain = -1;
|
|
|
|
static int o_port = -1;
|
2000-01-28 14:55:50 +00:00
|
|
|
|
2004-07-20 15:01:56 +00:00
|
|
|
#ifdef PCM_STYLE_SOUND
|
|
|
|
int l, r;
|
|
|
|
|
2015-10-21 19:16:13 +00:00
|
|
|
# ifdef GCC
|
|
|
|
rval = 0; /* GCC thinks rval is used uninitialized */
|
|
|
|
# endif
|
2004-07-20 15:01:56 +00:00
|
|
|
|
|
|
|
r = l = 100 * gain / 255; /* Normalize to 0-100 */
|
|
|
|
# ifdef DEBUG
|
|
|
|
if (debug > 1)
|
|
|
|
printf("audio_gain: gain %d/%d\n", gain, l);
|
|
|
|
# endif
|
2013-12-04 21:33:17 +00:00
|
|
|
#if 0 /* not a good idea to do this; connector wiring dependency */
|
2004-07-20 15:01:56 +00:00
|
|
|
/* figure out what channel(s) to use. just nuke right for now. */
|
|
|
|
r = 0 ; /* setting to zero nicely mutes the channel */
|
2013-12-04 21:33:17 +00:00
|
|
|
#endif
|
2004-07-20 15:01:56 +00:00
|
|
|
l |= r << 8;
|
2013-12-04 21:33:17 +00:00
|
|
|
if (cf_agc[0] != '\0')
|
|
|
|
rval = ioctl(ctl_fd, agc, &l);
|
|
|
|
else
|
2015-10-21 19:16:13 +00:00
|
|
|
rval = ioctl(ctl_fd
|
|
|
|
, (2 == port)
|
|
|
|
? SOUND_MIXER_WRITE_LINE
|
|
|
|
: SOUND_MIXER_WRITE_MIC
|
|
|
|
, &l);
|
2013-12-04 21:33:17 +00:00
|
|
|
if (-1 == rval) {
|
2004-07-20 15:01:56 +00:00
|
|
|
printf("audio_gain: agc write: %s\n", strerror(errno));
|
2013-12-04 21:33:17 +00:00
|
|
|
return rval;
|
2004-07-20 15:01:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (o_mongain != mongain) {
|
|
|
|
r = l = 100 * mongain / 255; /* Normalize to 0-100 */
|
|
|
|
# ifdef DEBUG
|
|
|
|
if (debug > 1)
|
|
|
|
printf("audio_gain: mongain %d/%d\n", mongain, l);
|
|
|
|
# endif
|
|
|
|
l |= r << 8;
|
2013-12-04 21:33:17 +00:00
|
|
|
if (cf_monitor[0] != '\0')
|
2016-11-22 06:28:26 +00:00
|
|
|
rval = ioctl(ctl_fd, audiomonitor, &l );
|
2013-12-04 21:33:17 +00:00
|
|
|
else
|
|
|
|
rval = ioctl(ctl_fd, SOUND_MIXER_WRITE_VOLUME,
|
|
|
|
&l);
|
|
|
|
if (-1 == rval) {
|
2004-07-20 15:01:56 +00:00
|
|
|
printf("audio_gain: mongain write: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
return (rval);
|
|
|
|
}
|
|
|
|
o_mongain = mongain;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (o_port != port) {
|
|
|
|
# ifdef DEBUG
|
|
|
|
if (debug > 1)
|
|
|
|
printf("audio_gain: port %d\n", port);
|
|
|
|
# endif
|
|
|
|
l = (1 << ((port == 2) ? SOUND_MIXER_LINE : SOUND_MIXER_MIC));
|
|
|
|
rval = ioctl(ctl_fd, SOUND_MIXER_WRITE_RECSRC, &l);
|
|
|
|
if (rval == -1) {
|
|
|
|
printf("SOUND_MIXER_WRITE_RECSRC: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
return (rval);
|
|
|
|
}
|
|
|
|
# ifdef DEBUG
|
|
|
|
if (debug > 1) {
|
|
|
|
if (ioctl(ctl_fd, SOUND_MIXER_READ_RECSRC, &l) == -1)
|
|
|
|
printf("SOUND_MIXER_WRITE_RECSRC: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
else
|
|
|
|
printf("audio_gain: recsrc is %d\n", l);
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
o_port = port;
|
|
|
|
}
|
|
|
|
#else /* not PCM_STYLE_SOUND */
|
2017-03-23 05:19:00 +00:00
|
|
|
ioctl(ctl_fd, AUDIO_GETINFO, (char *)&info);
|
2004-07-20 15:01:56 +00:00
|
|
|
info.record.encoding = AUDIO_ENCODING_ULAW;
|
2000-01-28 14:55:50 +00:00
|
|
|
info.record.error = 0;
|
2004-07-20 15:01:56 +00:00
|
|
|
info.record.gain = gain;
|
|
|
|
if (o_mongain != mongain)
|
|
|
|
o_mongain = info.monitor_gain = mongain;
|
|
|
|
if (o_port != port)
|
|
|
|
o_port = info.record.port = port;
|
2017-03-23 05:19:00 +00:00
|
|
|
rval = ioctl(ctl_fd, AUDIO_SETINFO, (char *)&info);
|
2000-01-28 14:55:50 +00:00
|
|
|
if (rval < 0) {
|
2001-08-29 14:35:15 +00:00
|
|
|
msyslog(LOG_ERR, "audio_gain: %m");
|
2000-01-28 14:55:50 +00:00
|
|
|
return (rval);
|
|
|
|
}
|
2004-07-20 15:01:56 +00:00
|
|
|
rval = info.record.error;
|
|
|
|
#endif /* not PCM_STYLE_SOUND */
|
|
|
|
return (rval);
|
2000-01-28 14:55:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* audio_show - display audio parameters
|
|
|
|
*
|
|
|
|
* This code doesn't really do anything, except satisfy curiousity and
|
|
|
|
* verify the ioctl's work.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
audio_show(void)
|
|
|
|
{
|
2004-07-20 15:01:56 +00:00
|
|
|
#ifdef PCM_STYLE_SOUND
|
|
|
|
int recsrc = 0;
|
|
|
|
|
|
|
|
printf("audio_show: ctl_fd %d\n", ctl_fd);
|
|
|
|
if (ioctl(ctl_fd, SOUND_MIXER_READ_RECSRC, &recsrc) == -1)
|
|
|
|
printf("SOUND_MIXER_READ_RECSRC: %s\n", strerror(errno));
|
|
|
|
|
|
|
|
#else /* not PCM_STYLE_SOUND */
|
|
|
|
# ifdef HAVE_SYS_AUDIOIO_H
|
2017-03-23 05:19:00 +00:00
|
|
|
ioctl(ctl_fd, AUDIO_GETDEV, &device);
|
2000-01-28 14:55:50 +00:00
|
|
|
printf("audio: name %s, version %s, config %s\n",
|
|
|
|
device.name, device.version, device.config);
|
2004-07-20 15:01:56 +00:00
|
|
|
# endif /* HAVE_SYS_AUDIOIO_H */
|
2017-03-23 05:19:00 +00:00
|
|
|
ioctl(ctl_fd, AUDIO_GETINFO, (char *)&info);
|
2000-01-28 14:55:50 +00:00
|
|
|
printf(
|
2004-07-20 15:01:56 +00:00
|
|
|
"audio: rate %d, chan %d, prec %d, code %d, gain %d, mon %d, port %d\n",
|
2000-01-28 14:55:50 +00:00
|
|
|
info.record.sample_rate, info.record.channels,
|
2001-08-29 14:35:15 +00:00
|
|
|
info.record.precision, info.record.encoding,
|
2004-07-20 15:01:56 +00:00
|
|
|
info.record.gain, info.monitor_gain, info.record.port);
|
2000-01-28 14:55:50 +00:00
|
|
|
printf(
|
|
|
|
"audio: samples %d, eof %d, pause %d, error %d, waiting %d, balance %d\n",
|
|
|
|
info.record.samples, info.record.eof,
|
|
|
|
info.record.pause, info.record.error,
|
|
|
|
info.record.waiting, info.record.balance);
|
2004-07-20 15:01:56 +00:00
|
|
|
#endif /* not PCM_STYLE_SOUND */
|
2000-01-28 14:55:50 +00:00
|
|
|
}
|
2001-08-29 14:35:15 +00:00
|
|
|
#else
|
|
|
|
int audio_bs;
|
2004-07-20 15:01:56 +00:00
|
|
|
#endif /* HAVE_{SYS_AUDIOIO,SUN_AUDIOIO,MACHINE_SOUNDCARD,SYS_SOUNDCARD}_H */
|