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

Latest commit

 

History

History
552 lines (467 loc) · 17.6 KB

SDL_coreaudio.c

File metadata and controls

552 lines (467 loc) · 17.6 KB
 
Jun 22, 2011
Jun 22, 2011
1
2
/*
Simple DirectMedia Layer
Dec 31, 2011
Dec 31, 2011
3
Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
Jun 22, 2011
Jun 22, 2011
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "SDL_config.h"
#include "SDL_audio.h"
#include "../SDL_audio_c.h"
#include "../SDL_sysaudio.h"
#include "SDL_coreaudio.h"
Feb 7, 2012
Feb 7, 2012
26
#include "SDL_assert.h"
Jun 22, 2011
Jun 22, 2011
27
28
29
#define DEBUG_COREAUDIO 0
Aug 4, 2011
Aug 4, 2011
30
31
32
33
34
35
36
37
38
39
static void COREAUDIO_CloseDevice(_THIS);
#define CHECK_RESULT(msg) \
if (result != noErr) { \
COREAUDIO_CloseDevice(this); \
SDL_SetError("CoreAudio error (%s): %d", msg, (int) result); \
return 0; \
}
#if MACOSX_COREAUDIO
Aug 4, 2011
Aug 4, 2011
40
41
42
43
typedef void (*addDevFn)(const char *name, AudioDeviceID devId, void *data);
static void
addToDevList(const char *name, AudioDeviceID devId, void *data)
Jun 22, 2011
Jun 22, 2011
44
{
Aug 4, 2011
Aug 4, 2011
45
46
47
SDL_AddAudioDevice addfn = (SDL_AddAudioDevice) data;
addfn(name);
}
Jun 22, 2011
Jun 22, 2011
48
Aug 4, 2011
Aug 4, 2011
49
50
51
52
53
54
typedef struct
{
const char *findname;
AudioDeviceID devId;
int found;
} FindDevIdData;
Jun 22, 2011
Jun 22, 2011
55
56
static void
Aug 4, 2011
Aug 4, 2011
57
findDevId(const char *name, AudioDeviceID devId, void *_data)
Jun 22, 2011
Jun 22, 2011
58
{
Aug 4, 2011
Aug 4, 2011
59
60
61
62
63
64
FindDevIdData *data = (FindDevIdData *) _data;
if (!data->found) {
if (SDL_strcmp(name, data->findname) == 0) {
data->found = 1;
data->devId = devId;
}
Jun 22, 2011
Jun 22, 2011
65
66
67
68
}
}
static void
Aug 4, 2011
Aug 4, 2011
69
build_device_list(int iscapture, addDevFn addfn, void *addfndata)
Jun 22, 2011
Jun 22, 2011
70
71
72
73
74
75
76
{
OSStatus result = noErr;
UInt32 size = 0;
AudioDeviceID *devs = NULL;
UInt32 i = 0;
UInt32 max = 0;
Aug 23, 2011
Aug 23, 2011
77
78
79
80
81
AudioObjectPropertyAddress addr = {
kAudioHardwarePropertyDevices,
kAudioObjectPropertyScopeGlobal,
kAudioObjectPropertyElementMaster
};
Jun 22, 2011
Jun 22, 2011
82
Aug 23, 2011
Aug 23, 2011
83
84
result = AudioObjectGetPropertyDataSize(kAudioObjectSystemObject, &addr,
0, NULL, &size);
Jun 22, 2011
Jun 22, 2011
85
86
87
88
89
90
91
if (result != kAudioHardwareNoError)
return;
devs = (AudioDeviceID *) alloca(size);
if (devs == NULL)
return;
Aug 23, 2011
Aug 23, 2011
92
93
result = AudioObjectGetPropertyData(kAudioObjectSystemObject, &addr,
0, NULL, &size, devs);
Jun 22, 2011
Jun 22, 2011
94
95
96
if (result != kAudioHardwareNoError)
return;
Aug 4, 2011
Aug 4, 2011
97
max = size / sizeof (AudioDeviceID);
Jun 22, 2011
Jun 22, 2011
98
99
100
101
102
103
104
105
for (i = 0; i < max; i++) {
CFStringRef cfstr = NULL;
char *ptr = NULL;
AudioDeviceID dev = devs[i];
AudioBufferList *buflist = NULL;
int usable = 0;
CFIndex len = 0;
Aug 23, 2011
Aug 23, 2011
106
107
108
109
110
addr.mScope = iscapture ? kAudioDevicePropertyScopeInput :
kAudioDevicePropertyScopeOutput;
addr.mSelector = kAudioDevicePropertyStreamConfiguration;
result = AudioObjectGetPropertyDataSize(dev, &addr, 0, NULL, &size);
Jun 22, 2011
Jun 22, 2011
111
112
113
114
115
116
117
if (result != noErr)
continue;
buflist = (AudioBufferList *) SDL_malloc(size);
if (buflist == NULL)
continue;
Aug 23, 2011
Aug 23, 2011
118
119
result = AudioObjectGetPropertyData(dev, &addr, 0, NULL,
&size, buflist);
Jun 22, 2011
Jun 22, 2011
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
if (result == noErr) {
UInt32 j;
for (j = 0; j < buflist->mNumberBuffers; j++) {
if (buflist->mBuffers[j].mNumberChannels > 0) {
usable = 1;
break;
}
}
}
SDL_free(buflist);
if (!usable)
continue;
Aug 23, 2011
Aug 23, 2011
136
137
138
addr.mSelector = kAudioObjectPropertyName;
size = sizeof (CFStringRef);
result = AudioObjectGetPropertyData(dev, &addr, 0, NULL, &size, &cfstr);
Jun 22, 2011
Jun 22, 2011
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
if (result != kAudioHardwareNoError)
continue;
len = CFStringGetMaximumSizeForEncoding(CFStringGetLength(cfstr),
kCFStringEncodingUTF8);
ptr = (char *) SDL_malloc(len + 1);
usable = ((ptr != NULL) &&
(CFStringGetCString
(cfstr, ptr, len + 1, kCFStringEncodingUTF8)));
CFRelease(cfstr);
if (usable) {
len = strlen(ptr);
/* Some devices have whitespace at the end...trim it. */
while ((len > 0) && (ptr[len - 1] == ' ')) {
len--;
}
usable = (len > 0);
}
Aug 4, 2011
Aug 4, 2011
161
if (usable) {
Jun 22, 2011
Jun 22, 2011
162
163
164
165
166
167
168
ptr[len] = '\0';
#if DEBUG_COREAUDIO
printf("COREAUDIO: Found %s device #%d: '%s' (devid %d)\n",
((iscapture) ? "capture" : "output"),
(int) *devCount, ptr, (int) dev);
#endif
Aug 4, 2011
Aug 4, 2011
169
addfn(ptr, dev, addfndata);
Jun 22, 2011
Jun 22, 2011
170
}
Aug 4, 2011
Aug 4, 2011
171
SDL_free(ptr); /* addfn() would have copied the string. */
Jun 22, 2011
Jun 22, 2011
172
173
174
}
}
Aug 4, 2011
Aug 4, 2011
175
176
static void
COREAUDIO_DetectDevices(int iscapture, SDL_AddAudioDevice addfn)
Jun 22, 2011
Jun 22, 2011
177
{
Aug 4, 2011
Aug 4, 2011
178
build_device_list(iscapture, addToDevList, addfn);
Jun 22, 2011
Jun 22, 2011
179
180
}
Aug 4, 2011
Aug 4, 2011
181
182
183
184
185
186
187
188
189
static int
find_device_by_name(_THIS, const char *devname, int iscapture)
{
AudioDeviceID devid = 0;
OSStatus result = noErr;
UInt32 size = 0;
UInt32 alive = 0;
pid_t pid = 0;
Aug 23, 2011
Aug 23, 2011
190
191
192
193
194
195
AudioObjectPropertyAddress addr = {
0,
kAudioObjectPropertyScopeGlobal,
kAudioObjectPropertyElementMaster
};
Aug 4, 2011
Aug 4, 2011
196
if (devname == NULL) {
Aug 23, 2011
Aug 23, 2011
197
198
size = sizeof (AudioDeviceID);
addr.mSelector =
Aug 4, 2011
Aug 4, 2011
199
((iscapture) ? kAudioHardwarePropertyDefaultInputDevice :
Aug 23, 2011
Aug 23, 2011
200
201
202
kAudioHardwarePropertyDefaultOutputDevice);
result = AudioObjectGetPropertyData(kAudioObjectSystemObject, &addr,
0, NULL, &size, &devid);
Aug 4, 2011
Aug 4, 2011
203
204
205
206
207
208
209
210
211
212
213
214
215
CHECK_RESULT("AudioHardwareGetProperty (default device)");
} else {
FindDevIdData data;
SDL_zero(data);
data.findname = devname;
build_device_list(iscapture, findDevId, &data);
if (!data.found) {
SDL_SetError("CoreAudio: No such audio device.");
return 0;
}
devid = data.devId;
}
Aug 23, 2011
Aug 23, 2011
216
217
218
219
220
221
addr.mSelector = kAudioDevicePropertyDeviceIsAlive;
addr.mScope = iscapture ? kAudioDevicePropertyScopeInput :
kAudioDevicePropertyScopeOutput;
size = sizeof (alive);
result = AudioObjectGetPropertyData(devid, &addr, 0, NULL, &size, &alive);
Aug 4, 2011
Aug 4, 2011
222
223
224
225
226
227
228
229
CHECK_RESULT
("AudioDeviceGetProperty (kAudioDevicePropertyDeviceIsAlive)");
if (!alive) {
SDL_SetError("CoreAudio: requested device exists, but isn't alive.");
return 0;
}
Aug 23, 2011
Aug 23, 2011
230
231
232
addr.mSelector = kAudioDevicePropertyHogMode;
size = sizeof (pid);
result = AudioObjectGetPropertyData(devid, &addr, 0, NULL, &size, &pid);
Aug 4, 2011
Aug 4, 2011
233
234
235
236
237
238
239
240
241
242
243
244
/* some devices don't support this property, so errors are fine here. */
if ((result == noErr) && (pid != -1)) {
SDL_SetError("CoreAudio: requested device is being hogged.");
return 0;
}
this->hidden->deviceID = devid;
return 1;
}
#endif
Jun 22, 2011
Jun 22, 2011
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
/* The CoreAudio callback */
static OSStatus
outputCallback(void *inRefCon,
AudioUnitRenderActionFlags * ioActionFlags,
const AudioTimeStamp * inTimeStamp,
UInt32 inBusNumber, UInt32 inNumberFrames,
AudioBufferList * ioData)
{
SDL_AudioDevice *this = (SDL_AudioDevice *) inRefCon;
AudioBuffer *abuf;
UInt32 remaining, len;
void *ptr;
UInt32 i;
/* Only do anything if audio is enabled and not paused */
if (!this->enabled || this->paused) {
for (i = 0; i < ioData->mNumberBuffers; i++) {
abuf = &ioData->mBuffers[i];
SDL_memset(abuf->mData, this->spec.silence, abuf->mDataByteSize);
}
return 0;
}
/* No SDL conversion should be needed here, ever, since we accept
any input format in OpenAudio, and leave the conversion to CoreAudio.
*/
/*
Feb 7, 2012
Feb 7, 2012
272
273
SDL_assert(!this->convert.needed);
SDL_assert(this->spec.channels == ioData->mNumberChannels);
Jun 22, 2011
Jun 22, 2011
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
*/
for (i = 0; i < ioData->mNumberBuffers; i++) {
abuf = &ioData->mBuffers[i];
remaining = abuf->mDataByteSize;
ptr = abuf->mData;
while (remaining > 0) {
if (this->hidden->bufferOffset >= this->hidden->bufferSize) {
/* Generate the data */
SDL_mutexP(this->mixer_lock);
(*this->spec.callback)(this->spec.userdata,
this->hidden->buffer, this->hidden->bufferSize);
SDL_mutexV(this->mixer_lock);
this->hidden->bufferOffset = 0;
}
len = this->hidden->bufferSize - this->hidden->bufferOffset;
if (len > remaining)
len = remaining;
SDL_memcpy(ptr, (char *)this->hidden->buffer +
this->hidden->bufferOffset, len);
ptr = (char *)ptr + len;
remaining -= len;
this->hidden->bufferOffset += len;
}
}
return 0;
}
static OSStatus
inputCallback(void *inRefCon,
AudioUnitRenderActionFlags * ioActionFlags,
const AudioTimeStamp * inTimeStamp,
UInt32 inBusNumber, UInt32 inNumberFrames,
AudioBufferList * ioData)
{
//err = AudioUnitRender(afr->fAudioUnit, ioActionFlags, inTimeStamp, inBusNumber, inNumberFrames, afr->fAudioBuffer);
// !!! FIXME: write me!
return noErr;
}
static void
COREAUDIO_CloseDevice(_THIS)
{
if (this->hidden != NULL) {
if (this->hidden->audioUnitOpened) {
OSStatus result = noErr;
AURenderCallbackStruct callback;
const AudioUnitElement output_bus = 0;
const AudioUnitElement input_bus = 1;
const int iscapture = this->iscapture;
const AudioUnitElement bus =
((iscapture) ? input_bus : output_bus);
const AudioUnitScope scope =
((iscapture) ? kAudioUnitScope_Output :
kAudioUnitScope_Input);
/* stop processing the audio unit */
result = AudioOutputUnitStop(this->hidden->audioUnit);
/* Remove the input callback */
Jul 5, 2012
Jul 5, 2012
337
SDL_memset(&callback, 0, sizeof(AURenderCallbackStruct));
Jun 22, 2011
Jun 22, 2011
338
339
340
341
342
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioUnitProperty_SetRenderCallback,
scope, bus, &callback,
sizeof(callback));
Aug 4, 2011
Aug 4, 2011
343
344
/* !!! FIXME: how does iOS free this? */
#if MACOSX_COREAUDIO
Jun 22, 2011
Jun 22, 2011
345
CloseComponent(this->hidden->audioUnit);
Aug 4, 2011
Aug 4, 2011
346
347
#endif
Jun 22, 2011
Jun 22, 2011
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
this->hidden->audioUnitOpened = 0;
}
SDL_free(this->hidden->buffer);
SDL_free(this->hidden);
this->hidden = NULL;
}
}
static int
prepare_audiounit(_THIS, const char *devname, int iscapture,
const AudioStreamBasicDescription * strdesc)
{
OSStatus result = noErr;
AURenderCallbackStruct callback;
Aug 4, 2011
Aug 4, 2011
363
#if MACOSX_COREAUDIO
Jun 22, 2011
Jun 22, 2011
364
365
ComponentDescription desc;
Component comp = NULL;
Aug 4, 2011
Aug 4, 2011
366
367
368
369
#else
AudioComponentDescription desc;
AudioComponent comp = NULL;
#endif
Jun 22, 2011
Jun 22, 2011
370
371
372
373
374
375
const AudioUnitElement output_bus = 0;
const AudioUnitElement input_bus = 1;
const AudioUnitElement bus = ((iscapture) ? input_bus : output_bus);
const AudioUnitScope scope = ((iscapture) ? kAudioUnitScope_Output :
kAudioUnitScope_Input);
Aug 4, 2011
Aug 4, 2011
376
#if MACOSX_COREAUDIO
Jun 22, 2011
Jun 22, 2011
377
378
379
380
if (!find_device_by_name(this, devname, iscapture)) {
SDL_SetError("Couldn't find requested CoreAudio device");
return 0;
}
Aug 4, 2011
Aug 4, 2011
381
382
383
#endif
SDL_zero(desc);
Jun 22, 2011
Jun 22, 2011
384
385
386
desc.componentType = kAudioUnitType_Output;
desc.componentManufacturer = kAudioUnitManufacturer_Apple;
Aug 4, 2011
Aug 4, 2011
387
388
#if MACOSX_COREAUDIO
desc.componentSubType = kAudioUnitSubType_DefaultOutput;
Jun 22, 2011
Jun 22, 2011
389
comp = FindNextComponent(NULL, &desc);
Aug 4, 2011
Aug 4, 2011
390
#else
Sep 2, 2012
Sep 2, 2012
391
desc.componentSubType = kAudioUnitSubType_RemoteIO;
Aug 4, 2011
Aug 4, 2011
392
393
394
comp = AudioComponentFindNext(NULL, &desc);
#endif
Jun 22, 2011
Jun 22, 2011
395
396
397
398
399
400
if (comp == NULL) {
SDL_SetError("Couldn't find requested CoreAudio component");
return 0;
}
/* Open & initialize the audio unit */
Aug 4, 2011
Aug 4, 2011
401
#if MACOSX_COREAUDIO
Jun 22, 2011
Jun 22, 2011
402
403
result = OpenAComponent(comp, &this->hidden->audioUnit);
CHECK_RESULT("OpenAComponent");
Aug 4, 2011
Aug 4, 2011
404
405
406
407
408
409
410
411
#else
/*
AudioComponentInstanceNew only available on iPhone OS 2.0 and Mac OS X 10.6
We can't use OpenAComponent on iPhone because it is not present
*/
result = AudioComponentInstanceNew(comp, &this->hidden->audioUnit);
CHECK_RESULT("AudioComponentInstanceNew");
#endif
Jun 22, 2011
Jun 22, 2011
412
413
414
this->hidden->audioUnitOpened = 1;
Aug 4, 2011
Aug 4, 2011
415
#if MACOSX_COREAUDIO
Jun 22, 2011
Jun 22, 2011
416
417
418
419
420
421
422
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioOutputUnitProperty_CurrentDevice,
kAudioUnitScope_Global, 0,
&this->hidden->deviceID,
sizeof(AudioDeviceID));
CHECK_RESULT
("AudioUnitSetProperty (kAudioOutputUnitProperty_CurrentDevice)");
Aug 4, 2011
Aug 4, 2011
423
#endif
Jun 22, 2011
Jun 22, 2011
424
425
426
427
428
429
430
431
/* Set the data format of the audio unit. */
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioUnitProperty_StreamFormat,
scope, bus, strdesc, sizeof(*strdesc));
CHECK_RESULT("AudioUnitSetProperty (kAudioUnitProperty_StreamFormat)");
/* Set the audio callback */
Jul 5, 2012
Jul 5, 2012
432
SDL_memset(&callback, 0, sizeof(AURenderCallbackStruct));
Jun 22, 2011
Jun 22, 2011
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
callback.inputProc = ((iscapture) ? inputCallback : outputCallback);
callback.inputProcRefCon = this;
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioUnitProperty_SetRenderCallback,
scope, bus, &callback, sizeof(callback));
CHECK_RESULT
("AudioUnitSetProperty (kAudioUnitProperty_SetRenderCallback)");
/* Calculate the final parameters for this audio specification */
SDL_CalculateAudioSpec(&this->spec);
/* Allocate a sample buffer */
this->hidden->bufferOffset = this->hidden->bufferSize = this->spec.size;
this->hidden->buffer = SDL_malloc(this->hidden->bufferSize);
result = AudioUnitInitialize(this->hidden->audioUnit);
CHECK_RESULT("AudioUnitInitialize");
/* Finally, start processing of the audio unit */
result = AudioOutputUnitStart(this->hidden->audioUnit);
CHECK_RESULT("AudioOutputUnitStart");
/* We're running! */
return 1;
}
static int
COREAUDIO_OpenDevice(_THIS, const char *devname, int iscapture)
{
AudioStreamBasicDescription strdesc;
SDL_AudioFormat test_format = SDL_FirstAudioFormat(this->spec.format);
int valid_datatype = 0;
/* 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);
}
SDL_memset(this->hidden, 0, (sizeof *this->hidden));
/* Setup a AudioStreamBasicDescription with the requested format */
SDL_memset(&strdesc, '\0', sizeof(AudioStreamBasicDescription));
strdesc.mFormatID = kAudioFormatLinearPCM;
strdesc.mFormatFlags = kLinearPCMFormatFlagIsPacked;
strdesc.mChannelsPerFrame = this->spec.channels;
strdesc.mSampleRate = this->spec.freq;
strdesc.mFramesPerPacket = 1;
while ((!valid_datatype) && (test_format)) {
this->spec.format = test_format;
/* Just a list of valid SDL formats, so people don't pass junk here. */
switch (test_format) {
case AUDIO_U8:
case AUDIO_S8:
case AUDIO_U16LSB:
case AUDIO_S16LSB:
case AUDIO_U16MSB:
case AUDIO_S16MSB:
case AUDIO_S32LSB:
case AUDIO_S32MSB:
case AUDIO_F32LSB:
case AUDIO_F32MSB:
valid_datatype = 1;
strdesc.mBitsPerChannel = SDL_AUDIO_BITSIZE(this->spec.format);
if (SDL_AUDIO_ISBIGENDIAN(this->spec.format))
strdesc.mFormatFlags |= kLinearPCMFormatFlagIsBigEndian;
if (SDL_AUDIO_ISFLOAT(this->spec.format))
strdesc.mFormatFlags |= kLinearPCMFormatFlagIsFloat;
else if (SDL_AUDIO_ISSIGNED(this->spec.format))
strdesc.mFormatFlags |= kLinearPCMFormatFlagIsSignedInteger;
break;
}
}
if (!valid_datatype) { /* shouldn't happen, but just in case... */
COREAUDIO_CloseDevice(this);
SDL_SetError("Unsupported audio format");
return 0;
}
strdesc.mBytesPerFrame =
strdesc.mBitsPerChannel * strdesc.mChannelsPerFrame / 8;
strdesc.mBytesPerPacket =
strdesc.mBytesPerFrame * strdesc.mFramesPerPacket;
if (!prepare_audiounit(this, devname, iscapture, &strdesc)) {
COREAUDIO_CloseDevice(this);
return 0; /* prepare_audiounit() will call SDL_SetError()... */
}
return 1; /* good to go. */
}
static int
COREAUDIO_Init(SDL_AudioDriverImpl * impl)
{
/* Set the function pointers */
impl->OpenDevice = COREAUDIO_OpenDevice;
impl->CloseDevice = COREAUDIO_CloseDevice;
Aug 4, 2011
Aug 4, 2011
536
537
538
539
540
541
542
#if MACOSX_COREAUDIO
impl->DetectDevices = COREAUDIO_DetectDevices;
#else
impl->OnlyHasDefaultOutputDevice = 1;
#endif
Jun 22, 2011
Jun 22, 2011
543
544
545
546
547
548
impl->ProvidesOwnCallbackThread = 1;
return 1; /* this audio target is available. */
}
AudioBootStrap COREAUDIO_bootstrap = {
Aug 4, 2011
Aug 4, 2011
549
"coreaudio", "CoreAudio", COREAUDIO_Init, 0
Jun 22, 2011
Jun 22, 2011
550
551
552
};
/* vi: set ts=4 sw=4 expandtab: */