forked from rdesktop/rdesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rdpsnd_oss.c
538 lines (446 loc) · 10.7 KB
/
rdpsnd_oss.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
/* -*- c-basic-offset: 8 -*-
rdesktop: A Remote Desktop Protocol client.
Sound Channel Process Functions - Open Sound System
Copyright (C) Matthew Chapman <matthewc.unsw.edu.au> 2003-2008
Copyright (C) GuoJunBo <[email protected]> 2003
Copyright 2006-2008 Pierre Ossman <[email protected]> for Cendio AB
Copyright 2005-2011 Peter Astrand <[email protected]> for Cendio AB
Copyright 2017 Henrik Andersson <[email protected]> for Cendio AB
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 3 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, see <http://www.gnu.org/licenses/>.
*/
/*
This is a workaround for Esound bug 312665.
FIXME: Remove this when Esound is fixed.
*/
#ifdef _FILE_OFFSET_BITS
#undef _FILE_OFFSET_BITS
#endif
#include <assert.h>
#include "rdesktop.h"
#include "rdpsnd.h"
#include "rdpsnd_dsp.h"
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <sys/time.h>
#include <sys/ioctl.h>
#include <sys/soundcard.h>
#include <sys/types.h>
#include <sys/stat.h>
#define DEFAULTDEVICE "/dev/dsp"
#define MAX_LEN 512
static int dsp_fd = -1;
static int dsp_mode;
static RD_BOOL dsp_configured;
static RD_BOOL dsp_broken;
static int stereo;
static int format;
static uint32 snd_rate;
static short samplewidth;
static char *dsp_dev;
static RD_BOOL in_esddsp;
/* This is a just a forward declaration */
static struct audio_driver oss_driver;
static void oss_play(void);
static void oss_record(void);
static RD_BOOL oss_set_format(RD_WAVEFORMATEX * pwfx);
static void
oss_add_fds(int *n, fd_set * rfds, fd_set * wfds, struct timeval *tv)
{
UNUSED(tv);
if (dsp_fd == -1)
return;
if ((dsp_mode == O_WRONLY || dsp_mode == O_RDWR) && !rdpsnd_queue_empty())
FD_SET(dsp_fd, wfds);
if (dsp_mode == O_RDONLY || dsp_mode == O_RDWR)
FD_SET(dsp_fd, rfds);
if (dsp_fd > *n)
*n = dsp_fd;
}
static void
oss_check_fds(fd_set * rfds, fd_set * wfds)
{
if (FD_ISSET(dsp_fd, wfds))
oss_play();
if (FD_ISSET(dsp_fd, rfds))
oss_record();
}
static RD_BOOL
detect_esddsp(void)
{
struct stat s;
char *preload;
if (fstat(dsp_fd, &s) == -1)
return False;
if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode))
return False;
preload = getenv("LD_PRELOAD");
if (preload == NULL)
return False;
if (strstr(preload, "esddsp") == NULL)
return False;
return True;
}
static void
oss_restore_format()
{
RD_WAVEFORMATEX wfx;
memset(&wfx, 0, sizeof(RD_WAVEFORMATEX));
switch (format)
{
case AFMT_U8:
wfx.wBitsPerSample = 8;
break;
case AFMT_S16_LE:
wfx.wBitsPerSample = 16;
break;
default:
wfx.wBitsPerSample = 0;
}
wfx.nChannels = stereo ? 2 : 1;
wfx.nSamplesPerSec = snd_rate;
oss_set_format(&wfx);
}
static RD_BOOL
oss_open(int wanted)
{
if (dsp_fd != -1)
{
if (wanted == dsp_mode)
{
/* should probably not happen */
return True;
}
else
{
/* device open but not our mode. Before
reopening O_RDWR, verify that the device is
duplex capable */
int caps;
ioctl(dsp_fd, SNDCTL_DSP_SETDUPLEX, 0);
if ((ioctl(dsp_fd, SNDCTL_DSP_GETCAPS, &caps) < 0)
|| !(caps & DSP_CAP_DUPLEX))
{
logger(Sound, Warning,
"this OSS device is not capable of full duplex operation");
return False;
}
close(dsp_fd);
dsp_mode = O_RDWR;
}
}
else
{
dsp_mode = wanted;
}
dsp_configured = False;
dsp_broken = False;
dsp_fd = open(dsp_dev, dsp_mode | O_NONBLOCK);
if (dsp_fd == -1)
{
logger(Sound, Error, "oss_open(), open() failed: %s", strerror(errno));
return False;
}
in_esddsp = detect_esddsp();
return True;
}
static void
oss_close(void)
{
close(dsp_fd);
dsp_fd = -1;
}
static RD_BOOL
oss_open_out(void)
{
if (!oss_open(O_WRONLY))
return False;
return True;
}
static void
oss_close_out(void)
{
oss_close();
if (dsp_mode == O_RDWR)
{
if (oss_open(O_RDONLY))
oss_restore_format();
}
/* Ack all remaining packets */
while (!rdpsnd_queue_empty())
rdpsnd_queue_next(0);
}
static RD_BOOL
oss_open_in(void)
{
if (!oss_open(O_RDONLY))
return False;
return True;
}
static void
oss_close_in(void)
{
oss_close();
if (dsp_mode == O_RDWR)
{
if (oss_open(O_WRONLY))
oss_restore_format();
}
}
static RD_BOOL
oss_format_supported(RD_WAVEFORMATEX * pwfx)
{
if (pwfx->wFormatTag != WAVE_FORMAT_PCM)
return False;
if ((pwfx->nChannels != 1) && (pwfx->nChannels != 2))
return False;
if ((pwfx->wBitsPerSample != 8) && (pwfx->wBitsPerSample != 16))
return False;
return True;
}
static RD_BOOL
oss_set_format(RD_WAVEFORMATEX * pwfx)
{
int fragments;
static RD_BOOL driver_broken = False;
assert(dsp_fd != -1);
if (dsp_configured)
{
if ((pwfx->wBitsPerSample == 8) && (format != AFMT_U8))
return False;
if ((pwfx->wBitsPerSample == 16) && (format != AFMT_S16_LE))
return False;
if ((pwfx->nChannels == 2) != ! !stereo)
return False;
if (pwfx->nSamplesPerSec != snd_rate)
return False;
return True;
}
ioctl(dsp_fd, SNDCTL_DSP_RESET, NULL);
ioctl(dsp_fd, SNDCTL_DSP_SYNC, NULL);
if (pwfx->wBitsPerSample == 8)
format = AFMT_U8;
else if (pwfx->wBitsPerSample == 16)
format = AFMT_S16_LE;
samplewidth = pwfx->wBitsPerSample / 8;
if (ioctl(dsp_fd, SNDCTL_DSP_SETFMT, &format) == -1)
{
logger(Sound, Error, "oss_set_format(), ioctl(SNDCTL_DSP_SETFMT) failed: %s",
strerror(errno));
oss_close();
return False;
}
if (pwfx->nChannels == 2)
{
stereo = 1;
samplewidth *= 2;
}
else
{
stereo = 0;
}
if (ioctl(dsp_fd, SNDCTL_DSP_STEREO, &stereo) == -1)
{
logger(Sound, Error, "oss_set_format(), ioctl(SNDCTL_DSP_CHANNELS) failed: %s",
strerror(errno));
oss_close();
return False;
}
oss_driver.need_resampling = 0;
snd_rate = pwfx->nSamplesPerSec;
if (ioctl(dsp_fd, SNDCTL_DSP_SPEED, &snd_rate) == -1)
{
uint32 rates[] = { 44100, 48000, 0 };
uint32 *prates = rates;
while (*prates != 0)
{
if ((pwfx->nSamplesPerSec != *prates)
&& (ioctl(dsp_fd, SNDCTL_DSP_SPEED, prates) != -1))
{
oss_driver.need_resampling = 1;
snd_rate = *prates;
if (rdpsnd_dsp_resample_set
(snd_rate, pwfx->wBitsPerSample, pwfx->nChannels) == False)
{
logger(Sound, Error,
"oss_set_format(), rdpsnd_dsp_resample_set() failed");
oss_close();
return False;
}
break;
}
prates++;
}
if (*prates == 0)
{
logger(Sound, Error, "oss_set_format(), SNDCTL_DSP_SPEED failed: %s",
strerror(errno));
oss_close();
return False;
}
}
/* try to get 12 fragments of 2^12 bytes size */
fragments = (12 << 16) + 12;
ioctl(dsp_fd, SNDCTL_DSP_SETFRAGMENT, &fragments);
if (!driver_broken)
{
audio_buf_info info;
memset(&info, 0, sizeof(info));
if (ioctl(dsp_fd, SNDCTL_DSP_GETOSPACE, &info) == -1)
{
logger(Sound, Error, "SNDCTL_DSP_GETOSPACE ioctl failed: %s",
strerror(errno));
oss_close();
return False;
}
if (info.fragments == 0 || info.fragstotal == 0 || info.fragsize == 0)
{
logger(Sound, Error,
"broken OSS-driver detected: fragments: %d, fragstotal: %d, fragsize: %d\n",
info.fragments, info.fragstotal, info.fragsize);
driver_broken = True;
}
}
dsp_configured = True;
return True;
}
static void
oss_volume(uint16 left, uint16 right)
{
uint32 volume;
volume = left / (65536 / 100);
volume |= right / (65536 / 100) << 8;
if (ioctl(dsp_fd, MIXER_WRITE(SOUND_MIXER_PCM), &volume) == -1)
{
logger(Sound, Warning,
"hardware volume control unavailable, falling back to software volume control");
oss_driver.wave_out_volume = rdpsnd_dsp_softvol_set;
rdpsnd_dsp_softvol_set(left, right);
return;
}
}
static void
oss_play(void)
{
struct audio_packet *packet;
ssize_t len;
STREAM out;
assert(dsp_fd != -1);
/* We shouldn't be called if the queue is empty, but still */
if (rdpsnd_queue_empty())
return;
packet = rdpsnd_queue_current_packet();
out = &packet->s;
len = out->end - out->p;
len = write(dsp_fd, out->p, (len > MAX_LEN) ? MAX_LEN : len);
if (len == -1)
{
if (errno != EWOULDBLOCK)
{
if (!dsp_broken)
logger(Sound, Error, "failed to write buffer: %s", strerror(errno));
dsp_broken = True;
rdpsnd_queue_next(0);
}
return;
}
dsp_broken = False;
out->p += len;
if (out->p == out->end)
{
int delay_bytes;
unsigned long delay_us;
audio_buf_info info;
if (in_esddsp)
{
/* EsounD has no way of querying buffer status, so we have to
* go with a fixed size. */
delay_bytes = out->size;
}
else
{
#ifdef SNDCTL_DSP_GETODELAY
delay_bytes = 0;
if (ioctl(dsp_fd, SNDCTL_DSP_GETODELAY, &delay_bytes) == -1)
delay_bytes = -1;
#else
delay_bytes = -1;
#endif
if (delay_bytes == -1)
{
if (ioctl(dsp_fd, SNDCTL_DSP_GETOSPACE, &info) != -1)
delay_bytes = info.fragstotal * info.fragsize - info.bytes;
else
delay_bytes = out->size;
}
}
delay_us = delay_bytes * (1000000 / (samplewidth * snd_rate));
rdpsnd_queue_next(delay_us);
}
}
static void
oss_record(void)
{
char buffer[32768];
int len;
assert(dsp_fd != -1);
len = read(dsp_fd, buffer, sizeof(buffer));
if (len == -1)
{
if (errno != EWOULDBLOCK)
{
if (!dsp_broken)
logger(Sound, Error, "failed to read samples: %s", strerror(errno));
dsp_broken = True;
rdpsnd_queue_next(0);
}
return;
}
dsp_broken = False;
rdpsnd_record(buffer, len);
}
struct audio_driver *
oss_register(char *options)
{
memset(&oss_driver, 0, sizeof(oss_driver));
oss_driver.name = "oss";
oss_driver.description =
"OSS output driver, default device: " DEFAULTDEVICE " or $AUDIODEV";
oss_driver.add_fds = oss_add_fds;
oss_driver.check_fds = oss_check_fds;
oss_driver.wave_out_open = oss_open_out;
oss_driver.wave_out_close = oss_close_out;
oss_driver.wave_out_format_supported = oss_format_supported;
oss_driver.wave_out_set_format = oss_set_format;
oss_driver.wave_out_volume = oss_volume;
oss_driver.wave_in_open = oss_open_in;
oss_driver.wave_in_close = oss_close_in;
oss_driver.wave_in_format_supported = oss_format_supported;
oss_driver.wave_in_set_format = oss_set_format;
oss_driver.wave_in_volume = NULL; /* FIXME */
oss_driver.need_byteswap_on_be = 0;
oss_driver.need_resampling = 0;
if (options)
{
dsp_dev = xstrdup(options);
}
else
{
dsp_dev = getenv("AUDIODEV");
if (dsp_dev == NULL)
{
dsp_dev = DEFAULTDEVICE;
}
}
return &oss_driver;
}