/[rdesktop]/sourceforge.net/trunk/rdesktop/rdpsnd_sgi.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /sourceforge.net/trunk/rdesktop/rdpsnd_sgi.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1302 - (hide annotations)
Thu Oct 26 09:47:17 2006 UTC (17 years, 8 months ago) by ossman_
File MIME type: text/plain
File size: 7288 byte(s)
Rewrite the queue management a bit so that blocks are not completed until
they have finished playing. This also makes the queue system mandatory for
all backends.

1 astrand 963 /* -*- c-basic-offset: 8 -*-
2 stargo 744 rdesktop: A Remote Desktop Protocol client.
3     Sound Channel Process Functions - SGI/IRIX
4     Copyright (C) Matthew Chapman 2003
5     Copyright (C) GuoJunBo guojunbo@ict.ac.cn 2003
6 astrand 1032 Copyright (C) Jeremy Meng void.foo@gmail.com 2004, 2005
7 stargo 744
8     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 2 of the License, or
11     (at your option) any later version.
12    
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16     GNU General Public License for more details.
17    
18     You should have received a copy of the GNU General Public License
19     along with this program; if not, write to the Free Software
20     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21     */
22    
23     #include "rdesktop.h"
24     #include <errno.h>
25     #include <dmedia/audio.h>
26    
27 astrand 1032 /* #define IRIX_DEBUG 1 */
28 stargo 744
29     #define IRIX_MAX_VOL 65535
30    
31     ALconfig audioconfig;
32     ALport output_port;
33    
34     static int g_snd_rate;
35     static int width = AL_SAMPLE_16;
36 stargo 1255 static char *sgi_output_device = NULL;
37 stargo 744
38     double min_volume, max_volume, volume_range;
39     int resource, maxFillable;
40     int combinedFrameSize;
41    
42     BOOL
43 stargo 1255 sgi_open(void)
44 stargo 744 {
45 astrand 746 ALparamInfo pinfo;
46 stargo 1255 static int warned = 0;
47 stargo 744
48     #if (defined(IRIX_DEBUG))
49 stargo 1254 fprintf(stderr, "sgi_open: begin\n");
50 stargo 744 #endif
51    
52 stargo 1255 if (!warned && sgi_output_device)
53     {
54     warning("device-options not supported for libao-driver\n");
55     warned = 1;
56     }
57    
58 astrand 746 if (alGetParamInfo(AL_DEFAULT_OUTPUT, AL_GAIN, &pinfo) < 0)
59     {
60 stargo 1254 fprintf(stderr, "sgi_open: alGetParamInfo failed: %s\n",
61 astrand 746 alGetErrorString(oserror()));
62     }
63     min_volume = alFixedToDouble(pinfo.min.ll);
64     max_volume = alFixedToDouble(pinfo.max.ll);
65     volume_range = (max_volume - min_volume);
66 stargo 744 #if (defined(IRIX_DEBUG))
67 stargo 1254 fprintf(stderr, "sgi_open: minvol = %lf, maxvol= %lf, range = %lf.\n",
68 astrand 746 min_volume, max_volume, volume_range);
69 stargo 744 #endif
70    
71     audioconfig = alNewConfig();
72 stargo 912 if (audioconfig == (ALconfig) 0)
73 astrand 746 {
74 stargo 1254 fprintf(stderr, "sgi_open: alNewConfig failed: %s\n", alGetErrorString(oserror()));
75 stargo 744 return False;
76     }
77    
78     output_port = alOpenPort("rdpsnd", "w", 0);
79 astrand 746 if (output_port == (ALport) 0)
80     {
81 stargo 1254 fprintf(stderr, "sgi_open: alOpenPort failed: %s\n", alGetErrorString(oserror()));
82 stargo 744 return False;
83     }
84    
85     #if (defined(IRIX_DEBUG))
86 stargo 1254 fprintf(stderr, "sgi_open: returning\n");
87 stargo 744 #endif
88     return True;
89     }
90    
91     void
92 stargo 1255 sgi_close(void)
93 stargo 744 {
94     /* Ack all remaining packets */
95     #if (defined(IRIX_DEBUG))
96 stargo 1254 fprintf(stderr, "sgi_close: begin\n");
97 stargo 744 #endif
98 astrand 746
99 stargo 1254 while (!rdpsnd_queue_empty())
100 stargo 744 {
101 stargo 1254 /* We need to add 50 to tell windows that time has passed while
102     * playing this packet */
103     rdpsnd_send_completion(rdpsnd_queue_current_packet()->tick + 50,
104     rdpsnd_queue_current_packet()->index);
105     rdpsnd_queue_next();
106 stargo 744 }
107 astrand 746 alDiscardFrames(output_port, 0);
108    
109 stargo 744 alClosePort(output_port);
110     alFreeConfig(audioconfig);
111     #if (defined(IRIX_DEBUG))
112 stargo 1254 fprintf(stderr, "sgi_close: returning\n");
113 stargo 744 #endif
114     }
115    
116     BOOL
117 stargo 1255 sgi_format_supported(WAVEFORMATEX * pwfx)
118 stargo 744 {
119     if (pwfx->wFormatTag != WAVE_FORMAT_PCM)
120     return False;
121     if ((pwfx->nChannels != 1) && (pwfx->nChannels != 2))
122     return False;
123     if ((pwfx->wBitsPerSample != 8) && (pwfx->wBitsPerSample != 16))
124     return False;
125    
126     return True;
127     }
128    
129     BOOL
130 stargo 1255 sgi_set_format(WAVEFORMATEX * pwfx)
131 stargo 744 {
132     int channels;
133 astrand 746 int frameSize, channelCount;
134     ALpv params;
135    
136 stargo 744 #if (defined(IRIX_DEBUG))
137 stargo 1254 fprintf(stderr, "sgi_set_format: init...\n");
138 stargo 744 #endif
139    
140     if (pwfx->wBitsPerSample == 8)
141     width = AL_SAMPLE_8;
142 astrand 746 else if (pwfx->wBitsPerSample == 16)
143 stargo 744 width = AL_SAMPLE_16;
144    
145 stargo 912 /* Limited support to configure an opened audio port in IRIX. The
146 astrand 909 number of channels is a static setting and can not be changed after
147 stargo 912 a port is opened. So if the number of channels remains the same, we
148     can configure other settings; otherwise we have to reopen the audio
149 astrand 909 port, using same config. */
150 stargo 897
151 stargo 744 channels = pwfx->nChannels;
152     g_snd_rate = pwfx->nSamplesPerSec;
153    
154     alSetSampFmt(audioconfig, AL_SAMPFMT_TWOSCOMP);
155     alSetWidth(audioconfig, width);
156 astrand 909 if (channels != alGetChannels(audioconfig))
157 stargo 897 {
158     alClosePort(output_port);
159     alSetChannels(audioconfig, channels);
160     output_port = alOpenPort("rdpsnd", "w", audioconfig);
161 stargo 744
162 stargo 897 if (output_port == (ALport) 0)
163     {
164 stargo 1254 fprintf(stderr, "sgi_set_format: alOpenPort failed: %s\n",
165 astrand 909 alGetErrorString(oserror()));
166 stargo 897 return False;
167     }
168 stargo 744
169     }
170    
171     resource = alGetResource(output_port);
172     maxFillable = alGetFillable(output_port);
173 astrand 746 channelCount = alGetChannels(audioconfig);
174     frameSize = alGetWidth(audioconfig);
175 stargo 744
176 astrand 746 if (frameSize == 0 || channelCount == 0)
177     {
178 stargo 1254 fprintf(stderr, "sgi_set_format: bad frameSize or channelCount\n");
179 astrand 746 return False;
180     }
181     combinedFrameSize = frameSize * channelCount;
182 stargo 744
183 astrand 746 params.param = AL_RATE;
184     params.value.ll = (long long) g_snd_rate << 32;
185 stargo 744
186 astrand 746 if (alSetParams(resource, &params, 1) < 0)
187     {
188     fprintf(stderr, "wave_set_format: alSetParams failed: %s\n",
189     alGetErrorString(oserror()));
190     return False;
191     }
192     if (params.sizeOut < 0)
193     {
194     fprintf(stderr, "wave_set_format: invalid rate %d\n", g_snd_rate);
195     return False;
196     }
197 stargo 744
198     #if (defined(IRIX_DEBUG))
199 stargo 1254 fprintf(stderr, "sgi_set_format: returning...\n");
200 stargo 744 #endif
201     return True;
202     }
203    
204     void
205 stargo 1255 sgi_volume(uint16 left, uint16 right)
206 stargo 744 {
207 astrand 746 double gainleft, gainright;
208     ALpv pv[1];
209     ALfixed gain[8];
210 stargo 744
211     #if (defined(IRIX_DEBUG))
212 stargo 1254 fprintf(stderr, "sgi_volume: begin\n");
213 astrand 746 fprintf(stderr, "left='%d', right='%d'\n", left, right);
214 stargo 744 #endif
215 astrand 746
216     gainleft = (double) left / IRIX_MAX_VOL;
217 stargo 744 gainright = (double) right / IRIX_MAX_VOL;
218    
219 astrand 746 gain[0] = alDoubleToFixed(min_volume + gainleft * volume_range);
220     gain[1] = alDoubleToFixed(min_volume + gainright * volume_range);
221 stargo 744
222 astrand 746 pv[0].param = AL_GAIN;
223     pv[0].value.ptr = gain;
224     pv[0].sizeIn = 8;
225     if (alSetParams(AL_DEFAULT_OUTPUT, pv, 1) < 0)
226     {
227 stargo 1254 fprintf(stderr, "sgi_volume: alSetParams failed: %s\n",
228 astrand 746 alGetErrorString(oserror()));
229     return;
230     }
231 stargo 744
232     #if (defined(IRIX_DEBUG))
233 stargo 1254 fprintf(stderr, "sgi_volume: returning\n");
234 stargo 744 #endif
235     }
236    
237     void
238 stargo 1255 sgi_play(void)
239 stargo 744 {
240     struct audio_packet *packet;
241     ssize_t len;
242     unsigned int i;
243     STREAM out;
244     int gf;
245    
246     while (1)
247     {
248 stargo 1254 if (rdpsnd_queue_empty())
249 stargo 744 {
250     g_dsp_busy = False;
251     return;
252     }
253    
254 stargo 1254 packet = rdpsnd_queue_current_packet();
255 stargo 744 out = &packet->s;
256    
257     len = out->end - out->p;
258    
259 astrand 746 alWriteFrames(output_port, out->p, len / combinedFrameSize);
260 stargo 744
261     out->p += len;
262     if (out->p == out->end)
263     {
264 stargo 897 gf = alGetFilled(output_port);
265 astrand 909 if (gf < (4 * maxFillable / 10))
266 stargo 744 {
267 ossman_ 1302 rdpsnd_queue_next(0);
268 stargo 744 }
269     else
270     {
271     #if (defined(IRIX_DEBUG))
272 stargo 897 /* fprintf(stderr,"Busy playing...\n"); */
273 stargo 744 #endif
274     g_dsp_busy = True;
275 astrand 1032 usleep(10);
276 stargo 744 return;
277     }
278     }
279     }
280     }
281 stargo 1255
282     struct audio_driver *
283     sgi_register(char *options)
284     {
285 stargo 1256 static struct audio_driver sgi_driver;
286    
287     sgi_driver.wave_out_open = sgi_open;
288     sgi_driver.wave_out_close = sgi_close;
289     sgi_driver.wave_out_format_supported = sgi_format_supported;
290     sgi_driver.wave_out_set_format = sgi_set_format;
291     sgi_driver.wave_out_volume = sgi_volume;
292     sgi_driver.wave_out_play = sgi_play;
293     sgi_driver.name = xstrdup("sgi");
294     sgi_driver.description = xstrdup("SGI output driver");
295 stargo 1260 sgi_driver.need_byteswap_on_be = 1;
296 stargo 1279 sgi_driver.need_resampling = 0;
297 stargo 1256 sgi_driver.next = NULL;
298    
299 stargo 1255 if (options)
300     {
301     sgi_output_device = xstrdup(options);
302     }
303     return &sgi_driver;
304     }

  ViewVC Help
Powered by ViewVC 1.1.26