Skip to content

Commit 2424812

Browse files
committed
Fix OSS audio broken when adding multiple audio devices in version 1.2.
1 parent dc9bc8d commit 2424812

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

audio.c

+17-17
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ static struct adev_s {
115115
/* e.g. 4 for stereo 16 bit. */
116116

117117
#else
118-
oss_audio_device_fd; /* Single device, both directions. */
118+
int oss_audio_device_fd; /* Single device, both directions. */
119119

120120
#endif
121121

@@ -144,7 +144,7 @@ static struct adev_s {
144144
static int set_alsa_params (int a, snd_pcm_t *handle, struct audio_s *pa, char *name, char *dir);
145145
//static void alsa_select_device (char *pick_dev, int direction, char *result);
146146
#else
147-
static int set_oss_params (int fd, struct audio_s *pa);
147+
static int set_oss_params (int a, int fd, struct audio_s *pa);
148148
#endif
149149

150150

@@ -351,17 +351,17 @@ int audio_open (struct audio_s *pa)
351351
adev[a].inbuf_size_in_bytes = set_alsa_params (a, adev[a].audio_in_handle, pa, audio_in_name, "input");
352352

353353
#else // OSS
354-
oss_audio_device_fd = open (pa->adev[a].adevice_in, O_RDWR);
354+
adev[a].oss_audio_device_fd = open (pa->adev[a].adevice_in, O_RDWR);
355355

356-
if (oss_audio_device_fd < 0) {
356+
if (adev[a].oss_audio_device_fd < 0) {
357357
text_color_set(DW_COLOR_ERROR);
358358
dw_printf ("%s:\n", pa->adev[a].adevice_in);
359359
// snprintf (message, sizeof(message), "Could not open audio device %s", pa->adev[a].adevice_in);
360360
// perror (message);
361361
return (-1);
362362
}
363363

364-
adev[a].outbuf_size_in_bytes = adev[a].inbuf_size_in_bytes = set_oss_params (oss_audio_device_fd, pa);
364+
adev[a].outbuf_size_in_bytes = adev[a].inbuf_size_in_bytes = set_oss_params (a, adev[a].oss_audio_device_fd, pa);
365365

366366
if (adev[a].inbuf_size_in_bytes <= 0 || adev[a].outbuf_size_in_bytes <= 0) {
367367
return (-1);
@@ -686,7 +686,7 @@ static int set_alsa_params (int a, snd_pcm_t *handle, struct audio_s *pa, char *
686686
* See /usr/include/sys/soundcard.h for details.
687687
*/
688688

689-
static int set_oss_params (int fd, struct audio_s *pa)
689+
static int set_oss_params (int a, int fd, struct audio_s *pa)
690690
{
691691
int err;
692692
int devcaps;
@@ -770,7 +770,7 @@ static int set_oss_params (int fd, struct audio_s *pa)
770770
*
771771
* This was long ago under different conditions.
772772
* Should study this again some day.
773-
*/
773+
*
774774
* Your milage may vary.
775775
*/
776776
err = ioctl (fd, SNDCTL_DSP_GETBLKSIZE, &ossbuf_size_in_bytes);
@@ -966,9 +966,9 @@ int audio_get (int a)
966966
/* Fixed in 1.2. This was formerly outside of the switch */
967967
/* so the OSS version did not process stdin or UDP. */
968968

969-
while (adev[a]..g_audio_in_type == AUDIO_IN_TYPE_SOUNDCARD && adev[a].inbuf_next >= adev[a].inbuf_len) {
970-
assert (oss_audio_device_fd > 0);
971-
n = read (oss_audio_device_fd, adev[a].inbuf_ptr, adev[a].inbuf_size_in_bytes);
969+
while (adev[a].g_audio_in_type == AUDIO_IN_TYPE_SOUNDCARD && adev[a].inbuf_next >= adev[a].inbuf_len) {
970+
assert (adev[a].oss_audio_device_fd > 0);
971+
n = read (adev[a].oss_audio_device_fd, adev[a].inbuf_ptr, adev[a].inbuf_size_in_bytes);
972972
//text_color_set(DW_COLOR_DEBUG);
973973
// dw_printf ("audio_get(): read %d returns %d\n", adev[a].inbuf_size_in_bytes, n);
974974
if (n < 0) {
@@ -1236,8 +1236,8 @@ int audio_flush (int a)
12361236
len = adev[a].outbuf_len;
12371237

12381238
while (len > 0) {
1239-
assert (oss_audio_device_fd > 0);
1240-
k = write (oss_audio_device_fd, ptr, len);
1239+
assert (adev[a].oss_audio_device_fd > 0);
1240+
k = write (adev[a].oss_audio_device_fd, ptr, len);
12411241
#if DEBUGx
12421242
text_color_set(DW_COLOR_DEBUG);
12431243
dw_printf ("audio_flush(): write %d returns %d\n", len, k);
@@ -1329,12 +1329,12 @@ void audio_wait (int a)
13291329

13301330
#else
13311331

1332-
assert (oss_audio_device_fd > 0);
1332+
assert (adev[a].oss_audio_device_fd > 0);
13331333

13341334
// This caused a crash later on Cygwin.
13351335
// Haven't tried it on other (non-Linux) Unix yet.
13361336

1337-
// err = ioctl (oss_audio_device_fd, SNDCTL_DSP_SYNC, NULL);
1337+
// err = ioctl (adev[a].oss_audio_device_fd, SNDCTL_DSP_SYNC, NULL);
13381338

13391339
#endif
13401340

@@ -1375,13 +1375,13 @@ int audio_close (void)
13751375

13761376
#else
13771377

1378-
if (oss_audio_device_fd > 0) {
1378+
if (adev[a].oss_audio_device_fd > 0) {
13791379

13801380
audio_wait (a);
13811381

1382-
close (oss_audio_device_fd);
1382+
close (adev[a].oss_audio_device_fd);
13831383

1384-
oss_audio_device_fd = -1;
1384+
adev[a].oss_audio_device_fd = -1;
13851385
#endif
13861386

13871387
free (adev[a].inbuf_ptr);

0 commit comments

Comments
 (0)