2001-04-10 09:40:09 +00:00
|
|
|
/*
|
|
|
|
snd_oss.c
|
|
|
|
|
2001-08-23 04:01:46 +00:00
|
|
|
OSS sound output plugin.
|
2001-04-10 09:40:09 +00:00
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2003-01-15 15:31:36 +00:00
|
|
|
|
2001-10-16 16:25:32 +00:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
# include <sys/types.h>
|
|
|
|
#endif
|
2001-04-10 09:40:09 +00:00
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_MMAN_H
|
|
|
|
# include <sys/mman.h>
|
|
|
|
#endif
|
2002-08-25 16:34:28 +00:00
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
|
|
# include <sys/param.h>
|
|
|
|
#endif
|
2001-09-09 21:41:35 +00:00
|
|
|
#ifdef HAVE_SYS_SOUNDCARD_H
|
2001-04-10 09:40:09 +00:00
|
|
|
# include <sys/soundcard.h>
|
|
|
|
#elif defined HAVE_LINUX_SOUNDCARD_H
|
|
|
|
# include <linux/soundcard.h>
|
|
|
|
#elif HAVE_MACHINE_SOUNDCARD_H
|
|
|
|
# include <machine/soundcard.h>
|
|
|
|
#endif
|
2003-07-10 22:20:29 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2001-09-09 21:41:35 +00:00
|
|
|
#include <errno.h>
|
2001-08-22 20:26:25 +00:00
|
|
|
#include <fcntl.h>
|
2001-09-09 21:41:35 +00:00
|
|
|
#include <stdio.h>
|
2001-08-22 20:26:25 +00:00
|
|
|
#include <stdlib.h>
|
2001-09-09 21:41:35 +00:00
|
|
|
#include <unistd.h>
|
2001-08-22 20:26:25 +00:00
|
|
|
#include <sys/shm.h>
|
2001-09-09 21:41:35 +00:00
|
|
|
#include <sys/types.h>
|
2001-08-22 20:26:25 +00:00
|
|
|
#include <sys/wait.h>
|
|
|
|
|
2001-04-10 09:40:09 +00:00
|
|
|
#include "QF/cmd.h"
|
2001-05-31 03:41:35 +00:00
|
|
|
#include "QF/cvar.h"
|
2001-04-10 09:40:09 +00:00
|
|
|
#include "QF/qargs.h"
|
2001-09-21 04:22:46 +00:00
|
|
|
#include "QF/sys.h"
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2011-07-23 06:56:22 +00:00
|
|
|
#include "snd_internal.h"
|
2007-03-10 04:21:32 +00:00
|
|
|
|
2001-04-10 09:40:09 +00:00
|
|
|
#ifndef MAP_FAILED
|
|
|
|
# define MAP_FAILED ((void *) -1)
|
|
|
|
#endif
|
|
|
|
|
2002-08-24 07:40:10 +00:00
|
|
|
static int audio_fd;
|
|
|
|
static int snd_inited;
|
|
|
|
static int mmaped_io = 0;
|
|
|
|
static const char *snd_dev = "/dev/dsp";
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2009-12-20 05:58:16 +00:00
|
|
|
static int tryrates[] = { 44100, 48000, 11025, 22050, 22051, 44100, 8000 };
|
2002-08-24 07:40:10 +00:00
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
static int snd_stereo;
|
|
|
|
static cvar_t snd_stereo_cvar = {
|
|
|
|
.name = "snd_stereo",
|
|
|
|
.description =
|
|
|
|
"sound stereo output",
|
|
|
|
.default_value = "1",
|
|
|
|
.flags = CVAR_ROM,
|
|
|
|
.value = { .type = &cexpr_int, .value = &snd_stereo },
|
|
|
|
};
|
|
|
|
static int snd_rate;
|
|
|
|
static cvar_t snd_rate_cvar = {
|
|
|
|
.name = "snd_rate",
|
|
|
|
.description =
|
|
|
|
"sound playback rate. 0 is system default",
|
|
|
|
.default_value = "0",
|
|
|
|
.flags = CVAR_ROM,
|
|
|
|
.value = { .type = &cexpr_int, .value = &snd_rate },
|
|
|
|
};
|
|
|
|
static char *snd_device;
|
|
|
|
static cvar_t snd_device_cvar = {
|
|
|
|
.name = "snd_device",
|
|
|
|
.description =
|
|
|
|
"sound device. \"\" is system default",
|
|
|
|
.default_value = "",
|
|
|
|
.flags = CVAR_ROM,
|
|
|
|
.value = { .type = 0, .value = &snd_device },
|
|
|
|
};
|
|
|
|
static int snd_bits;
|
|
|
|
static cvar_t snd_bits_cvar = {
|
|
|
|
.name = "snd_bits",
|
|
|
|
.description =
|
|
|
|
"sound sample depth. 0 is system default",
|
|
|
|
.default_value = "0",
|
|
|
|
.flags = CVAR_ROM,
|
|
|
|
.value = { .type = &cexpr_int, .value = &snd_bits },
|
|
|
|
};
|
|
|
|
static int snd_oss_mmaped;
|
|
|
|
static cvar_t snd_oss_mmaped_cvar = {
|
|
|
|
.name = "snd_oss_mmaped",
|
|
|
|
.description =
|
|
|
|
"mmaped io",
|
|
|
|
.default_value = "1",
|
|
|
|
.flags = CVAR_ROM,
|
|
|
|
.value = { .type = &cexpr_int, .value = &snd_oss_mmaped },
|
|
|
|
};
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2001-08-31 00:05:58 +00:00
|
|
|
static plugin_t plugin_info;
|
|
|
|
static plugin_data_t plugin_info_data;
|
|
|
|
static plugin_funcs_t plugin_info_funcs;
|
|
|
|
static general_data_t plugin_info_general_data;
|
|
|
|
static general_funcs_t plugin_info_general_funcs;
|
|
|
|
static snd_output_data_t plugin_info_snd_output_data;
|
|
|
|
static snd_output_funcs_t plugin_info_snd_output_funcs;
|
2001-08-23 04:01:46 +00:00
|
|
|
|
2001-09-09 21:41:35 +00:00
|
|
|
|
2001-08-31 00:05:58 +00:00
|
|
|
static void
|
2001-08-23 04:01:46 +00:00
|
|
|
SNDDMA_Init_Cvars (void)
|
|
|
|
{
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
Cvar_Register (&snd_stereo_cvar, 0, 0);
|
|
|
|
Cvar_Register (&snd_rate_cvar, 0, 0);
|
|
|
|
Cvar_Register (&snd_device_cvar, 0, 0);
|
|
|
|
Cvar_Register (&snd_bits_cvar, 0, 0);
|
|
|
|
Cvar_Register (&snd_oss_mmaped_cvar, 0, 0);
|
2001-08-23 04:01:46 +00:00
|
|
|
}
|
2001-05-19 00:05:35 +00:00
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
static int
|
|
|
|
try_open (snd_t *snd, int rw)
|
2001-04-10 09:40:09 +00:00
|
|
|
{
|
2003-04-29 03:14:37 +00:00
|
|
|
int caps, fmt, rc, tmp, i;
|
|
|
|
int retries = 3;
|
|
|
|
int omode = O_WRONLY;
|
|
|
|
int mmmode = PROT_WRITE;
|
2003-04-30 02:52:41 +00:00
|
|
|
int mmflags = MAP_FILE;
|
2001-04-10 09:40:09 +00:00
|
|
|
struct audio_buf_info info;
|
|
|
|
|
|
|
|
snd_inited = 0;
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
mmaped_io = snd_oss_mmaped;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
|
|
|
// open snd_dev, confirm capability to mmap, and get size of dma buffer
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
if (snd_device[0])
|
|
|
|
snd_dev = snd_device;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2003-07-10 22:20:29 +00:00
|
|
|
if (rw) {
|
2003-04-29 03:14:37 +00:00
|
|
|
omode = O_RDWR;
|
|
|
|
mmmode |= PROT_READ;
|
2003-04-30 02:52:41 +00:00
|
|
|
mmflags |= MAP_SHARED;
|
2003-04-29 03:14:37 +00:00
|
|
|
}
|
2004-01-16 02:50:26 +00:00
|
|
|
omode |= O_NONBLOCK;
|
2003-04-29 03:14:37 +00:00
|
|
|
|
|
|
|
audio_fd = open (snd_dev, omode);
|
2001-04-10 09:40:09 +00:00
|
|
|
if (audio_fd < 0) { // Failed open, retry up to 3 times
|
|
|
|
// if it's busy
|
|
|
|
while ((audio_fd < 0) && retries-- &&
|
|
|
|
((errno == EAGAIN) || (errno == EBUSY))) {
|
|
|
|
sleep (1);
|
2003-04-29 03:14:37 +00:00
|
|
|
audio_fd = open (snd_dev, omode);
|
2001-04-10 09:40:09 +00:00
|
|
|
}
|
|
|
|
if (audio_fd < 0) {
|
2003-07-10 22:20:29 +00:00
|
|
|
Sys_Printf ("Could not open %s: %s\n", snd_dev, strerror (errno));
|
2001-04-10 09:40:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((rc = ioctl (audio_fd, SNDCTL_DSP_RESET, 0)) < 0) {
|
2003-07-10 22:20:29 +00:00
|
|
|
Sys_Printf ("Could not reset %s: %s\n", snd_dev, strerror (errno));
|
2001-04-10 09:40:09 +00:00
|
|
|
close (audio_fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ioctl (audio_fd, SNDCTL_DSP_GETCAPS, &caps) == -1) {
|
2003-07-10 22:20:29 +00:00
|
|
|
Sys_Printf ("Sound driver too old: %s\n", strerror (errno));
|
2001-04-10 09:40:09 +00:00
|
|
|
close (audio_fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(caps & DSP_CAP_TRIGGER) || !(caps & DSP_CAP_MMAP)) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("Sound device can't do memory-mapped I/O.\n");
|
2001-04-10 09:40:09 +00:00
|
|
|
close (audio_fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// set sample bits & speed
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
snd->samplebits = snd_bits;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
if (snd->samplebits != 16 && snd->samplebits != 8) {
|
2001-04-10 09:40:09 +00:00
|
|
|
ioctl (audio_fd, SNDCTL_DSP_GETFMTS, &fmt);
|
|
|
|
|
|
|
|
if (fmt & AFMT_S16_LE) { // little-endian 16-bit signed
|
2021-06-23 15:04:02 +00:00
|
|
|
snd->samplebits = 16;
|
2001-04-10 09:40:09 +00:00
|
|
|
} else {
|
|
|
|
if (fmt & AFMT_U8) { // unsigned 8-bit ulaw
|
2021-06-23 15:04:02 +00:00
|
|
|
snd->samplebits = 8;
|
2001-04-10 09:40:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
if (snd->samplebits == 16) {
|
2009-12-20 05:58:16 +00:00
|
|
|
rc = AFMT_S16_LE;
|
|
|
|
rc = ioctl (audio_fd, SNDCTL_DSP_SETFMT, &rc);
|
|
|
|
if (rc < 0) {
|
|
|
|
Sys_Printf ("Could not support 16-bit data. Try 8-bit. %s\n",
|
|
|
|
strerror (errno));
|
|
|
|
close (audio_fd);
|
|
|
|
return 0;
|
|
|
|
}
|
2021-06-23 15:04:02 +00:00
|
|
|
} else if (snd->samplebits == 8) {
|
2009-12-20 05:58:16 +00:00
|
|
|
rc = AFMT_U8;
|
|
|
|
rc = ioctl (audio_fd, SNDCTL_DSP_SETFMT, &rc);
|
|
|
|
if (rc < 0) {
|
|
|
|
Sys_Printf ("Could not support 8-bit data. %s\n",
|
|
|
|
strerror (errno));
|
|
|
|
close (audio_fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
2021-06-23 15:04:02 +00:00
|
|
|
Sys_Printf ("%d-bit sound not supported. %s", snd->samplebits,
|
2009-12-20 05:58:16 +00:00
|
|
|
strerror (errno));
|
|
|
|
close (audio_fd);
|
|
|
|
return 0;
|
|
|
|
}
|
2012-05-21 23:23:22 +00:00
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
tmp = snd->channels;
|
2009-12-20 05:58:16 +00:00
|
|
|
rc = ioctl (audio_fd, SNDCTL_DSP_CHANNELS, &tmp);
|
|
|
|
if (rc < 0) {
|
|
|
|
Sys_Printf ("Could not set %s to stereo=%d: %s\n", snd_dev,
|
2021-06-23 15:04:02 +00:00
|
|
|
snd->channels, strerror (errno));
|
2009-12-20 05:58:16 +00:00
|
|
|
close (audio_fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
if (snd_rate) {
|
|
|
|
snd->speed = snd_rate;
|
2001-04-10 09:40:09 +00:00
|
|
|
} else {
|
2003-04-17 00:01:48 +00:00
|
|
|
for (i = 0; i < ((int) sizeof (tryrates) / 4); i++)
|
2001-04-10 09:40:09 +00:00
|
|
|
if (!ioctl (audio_fd, SNDCTL_DSP_SPEED, &tryrates[i]))
|
|
|
|
break;
|
2021-06-23 15:04:02 +00:00
|
|
|
snd->speed = tryrates[i];
|
2001-04-10 09:40:09 +00:00
|
|
|
}
|
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
if (!snd_stereo) {
|
2021-06-23 15:04:02 +00:00
|
|
|
snd->channels = 1;
|
2001-04-10 09:40:09 +00:00
|
|
|
} else {
|
2021-06-23 15:04:02 +00:00
|
|
|
snd->channels = 2;
|
2001-04-10 09:40:09 +00:00
|
|
|
}
|
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
rc = ioctl (audio_fd, SNDCTL_DSP_SPEED, &snd->speed);
|
2001-04-10 09:40:09 +00:00
|
|
|
if (rc < 0) {
|
2021-06-23 15:04:02 +00:00
|
|
|
Sys_Printf ("Could not set %s speed to %d: %s\n", snd_dev, snd->speed,
|
2004-01-06 03:24:46 +00:00
|
|
|
strerror (errno));
|
2001-04-10 09:40:09 +00:00
|
|
|
close (audio_fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-20 05:58:16 +00:00
|
|
|
if (ioctl (audio_fd, SNDCTL_DSP_GETOSPACE, &info) == -1) {
|
|
|
|
Sys_Printf ("Um, can't do GETOSPACE?: %s\n", strerror (errno));
|
2001-04-10 09:40:09 +00:00
|
|
|
close (audio_fd);
|
|
|
|
return 0;
|
|
|
|
}
|
2009-12-20 05:58:16 +00:00
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
snd->frames = info.fragstotal * info.fragsize;
|
|
|
|
snd->frames /= snd->channels * snd->samplebits / 8;
|
|
|
|
snd->submission_chunk = 1;
|
2009-12-20 05:58:16 +00:00
|
|
|
|
2002-08-24 07:40:10 +00:00
|
|
|
if (mmaped_io) { // memory map the dma buffer
|
2003-04-30 14:55:58 +00:00
|
|
|
unsigned long sz = sysconf (_SC_PAGESIZE);
|
|
|
|
unsigned long len = info.fragstotal * info.fragsize;
|
|
|
|
|
|
|
|
len = (len + sz - 1) & ~(sz - 1);
|
2021-06-23 15:04:02 +00:00
|
|
|
snd->buffer = (byte *) mmap (NULL, len, mmmode, mmflags, audio_fd, 0);
|
|
|
|
if (snd->buffer == MAP_FAILED) {
|
2021-03-29 10:58:00 +00:00
|
|
|
Sys_MaskPrintf (SYS_snd, "Could not mmap %s: %s\n", snd_dev,
|
2012-01-06 12:21:45 +00:00
|
|
|
strerror (errno));
|
2002-06-10 15:36:33 +00:00
|
|
|
close (audio_fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
2021-06-23 15:04:02 +00:00
|
|
|
snd->buffer = malloc (snd->frames * snd->channels * (snd->samplebits / 8));
|
|
|
|
if (!snd->buffer) {
|
2002-06-10 15:36:33 +00:00
|
|
|
Sys_Printf ("SNDDMA_Init: memory allocation failure\n");
|
|
|
|
close (audio_fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2001-09-09 21:41:35 +00:00
|
|
|
// toggle the trigger & start her up
|
2001-04-10 09:40:09 +00:00
|
|
|
tmp = 0;
|
|
|
|
rc = ioctl (audio_fd, SNDCTL_DSP_SETTRIGGER, &tmp);
|
|
|
|
if (rc < 0) {
|
2003-07-10 22:20:29 +00:00
|
|
|
Sys_Printf ("Could not toggle.: %s\n", strerror (errno));
|
2002-04-17 21:15:19 +00:00
|
|
|
if (mmaped_io)
|
2021-06-23 15:04:02 +00:00
|
|
|
munmap (snd->buffer, snd->frames * snd->channels * snd->samplebits / 8);
|
2001-04-10 09:40:09 +00:00
|
|
|
close (audio_fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
tmp = PCM_ENABLE_OUTPUT;
|
|
|
|
rc = ioctl (audio_fd, SNDCTL_DSP_SETTRIGGER, &tmp);
|
|
|
|
if (rc < 0) {
|
2003-07-10 22:20:29 +00:00
|
|
|
Sys_Printf ("Could not toggle.: %s\n", strerror (errno));
|
2002-04-17 21:15:19 +00:00
|
|
|
if (mmaped_io)
|
2021-06-23 15:04:02 +00:00
|
|
|
munmap (snd->buffer, snd->frames * snd->channels * snd->samplebits / 8);
|
2001-04-10 09:40:09 +00:00
|
|
|
close (audio_fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
snd->framepos = 0;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
|
|
|
snd_inited = 1;
|
2021-06-23 15:04:02 +00:00
|
|
|
return 1;
|
2001-04-10 09:40:09 +00:00
|
|
|
}
|
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
static int
|
|
|
|
SNDDMA_Init (snd_t *snd)
|
2003-07-10 22:20:29 +00:00
|
|
|
{
|
2021-06-23 15:04:02 +00:00
|
|
|
return try_open (snd, 0) || try_open (snd, 1);
|
2003-07-10 22:20:29 +00:00
|
|
|
}
|
|
|
|
|
2001-08-31 00:05:58 +00:00
|
|
|
static int
|
2021-06-23 15:04:02 +00:00
|
|
|
SNDDMA_GetDMAPos (snd_t *snd)
|
2001-04-10 09:40:09 +00:00
|
|
|
{
|
|
|
|
struct count_info count;
|
|
|
|
|
|
|
|
if (!snd_inited)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (ioctl (audio_fd, SNDCTL_DSP_GETOPTR, &count) == -1) {
|
2003-07-10 22:20:29 +00:00
|
|
|
Sys_Printf ("Uh, %s dead: %s\n", snd_dev, strerror (errno));
|
2002-04-17 21:15:19 +00:00
|
|
|
if (mmaped_io)
|
2021-06-23 15:04:02 +00:00
|
|
|
munmap (snd->buffer, snd->frames * snd->channels * snd->samplebits / 8);
|
2001-04-10 09:40:09 +00:00
|
|
|
close (audio_fd);
|
|
|
|
snd_inited = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
2021-06-23 15:04:02 +00:00
|
|
|
snd->framepos = count.ptr / (snd->channels * snd->samplebits / 8);
|
2001-04-10 09:40:09 +00:00
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
return snd->framepos;
|
2001-04-10 09:40:09 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2001-08-31 00:05:58 +00:00
|
|
|
static void
|
2021-06-23 15:04:02 +00:00
|
|
|
SNDDMA_shutdown (snd_t *snd)
|
2001-04-10 09:40:09 +00:00
|
|
|
{
|
|
|
|
if (snd_inited) {
|
2002-04-17 21:15:19 +00:00
|
|
|
if (mmaped_io)
|
2021-06-23 15:04:02 +00:00
|
|
|
munmap (snd->buffer, snd->frames * snd->channels * snd->samplebits / 8);
|
2001-04-10 09:40:09 +00:00
|
|
|
close (audio_fd);
|
|
|
|
snd_inited = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-11 23:43:35 +00:00
|
|
|
static int
|
2021-06-23 15:04:02 +00:00
|
|
|
sample_bytes (snd_t *snd, int frames)
|
2010-08-11 23:43:35 +00:00
|
|
|
{
|
2021-06-23 15:04:02 +00:00
|
|
|
return frames * snd->channels * snd->samplebits / 8;
|
2010-08-11 23:43:35 +00:00
|
|
|
}
|
2002-08-24 07:40:10 +00:00
|
|
|
|
2001-04-10 09:40:09 +00:00
|
|
|
/*
|
|
|
|
SNDDMA_Submit
|
|
|
|
|
|
|
|
Send sound to device if buffer isn't really the dma buffer
|
|
|
|
*/
|
2001-08-31 00:05:58 +00:00
|
|
|
static void
|
2021-06-23 15:04:02 +00:00
|
|
|
SNDDMA_Submit (snd_t *snd)
|
2001-04-10 09:40:09 +00:00
|
|
|
{
|
2010-08-11 23:43:35 +00:00
|
|
|
int frames;
|
|
|
|
int len;
|
|
|
|
int offset;
|
2002-08-24 07:40:10 +00:00
|
|
|
|
2001-08-24 02:38:28 +00:00
|
|
|
if (snd_inited && !mmaped_io) {
|
2010-08-11 23:43:35 +00:00
|
|
|
frames = *plugin_info_snd_output_data.paintedtime
|
2001-08-24 02:38:28 +00:00
|
|
|
- *plugin_info_snd_output_data.soundtime;
|
2021-06-23 15:04:02 +00:00
|
|
|
offset = frames * snd->channels * snd->samplebits / 8;
|
2001-08-24 02:38:28 +00:00
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
if (snd->framepos + frames <= snd->frames) {
|
|
|
|
len = sample_bytes (snd, frames);
|
|
|
|
if (write (audio_fd, snd->buffer + offset, len) != len)
|
2007-01-06 21:31:03 +00:00
|
|
|
Sys_Printf ("SNDDMA_Submit(): %s\n", strerror (errno));
|
|
|
|
} else {
|
2021-06-23 15:04:02 +00:00
|
|
|
int len = sample_bytes (snd, snd->frames - snd->framepos);
|
|
|
|
if (write (audio_fd, snd->buffer + offset, len) != len)
|
2007-01-06 21:31:03 +00:00
|
|
|
Sys_Printf ("SNDDMA_Submit(): %s\n", strerror (errno));
|
2021-06-23 15:04:02 +00:00
|
|
|
if (write (audio_fd, snd->buffer, offset - len) != offset - len)
|
2007-01-06 21:31:03 +00:00
|
|
|
Sys_Printf ("SNDDMA_Submit(): %s\n", strerror (errno));
|
2001-08-24 02:38:28 +00:00
|
|
|
}
|
2010-08-11 23:43:35 +00:00
|
|
|
*plugin_info_snd_output_data.soundtime += frames;
|
2001-08-24 02:38:28 +00:00
|
|
|
}
|
2001-04-10 09:40:09 +00:00
|
|
|
}
|
2001-07-05 20:18:23 +00:00
|
|
|
|
2001-08-31 00:05:58 +00:00
|
|
|
static void
|
2021-06-23 15:04:02 +00:00
|
|
|
SNDDMA_BlockSound (snd_t *snd)
|
2001-07-05 20:18:23 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-08-31 00:05:58 +00:00
|
|
|
static void
|
2021-06-23 15:04:02 +00:00
|
|
|
SNDDMA_UnblockSound (snd_t *snd)
|
2001-07-05 20:18:23 +00:00
|
|
|
{
|
|
|
|
}
|
2001-08-23 04:01:46 +00:00
|
|
|
|
2003-08-01 19:53:46 +00:00
|
|
|
PLUGIN_INFO(snd_output, oss)
|
|
|
|
{
|
2001-09-09 21:41:35 +00:00
|
|
|
plugin_info.type = qfp_snd_output;
|
|
|
|
plugin_info.api_version = QFPLUGIN_VERSION;
|
|
|
|
plugin_info.plugin_version = "0.1";
|
|
|
|
plugin_info.description = "OSS digital output";
|
|
|
|
plugin_info.copyright = "Copyright (C) 1996-1997 id Software, Inc.\n"
|
|
|
|
"Copyright (C) 1999,2000,2001 contributors of the QuakeForge "
|
|
|
|
"project\n"
|
|
|
|
"Please see the file \"AUTHORS\" for a list of contributors";
|
2001-08-23 04:01:46 +00:00
|
|
|
plugin_info.functions = &plugin_info_funcs;
|
|
|
|
plugin_info.data = &plugin_info_data;
|
|
|
|
|
|
|
|
plugin_info_data.general = &plugin_info_general_data;
|
|
|
|
plugin_info_data.input = NULL;
|
|
|
|
plugin_info_data.snd_output = &plugin_info_snd_output_data;
|
|
|
|
|
|
|
|
plugin_info_funcs.general = &plugin_info_general_funcs;
|
|
|
|
plugin_info_funcs.input = NULL;
|
|
|
|
plugin_info_funcs.snd_output = &plugin_info_snd_output_funcs;
|
|
|
|
|
2021-06-22 10:47:20 +00:00
|
|
|
plugin_info_general_funcs.init = SNDDMA_Init_Cvars;
|
|
|
|
plugin_info_general_funcs.shutdown = NULL;
|
2021-06-23 15:04:02 +00:00
|
|
|
plugin_info_snd_output_funcs.init = SNDDMA_Init;
|
|
|
|
plugin_info_snd_output_funcs.shutdown = SNDDMA_shutdown;
|
|
|
|
plugin_info_snd_output_funcs.get_dma_pos = SNDDMA_GetDMAPos;
|
|
|
|
plugin_info_snd_output_funcs.submit = SNDDMA_Submit;
|
|
|
|
plugin_info_snd_output_funcs.block_sound = SNDDMA_BlockSound;
|
|
|
|
plugin_info_snd_output_funcs.unblock_sound = SNDDMA_UnblockSound;
|
2001-08-23 04:01:46 +00:00
|
|
|
|
2001-09-09 21:41:35 +00:00
|
|
|
return &plugin_info;
|
2001-08-23 04:01:46 +00:00
|
|
|
}
|