forked from rdesktop/rdesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rdpsnd_sgi.c
309 lines (247 loc) · 7.12 KB
/
rdpsnd_sgi.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
/* -*- c-basic-offset: 8 -*-
rdesktop: A Remote Desktop Protocol client.
Sound Channel Process Functions - SGI/IRIX
Copyright (C) Matthew Chapman <matthewc.unsw.edu.au> 2003-2008
Copyright (C) GuoJunBo <[email protected]> 2003
Copyright (C) Jeremy Meng <[email protected]> 2004-2005
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/>.
*/
#include "rdesktop.h"
#include "rdpsnd.h"
#include <errno.h>
#include <dmedia/audio.h>
#include <unistd.h>
/* #define IRIX_DEBUG 1 */
#define IRIX_MAX_VOL 65535
ALconfig audioconfig;
ALport output_port;
static int g_snd_rate;
static int width = AL_SAMPLE_16;
static char *sgi_output_device = NULL;
double min_volume, max_volume, volume_range;
int resource, maxFillable;
int combinedFrameSize;
void sgi_play(void);
void
sgi_add_fds(int *n, fd_set * rfds, fd_set * wfds, struct timeval *tv)
{
/* We need to be called rather often... */
if (output_port != (ALport) 0 && !rdpsnd_queue_empty())
FD_SET(0, wfds);
}
void
sgi_check_fds(fd_set * rfds, fd_set * wfds)
{
if (output_port == (ALport) 0)
return;
if (!rdpsnd_queue_empty())
sgi_play();
}
RD_BOOL
sgi_open(void)
{
ALparamInfo pinfo;
static int warned = 0;
#if (defined(IRIX_DEBUG))
logger(Sound, Debug, "sgi_open()");
#endif
if (!warned && sgi_output_device)
{
logger(Sound, Warning, "sgi_open(), device-options not supported for libao-driver");
warned = 1;
}
if (alGetParamInfo(AL_DEFAULT_OUTPUT, AL_GAIN, &pinfo) < 0)
{
logger(Sound, Error, "sgi_open(), alGetParamInfo failed: %s",
alGetErrorString(oserror()));
}
min_volume = alFixedToDouble(pinfo.min.ll);
max_volume = alFixedToDouble(pinfo.max.ll);
volume_range = (max_volume - min_volume);
logger(Sound, Debug, "sgi_open(), minvol = %lf, maxvol= %lf, range = %lf",
min_volume, max_volume, volume_range);
audioconfig = alNewConfig();
if (audioconfig == (ALconfig) 0)
{
logger(Sound, Error, "sgi_open(), alNewConfig failed: %s",
alGetErrorString(oserror()));
return False;
}
output_port = alOpenPort("rdpsnd", "w", 0);
if (output_port == (ALport) 0)
{
logger(Sound, Error, "sgi_open(), alOpenPort failed: %s",
alGetErrorString(oserror()));
return False;
}
logger(Sound, Debug, "sgi_open(), done");
return True;
}
void
sgi_close(void)
{
/* Ack all remaining packets */
logger(Sound, Debug, "sgi_close()");
while (!rdpsnd_queue_empty())
rdpsnd_queue_next(0);
alDiscardFrames(output_port, 0);
alClosePort(output_port);
output_port = (ALport) 0;
alFreeConfig(audioconfig);
logger(Sound, Debug, "sgi_close(), done");
}
RD_BOOL
sgi_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;
}
RD_BOOL
sgi_set_format(RD_WAVEFORMATEX * pwfx)
{
int channels;
int frameSize, channelCount;
ALpv params;
logger(Sound, Debug, "sgi_set_format()");
if (pwfx->wBitsPerSample == 8)
width = AL_SAMPLE_8;
else if (pwfx->wBitsPerSample == 16)
width = AL_SAMPLE_16;
/* Limited support to configure an opened audio port in IRIX. The
number of channels is a static setting and can not be changed after
a port is opened. So if the number of channels remains the same, we
can configure other settings; otherwise we have to reopen the audio
port, using same config. */
channels = pwfx->nChannels;
g_snd_rate = pwfx->nSamplesPerSec;
alSetSampFmt(audioconfig, AL_SAMPFMT_TWOSCOMP);
alSetWidth(audioconfig, width);
if (channels != alGetChannels(audioconfig))
{
alClosePort(output_port);
alSetChannels(audioconfig, channels);
output_port = alOpenPort("rdpsnd", "w", audioconfig);
if (output_port == (ALport) 0)
{
logger(Sound, Error, "sgi_set_format(), alOpenPort failed: %s",
alGetErrorString(oserror()));
return False;
}
}
resource = alGetResource(output_port);
maxFillable = alGetFillable(output_port);
channelCount = alGetChannels(audioconfig);
frameSize = alGetWidth(audioconfig);
if (frameSize == 0 || channelCount == 0)
{
logger(Sound, Error, "sgi_set_format(), bad frameSize or channelCount");
return False;
}
combinedFrameSize = frameSize * channelCount;
params.param = AL_RATE;
params.value.ll = (long long) g_snd_rate << 32;
if (alSetParams(resource, ¶ms, 1) < 0)
{
logger(Sound, Error, "sgi_set_format(), alSetParams failed: %s",
alGetErrorString(oserror()));
return False;
}
if (params.sizeOut < 0)
{
logger(Sound, Error, "sgi_set_format(), invalid rate %d", g_snd_rate);
return False;
}
logger(Sound, Debug, "sgi_set_format(), done");
return True;
}
void
sgi_volume(uint16 left, uint16 right)
{
double gainleft, gainright;
ALpv pv[1];
ALfixed gain[8];
logger(Sound, Debug, "sgi_volume(), left=%d, right=%d", left, right);
gainleft = (double) left / IRIX_MAX_VOL;
gainright = (double) right / IRIX_MAX_VOL;
gain[0] = alDoubleToFixed(min_volume + gainleft * volume_range);
gain[1] = alDoubleToFixed(min_volume + gainright * volume_range);
pv[0].param = AL_GAIN;
pv[0].value.ptr = gain;
pv[0].sizeIn = 8;
if (alSetParams(AL_DEFAULT_OUTPUT, pv, 1) < 0)
{
logger(Sound, Error, "sgi_volume(), alSetParams failed: %s",
alGetErrorString(oserror()));
return;
}
logger(Sound, Debug, "sgi_volume(), done");
}
void
sgi_play(void)
{
struct audio_packet *packet;
ssize_t len;
STREAM out;
unsigned char *data;
int gf;
while (1)
{
if (rdpsnd_queue_empty())
return;
packet = rdpsnd_queue_current_packet();
out = packet->s;
len = s_remaining(out);
in_uint8p(out, data, len);
alWriteFrames(output_port, data, len / combinedFrameSize);
if (s_check_end(out))
{
gf = alGetFilled(output_port);
if (gf < (4 * maxFillable / 10))
{
rdpsnd_queue_next(0);
}
else
{
/* logger(Sound,Debug, "sgi_play(), busy playing..."); */
usleep(10);
return;
}
}
}
}
struct audio_driver *
sgi_register(char *options)
{
static struct audio_driver sgi_driver;
memset(&sgi_driver, 0, sizeof(sgi_driver));
sgi_driver.name = "sgi";
sgi_driver.description = "SGI output driver";
sgi_driver.add_fds = sgi_add_fds;
sgi_driver.check_fds = sgi_check_fds;
sgi_driver.wave_out_open = sgi_open;
sgi_driver.wave_out_close = sgi_close;
sgi_driver.wave_out_format_supported = sgi_format_supported;
sgi_driver.wave_out_set_format = sgi_set_format;
sgi_driver.wave_out_volume = sgi_volume;
sgi_driver.need_byteswap_on_be = 1;
sgi_driver.need_resampling = 0;
if (options)
{
sgi_output_device = xstrdup(options);
}
return &sgi_driver;
}