Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
463 lines (398 loc) · 13.4 KB

SDL_nto_audio.c

File metadata and controls

463 lines (398 loc) · 13.4 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Jan 4, 2004
Jan 4, 2004
3
Copyright (C) 1997-2004 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
26
27
28
29
30
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sched.h>
Jun 16, 2002
Jun 16, 2002
31
#include <sys/select.h>
Sep 21, 2003
Sep 21, 2003
32
33
#include <sys/neutrino.h>
#include <sys/asoundlib.h>
Apr 26, 2001
Apr 26, 2001
34
Feb 10, 2006
Feb 10, 2006
35
#include "SDL_timer.h"
Apr 26, 2001
Apr 26, 2001
36
#include "SDL_audio.h"
Feb 16, 2006
Feb 16, 2006
37
38
#include "../SDL_audiomem.h"
#include "../SDL_audio_c.h"
Apr 26, 2001
Apr 26, 2001
39
40
41
#include "SDL_nto_audio.h"
/* The tag name used by NTO audio */
Sep 21, 2003
Sep 21, 2003
42
#define DRIVER_NAME "qsa-nto"
Apr 26, 2001
Apr 26, 2001
43
44
45
46
/* default channel communication parameters */
#define DEFAULT_CPARAMS_RATE 22050
#define DEFAULT_CPARAMS_VOICES 1
Sep 21, 2003
Sep 21, 2003
47
/* FIXME: need to add in the near future flexible logic with frag_size and frags count */
Jun 16, 2002
Jun 16, 2002
48
#define DEFAULT_CPARAMS_FRAG_SIZE 4096
Apr 26, 2001
Apr 26, 2001
49
#define DEFAULT_CPARAMS_FRAGS_MIN 1
Feb 20, 2002
Feb 20, 2002
50
#define DEFAULT_CPARAMS_FRAGS_MAX 1
Apr 26, 2001
Apr 26, 2001
51
52
/* Open the audio device for playback, and don't block if busy */
Jun 16, 2002
Jun 16, 2002
53
#define OPEN_FLAGS SND_PCM_OPEN_PLAYBACK
Apr 26, 2001
Apr 26, 2001
54
Sep 21, 2003
Sep 21, 2003
55
56
57
58
59
#define QSA_NO_WORKAROUNDS 0x00000000
#define QSA_MMAP_WORKAROUND 0x00000001
struct BuggyCards
{
Jul 10, 2006
Jul 10, 2006
60
61
char *cardname;
unsigned long bugtype;
Sep 21, 2003
Sep 21, 2003
62
63
64
65
};
#define QSA_WA_CARDS 3
Jul 10, 2006
Jul 10, 2006
66
67
68
69
struct BuggyCards buggycards[QSA_WA_CARDS] = {
{"Sound Blaster Live!", QSA_MMAP_WORKAROUND},
{"Vortex 8820", QSA_MMAP_WORKAROUND},
{"Vortex 8830", QSA_MMAP_WORKAROUND},
Sep 21, 2003
Sep 21, 2003
70
71
};
Oct 17, 2006
Oct 17, 2006
72
73
74
75
76
77
78
static inline void
NTO_SetError(const char *fn, int rval)
{
SDL_SetError("NTO: %s failed: %s", fn, snd_strerror(rval));
}
Apr 26, 2001
Apr 26, 2001
79
Sep 21, 2003
Sep 21, 2003
80
/* card names check to apply the workarounds */
Jul 10, 2006
Jul 10, 2006
81
82
static int
NTO_CheckBuggyCards(_THIS, unsigned long checkfor)
Sep 21, 2003
Sep 21, 2003
83
84
85
{
char scardname[33];
int it;
Jul 10, 2006
Jul 10, 2006
86
Oct 17, 2006
Oct 17, 2006
87
if (snd_card_get_name(this->hidden->cardno, scardname, 32) < 0) {
Sep 21, 2003
Sep 21, 2003
88
89
90
return 0;
}
Jul 10, 2006
Jul 10, 2006
91
92
93
94
95
96
for (it = 0; it < QSA_WA_CARDS; it++) {
if (SDL_strcmp(buggycards[it].cardname, scardname) == 0) {
if (buggycards[it].bugtype == checkfor) {
return 1;
}
}
Sep 21, 2003
Sep 21, 2003
97
98
99
100
}
return 0;
}
Apr 26, 2001
Apr 26, 2001
101
Jul 10, 2006
Jul 10, 2006
102
103
static void
NTO_ThreadInit(_THIS)
Apr 26, 2001
Apr 26, 2001
104
{
Jul 10, 2006
Jul 10, 2006
105
struct sched_param param;
Oct 17, 2006
Oct 17, 2006
106
int status = SchedGet(0, 0, &param);
Sep 21, 2003
Sep 21, 2003
107
Jul 10, 2006
Jul 10, 2006
108
109
110
/* increasing default 10 priority to 25 to avoid jerky sound */
param.sched_priority = param.sched_curpriority + 15;
status = SchedSet(0, 0, SCHED_NOCHANGE, &param);
Apr 26, 2001
Apr 26, 2001
111
112
}
Sep 21, 2003
Sep 21, 2003
113
/* PCM transfer channel parameters initialize function */
Jul 10, 2006
Jul 10, 2006
114
115
static void
NTO_InitAudioParams(snd_pcm_channel_params_t * cpars)
Apr 26, 2001
Apr 26, 2001
116
{
Feb 7, 2006
Feb 7, 2006
117
SDL_memset(cpars, 0, sizeof(snd_pcm_channel_params_t));
Sep 21, 2003
Sep 21, 2003
118
119
120
121
cpars->channel = SND_PCM_CHANNEL_PLAYBACK;
cpars->mode = SND_PCM_MODE_BLOCK;
cpars->start_mode = SND_PCM_START_DATA;
Jul 10, 2006
Jul 10, 2006
122
cpars->stop_mode = SND_PCM_STOP_STOP;
Sep 21, 2003
Sep 21, 2003
123
124
125
126
127
128
129
cpars->format.format = SND_PCM_SFMT_S16_LE;
cpars->format.interleave = 1;
cpars->format.rate = DEFAULT_CPARAMS_RATE;
cpars->format.voices = DEFAULT_CPARAMS_VOICES;
cpars->buf.block.frag_size = DEFAULT_CPARAMS_FRAG_SIZE;
cpars->buf.block.frags_min = DEFAULT_CPARAMS_FRAGS_MIN;
cpars->buf.block.frags_max = DEFAULT_CPARAMS_FRAGS_MAX;
Apr 26, 2001
Apr 26, 2001
130
131
132
133
}
/* This function waits until it is possible to write a full sound buffer */
Jul 10, 2006
Jul 10, 2006
134
static void
Oct 17, 2006
Oct 17, 2006
135
NTO_WaitDevice(_THIS)
Apr 26, 2001
Apr 26, 2001
136
{
Sep 21, 2003
Sep 21, 2003
137
138
139
140
fd_set wfds;
int selectret;
FD_ZERO(&wfds);
Oct 17, 2006
Oct 17, 2006
141
FD_SET(this->hidden->audio_fd, &wfds);
Sep 21, 2003
Sep 21, 2003
142
143
do {
Oct 17, 2006
Oct 17, 2006
144
selectret = select(this->hidden->audio_fd+1, NULL, &wfds, NULL, NULL);
Jul 10, 2006
Jul 10, 2006
145
146
147
switch (selectret) {
case -1:
case 0:
Oct 17, 2006
Oct 17, 2006
148
SDL_SetError("NTO: select() failed: %s\n", strerror(errno));
Jul 10, 2006
Jul 10, 2006
149
150
return;
default:
Oct 17, 2006
Oct 17, 2006
151
if (FD_ISSET(this->hidden->audio_fd, &wfds)) {
Jul 10, 2006
Jul 10, 2006
152
153
154
return;
}
break;
Sep 21, 2003
Sep 21, 2003
155
}
Jul 10, 2006
Jul 10, 2006
156
157
}
while (1);
Apr 26, 2001
Apr 26, 2001
158
159
}
Jul 10, 2006
Jul 10, 2006
160
static void
Oct 17, 2006
Oct 17, 2006
161
NTO_PlayDevice(_THIS)
Apr 26, 2001
Apr 26, 2001
162
{
Oct 17, 2006
Oct 17, 2006
163
snd_pcm_channel_status_t cstatus;
Sep 21, 2003
Sep 21, 2003
164
165
int written, rval;
int towrite;
Jul 10, 2006
Jul 10, 2006
166
void *pcmbuffer;
Sep 21, 2003
Sep 21, 2003
167
Oct 17, 2006
Oct 17, 2006
168
if ((!this->enabled) || (!this->hidden)) {
Sep 21, 2003
Sep 21, 2003
169
170
return;
}
Jul 10, 2006
Jul 10, 2006
171
Sep 21, 2003
Sep 21, 2003
172
towrite = this->spec.size;
Oct 17, 2006
Oct 17, 2006
173
pcmbuffer = this->hidden->pcm_buf;
Sep 21, 2003
Sep 21, 2003
174
175
176
/* Write the audio data, checking for EAGAIN (buffer full) and underrun */
do {
Oct 17, 2006
Oct 17, 2006
177
178
written = snd_pcm_plugin_write(this->hidden->audio_handle,
pcmbuffer, towrite);
Jul 10, 2006
Jul 10, 2006
179
180
if (written != towrite) {
if ((errno == EAGAIN) || (errno == EWOULDBLOCK)) {
Sep 21, 2003
Sep 21, 2003
181
182
183
184
185
186
/* Let a little CPU time go by and try to write again */
SDL_Delay(1);
/* if we wrote some data */
towrite -= written;
pcmbuffer += written * this->spec.channels;
continue;
Oct 17, 2006
Oct 17, 2006
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
} else if ((errno == EINVAL) || (errno == EIO)) {
SDL_memset(&cstatus, 0, sizeof (cstatus));
cstatus.channel = SND_PCM_CHANNEL_PLAYBACK;
rval = snd_pcm_plugin_status(this->hidden->audio_handle,
&cstatus);
if (rval < 0) {
NTO_SetError("snd_pcm_plugin_status", rval);
return;
}
if ( (cstatus.status == SND_PCM_STATUS_UNDERRUN) ||
(cstatus.status == SND_PCM_STATUS_READY)) {
rval = snd_pcm_plugin_prepare(this->hidden->audio_handle,
SND_PCM_CHANNEL_PLAYBACK);
if (rval < 0) {
NTO_SetError("snd_pcm_plugin_prepare", rval);
Sep 21, 2003
Sep 21, 2003
203
return;
Jul 10, 2006
Jul 10, 2006
204
}
Sep 21, 2003
Sep 21, 2003
205
}
Oct 17, 2006
Oct 17, 2006
206
207
208
continue;
} else {
return;
Sep 21, 2003
Sep 21, 2003
209
}
Jul 10, 2006
Jul 10, 2006
210
} else {
Sep 21, 2003
Sep 21, 2003
211
212
213
214
/* we wrote all remaining data */
towrite -= written;
pcmbuffer += written * this->spec.channels;
}
Jul 10, 2006
Jul 10, 2006
215
216
}
while ((towrite > 0) && (this->enabled));
Sep 21, 2003
Sep 21, 2003
217
218
/* If we couldn't write, assume fatal error for now */
Jul 10, 2006
Jul 10, 2006
219
if (towrite != 0) {
Sep 21, 2003
Sep 21, 2003
220
221
this->enabled = 0;
}
Apr 26, 2001
Apr 26, 2001
222
223
}
Jul 10, 2006
Jul 10, 2006
224
static Uint8 *
Oct 17, 2006
Oct 17, 2006
225
NTO_GetDeviceBuf(_THIS)
Apr 26, 2001
Apr 26, 2001
226
{
Oct 17, 2006
Oct 17, 2006
227
return this->hidden->pcm_buf;
Apr 26, 2001
Apr 26, 2001
228
229
}
Jul 10, 2006
Jul 10, 2006
230
static void
Oct 17, 2006
Oct 17, 2006
231
NTO_CloseDevice(_THIS)
Apr 26, 2001
Apr 26, 2001
232
{
Oct 17, 2006
Oct 17, 2006
233
234
235
236
237
238
if (this->hidden != NULL) {
if (this->hidden->audio_handle != NULL) {
snd_pcm_plugin_flush(this->hidden->audio_handle,
SND_PCM_CHANNEL_PLAYBACK);
snd_pcm_close(this->hidden->audio_handle);
this->hidden->audio_handle = NULL;
Sep 21, 2003
Sep 21, 2003
239
}
Oct 17, 2006
Oct 17, 2006
240
241
242
if (this->hidden->pcm_buf != NULL) {
SDL_FreeAudioMem(this->hidden->pcm_buf);
this->hidden->pcm_buf = NULL;
Sep 21, 2003
Sep 21, 2003
243
}
Oct 17, 2006
Oct 17, 2006
244
245
SDL_free(this->hidden);
this->hidden = NULL;
Sep 21, 2003
Sep 21, 2003
246
}
Apr 26, 2001
Apr 26, 2001
247
248
}
Jul 10, 2006
Jul 10, 2006
249
static int
Oct 17, 2006
Oct 17, 2006
250
NTO_OpenDevice(_THIS, const char *devname, int iscapture)
Apr 26, 2001
Apr 26, 2001
251
{
Oct 17, 2006
Oct 17, 2006
252
253
254
255
256
257
int rval = 0;
int format = 0;
SDL_AudioFormat test_format = 0;
int found = 0;
snd_pcm_channel_setup_t csetup;
snd_pcm_channel_params_t cparams;
Sep 21, 2003
Sep 21, 2003
258
Oct 17, 2006
Oct 17, 2006
259
260
261
262
263
264
/* Initialize all variables that we clean on shutdown */
this->hidden = (struct SDL_PrivateAudioData *)
SDL_malloc((sizeof *this->hidden));
if (this->hidden == NULL) {
SDL_OutOfMemory();
return 0;
Sep 21, 2003
Sep 21, 2003
265
}
Oct 17, 2006
Oct 17, 2006
266
SDL_memset(this->hidden, 0, (sizeof *this->hidden));
Sep 21, 2003
Sep 21, 2003
267
268
269
270
271
/* initialize channel transfer parameters to default */
NTO_InitAudioParams(&cparams);
/* Open the audio device */
Oct 17, 2006
Oct 17, 2006
272
273
274
275
rval = snd_pcm_open_preferred(&this->hidden->audio_handle,
&this->hidden->cardno,
&this->hidden->deviceno, OPEN_FLAGS);
Jul 10, 2006
Jul 10, 2006
276
if (rval < 0) {
Oct 17, 2006
Oct 17, 2006
277
278
279
NTO_CloseDevice(this);
NTO_SetError("snd_pcm_open", rval);
return 0;
Sep 21, 2003
Sep 21, 2003
280
281
}
Jul 10, 2006
Jul 10, 2006
282
if (!NTO_CheckBuggyCards(this, QSA_MMAP_WORKAROUND)) {
Sep 21, 2003
Sep 21, 2003
283
/* enable count status parameter */
Oct 17, 2006
Oct 17, 2006
284
285
286
287
288
289
rval = snd_pcm_plugin_set_disable(this->hidden->audio_handle,
PLUGIN_DISABLE_MMAP);
if (rval < 0) {
NTO_CloseDevice(this);
NTO_SetError("snd_pcm_plugin_set_disable", rval);
return 0;
Sep 21, 2003
Sep 21, 2003
290
291
292
293
294
295
296
297
}
}
/* Try for a closest match on audio format */
format = 0;
/* can't use format as SND_PCM_SFMT_U8 = 0 in nto */
found = 0;
Oct 17, 2006
Oct 17, 2006
298
for (test_format = SDL_FirstAudioFormat(this->spec.format); !found;) {
Sep 21, 2003
Sep 21, 2003
299
/* if match found set format to equivalent ALSA format */
Jul 10, 2006
Jul 10, 2006
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
switch (test_format) {
case AUDIO_U8:
format = SND_PCM_SFMT_U8;
found = 1;
break;
case AUDIO_S8:
format = SND_PCM_SFMT_S8;
found = 1;
break;
case AUDIO_S16LSB:
format = SND_PCM_SFMT_S16_LE;
found = 1;
break;
case AUDIO_S16MSB:
format = SND_PCM_SFMT_S16_BE;
found = 1;
break;
case AUDIO_U16LSB:
format = SND_PCM_SFMT_U16_LE;
found = 1;
break;
case AUDIO_U16MSB:
format = SND_PCM_SFMT_U16_BE;
found = 1;
break;
Sep 1, 2006
Sep 1, 2006
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
case AUDIO_S32LSB:
format = SND_PCM_SFMT_S32_LE;
found = 1;
break;
case AUDIO_S32MSB:
format = SND_PCM_SFMT_S32_BE;
found = 1;
break;
case AUDIO_F32LSB:
format = SND_PCM_SFMT_FLOAT_LE;
found = 1;
break;
case AUDIO_F32MSB:
format = SND_PCM_SFMT_FLOAT_BE;
found = 1;
break;
Jul 10, 2006
Jul 10, 2006
341
342
default:
break;
Sep 21, 2003
Sep 21, 2003
343
344
}
Jul 10, 2006
Jul 10, 2006
345
if (!found) {
Sep 21, 2003
Sep 21, 2003
346
347
348
349
350
test_format = SDL_NextAudioFormat();
}
}
/* assumes test_format not 0 on success */
Jul 10, 2006
Jul 10, 2006
351
if (test_format == 0) {
Oct 17, 2006
Oct 17, 2006
352
353
354
NTO_CloseDevice(this);
SDL_SetError("NTO: Couldn't find any hardware audio formats");
return 0;
Sep 21, 2003
Sep 21, 2003
355
356
}
Oct 17, 2006
Oct 17, 2006
357
this->spec.format = test_format;
Sep 21, 2003
Sep 21, 2003
358
359
360
361
362
/* Set the audio format */
cparams.format.format = format;
/* Set mono or stereo audio (currently only two channels supported) */
Oct 17, 2006
Oct 17, 2006
363
cparams.format.voices = this->spec.channels;
Jul 10, 2006
Jul 10, 2006
364
Sep 21, 2003
Sep 21, 2003
365
/* Set rate */
Oct 17, 2006
Oct 17, 2006
366
cparams.format.rate = this->spec.freq;
Sep 21, 2003
Sep 21, 2003
367
368
/* Setup the transfer parameters according to cparams */
Oct 17, 2006
Oct 17, 2006
369
rval = snd_pcm_plugin_params(this->hidden->audio_handle, &cparams);
Jul 10, 2006
Jul 10, 2006
370
if (rval < 0) {
Oct 17, 2006
Oct 17, 2006
371
372
373
NTO_CloseDevice(this);
NTO_SetError("snd_pcm_channel_params", rval);
return 0;
Sep 21, 2003
Sep 21, 2003
374
375
376
}
/* Make sure channel is setup right one last time */
Oct 17, 2006
Oct 17, 2006
377
SDL_memset(&csetup, '\0', sizeof (csetup));
Sep 21, 2003
Sep 21, 2003
378
csetup.channel = SND_PCM_CHANNEL_PLAYBACK;
Oct 17, 2006
Oct 17, 2006
379
380
381
382
if (snd_pcm_plugin_setup(this->hidden->audio_handle, &csetup) < 0) {
NTO_CloseDevice(this);
SDL_SetError("NTO: Unable to setup playback channel\n");
return 0;
Sep 21, 2003
Sep 21, 2003
383
384
385
}
/* Calculate the final parameters for this audio specification */
Oct 17, 2006
Oct 17, 2006
386
SDL_CalculateAudioSpec(&this->spec);
Sep 21, 2003
Sep 21, 2003
387
Oct 17, 2006
Oct 17, 2006
388
this->hidden->pcm_len = this->spec.size;
Sep 21, 2003
Sep 21, 2003
389
Oct 17, 2006
Oct 17, 2006
390
391
392
if (this->hidden->pcm_len == 0) {
this->hidden->pcm_len =
csetup.buf.block.frag_size * this->spec.channels *
Jul 10, 2006
Jul 10, 2006
393
(snd_pcm_format_width(format) / 8);
Sep 21, 2003
Sep 21, 2003
394
395
}
Oct 17, 2006
Oct 17, 2006
396
397
398
399
/*
* Allocate memory to the audio buffer and initialize with silence
* (Note that buffer size must be a multiple of fragment size, so find
* closest multiple)
Jul 10, 2006
Jul 10, 2006
400
*/
Oct 17, 2006
Oct 17, 2006
401
402
403
404
405
this->hidden->pcm_buf = (Uint8 *) SDL_AllocAudioMem(this->hidden->pcm_len);
if (this->hidden->pcm_buf == NULL) {
NTO_CloseDevice(this);
SDL_OutOfMemory();
return 0;
Sep 21, 2003
Sep 21, 2003
406
}
Oct 17, 2006
Oct 17, 2006
407
SDL_memset(this->hidden->pcm_buf,this->spec.silence,this->hidden->pcm_len);
Sep 21, 2003
Sep 21, 2003
408
409
/* get the file descriptor */
Oct 17, 2006
Oct 17, 2006
410
411
412
413
414
415
this->hidden->audio_fd = snd_pcm_file_descriptor(this->hidden->audio_handle,
SND_PCM_CHANNEL_PLAYBACK);
if (this->hidden->audio_fd < 0) {
NTO_CloseDevice(this);
NTO_SetError("snd_pcm_file_descriptor", rval);
return 0;
Sep 21, 2003
Sep 21, 2003
416
417
418
}
/* Trigger audio playback */
Oct 17, 2006
Oct 17, 2006
419
420
rval = snd_pcm_plugin_prepare(this->hidden->audio_handle,
SND_PCM_CHANNEL_PLAYBACK);
Jul 10, 2006
Jul 10, 2006
421
if (rval < 0) {
Oct 17, 2006
Oct 17, 2006
422
423
424
NTO_CloseDevice(this);
NTO_SetError("snd_pcm_plugin_prepare", rval);
return 0;
Sep 21, 2003
Sep 21, 2003
425
426
}
Oct 17, 2006
Oct 17, 2006
427
428
429
/* We're really ready to rock and roll. :-) */
return 1;
}
Sep 21, 2003
Sep 21, 2003
430
431
Oct 17, 2006
Oct 17, 2006
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
static int
NTO_Init(SDL_AudioDriverImpl *impl)
{
/* See if we can open a nonblocking channel. */
snd_pcm_t *handle = NULL;
int rval = snd_pcm_open_preferred(&handle, NULL, NULL, OPEN_FLAGS);
if (rval < 0) {
SDL_SetError("NTO: couldn't open preferred audio device");
return 0;
}
if ((rval = snd_pcm_close(handle)) < 0) {
SDL_SetError("NTO: couldn't close test audio device");
return 0;
}
/* Set the function pointers */
impl->OpenDevice = NTO_OpenDevice;
impl->ThreadInit = NTO_ThreadInit;
impl->WaitDevice = NTO_WaitDevice;
impl->PlayDevice = NTO_PlayDevice;
impl->GetDeviceBuf = NTO_GetDeviceBuf;
impl->CloseDevice = NTO_CloseDevice;
impl->OnlyHasDefaultOutputDevice = 1; /* !!! FIXME: add device enum! */
return 1;
Apr 26, 2001
Apr 26, 2001
457
}
Jul 10, 2006
Jul 10, 2006
458
Oct 17, 2006
Oct 17, 2006
459
460
461
462
AudioBootStrap QNXNTOAUDIO_bootstrap = {
DRIVER_NAME, "QNX6 QSA-NTO Audio", NTO_Init, 0
};
Jul 10, 2006
Jul 10, 2006
463
/* vi: set ts=4 sw=4 expandtab: */