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

Latest commit

 

History

History
601 lines (498 loc) · 19 KB

SDL_coreaudio.c

File metadata and controls

601 lines (498 loc) · 19 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Dec 8, 2008
Dec 8, 2008
3
Copyright (C) 1997-2009 Sam Lantinga
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
9
10
11
12
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
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
19
20
21
Sam Lantinga
slouken@libsdl.org
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Oct 17, 2006
Oct 17, 2006
24
#include <CoreAudio/CoreAudio.h>
Sep 5, 2009
Sep 5, 2009
25
#include <CoreServices/CoreServices.h>
26
#include <AudioUnit/AudioUnit.h>
Jan 6, 2010
Jan 6, 2010
27
#if MAC_OS_X_VERSION_MAX_ALLOWED <= 1050
Dec 28, 2007
Dec 28, 2007
28
29
#include <AudioUnit/AUNTComponent.h>
#endif
30
31
#include "SDL_audio.h"
Feb 16, 2006
Feb 16, 2006
32
33
#include "../SDL_audio_c.h"
#include "../SDL_sysaudio.h"
34
35
#include "SDL_coreaudio.h"
Oct 17, 2006
Oct 17, 2006
36
#define DEBUG_COREAUDIO 0
Oct 17, 2006
Oct 17, 2006
38
39
40
41
42
typedef struct COREAUDIO_DeviceList
{
AudioDeviceID id;
const char *name;
} COREAUDIO_DeviceList;
Oct 17, 2006
Oct 17, 2006
44
45
46
47
static COREAUDIO_DeviceList *inputDevices = NULL;
static int inputDeviceCount = 0;
static COREAUDIO_DeviceList *outputDevices = NULL;
static int outputDeviceCount = 0;
Oct 17, 2006
Oct 17, 2006
49
static void
Oct 28, 2006
Oct 28, 2006
50
free_device_list(COREAUDIO_DeviceList ** devices, int *devCount)
Oct 17, 2006
Oct 17, 2006
52
53
54
55
56
57
58
59
if (*devices) {
int i = *devCount;
while (i--)
SDL_free((void *) (*devices)[i].name);
SDL_free(*devices);
*devices = NULL;
}
*devCount = 0;
Oct 17, 2006
Oct 17, 2006
62
Jul 10, 2006
Jul 10, 2006
63
static void
Oct 28, 2006
Oct 28, 2006
64
65
build_device_list(int iscapture, COREAUDIO_DeviceList ** devices,
int *devCount)
Oct 17, 2006
Oct 17, 2006
67
68
69
70
71
72
73
74
75
76
Boolean outWritable = 0;
OSStatus result = noErr;
UInt32 size = 0;
AudioDeviceID *devs = NULL;
UInt32 i = 0;
UInt32 max = 0;
free_device_list(devices, devCount);
result = AudioHardwareGetPropertyInfo(kAudioHardwarePropertyDevices,
Oct 28, 2006
Oct 28, 2006
77
&size, &outWritable);
Oct 17, 2006
Oct 17, 2006
78
79
80
81
82
83
84
85
if (result != kAudioHardwareNoError)
return;
devs = (AudioDeviceID *) alloca(size);
if (devs == NULL)
return;
Oct 28, 2006
Oct 28, 2006
86
87
max = size / sizeof(AudioDeviceID);
*devices = (COREAUDIO_DeviceList *) SDL_malloc(max * sizeof(**devices));
Oct 17, 2006
Oct 17, 2006
88
89
90
91
if (*devices == NULL)
return;
result = AudioHardwareGetProperty(kAudioHardwarePropertyDevices,
Oct 28, 2006
Oct 28, 2006
92
&size, devs);
Oct 17, 2006
Oct 17, 2006
93
94
95
96
97
98
99
100
101
102
103
104
if (result != kAudioHardwareNoError)
return;
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;
result = AudioDeviceGetPropertyInfo(dev, 0, iscapture,
Oct 28, 2006
Oct 28, 2006
105
106
kAudioDevicePropertyStreamConfiguration,
&size, &outWritable);
Oct 17, 2006
Oct 17, 2006
107
108
109
110
111
112
113
114
if (result != noErr)
continue;
buflist = (AudioBufferList *) SDL_malloc(size);
if (buflist == NULL)
continue;
result = AudioDeviceGetProperty(dev, 0, iscapture,
Oct 28, 2006
Oct 28, 2006
115
116
kAudioDevicePropertyStreamConfiguration,
&size, buflist);
Oct 17, 2006
Oct 17, 2006
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
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;
Oct 28, 2006
Oct 28, 2006
133
size = sizeof(CFStringRef);
Oct 17, 2006
Oct 17, 2006
134
result = AudioDeviceGetProperty(dev, 0, iscapture,
May 31, 2007
May 31, 2007
135
kAudioDevicePropertyDeviceNameCFString,
Oct 17, 2006
Oct 17, 2006
136
137
138
139
140
141
142
143
144
&size, &cfstr);
if (result != kAudioHardwareNoError)
continue;
len = CFStringGetMaximumSizeForEncoding(CFStringGetLength(cfstr),
kCFStringEncodingUTF8);
ptr = (char *) SDL_malloc(len + 1);
Oct 28, 2006
Oct 28, 2006
145
146
147
usable = ((ptr != NULL) &&
(CFStringGetCString
(cfstr, ptr, len + 1, kCFStringEncodingUTF8)));
Oct 17, 2006
Oct 17, 2006
148
149
150
151
152
153
CFRelease(cfstr);
if (usable) {
len = strlen(ptr);
/* Some devices have whitespace at the end...trim it. */
Oct 28, 2006
Oct 28, 2006
154
while ((len > 0) && (ptr[len - 1] == ' ')) {
Oct 17, 2006
Oct 17, 2006
155
156
157
158
159
160
161
162
163
164
len--;
}
usable = (len > 0);
}
if (!usable) {
SDL_free(ptr);
} else {
ptr[len] = '\0';
Oct 28, 2006
Oct 28, 2006
165
#if DEBUG_COREAUDIO
Oct 17, 2006
Oct 17, 2006
166
printf("COREAUDIO: Found %s device #%d: '%s' (devid %d)\n",
Oct 28, 2006
Oct 28, 2006
167
168
169
((iscapture) ? "capture" : "output"),
(int) *devCount, ptr, (int) dev);
#endif
Oct 17, 2006
Oct 17, 2006
170
171
172
173
174
175
(*devices)[*devCount].id = dev;
(*devices)[*devCount].name = ptr;
(*devCount)++;
}
}
Oct 17, 2006
Oct 17, 2006
178
179
static inline void
build_device_lists(void)
Oct 17, 2006
Oct 17, 2006
181
182
183
build_device_list(0, &outputDevices, &outputDeviceCount);
build_device_list(1, &inputDevices, &inputDeviceCount);
}
Oct 17, 2006
Oct 17, 2006
185
186
187
188
189
190
191
192
193
194
static inline void
free_device_lists(void)
{
free_device_list(&outputDevices, &outputDeviceCount);
free_device_list(&inputDevices, &inputDeviceCount);
}
static int
Oct 28, 2006
Oct 28, 2006
195
find_device_id(const char *devname, int iscapture, AudioDeviceID * id)
Oct 17, 2006
Oct 17, 2006
196
197
198
199
200
201
202
{
int i = ((iscapture) ? inputDeviceCount : outputDeviceCount);
COREAUDIO_DeviceList *devs = ((iscapture) ? inputDevices : outputDevices);
while (i--) {
if (SDL_strcmp(devname, devs->name) == 0) {
*id = devs->id;
return 1;
Oct 17, 2006
Oct 17, 2006
204
devs++;
Oct 17, 2006
Oct 17, 2006
207
208
209
210
211
212
213
214
215
216
217
218
219
220
return 0;
}
static int
COREAUDIO_DetectDevices(int iscapture)
{
if (iscapture) {
build_device_list(1, &inputDevices, &inputDeviceCount);
return inputDeviceCount;
} else {
build_device_list(0, &outputDevices, &outputDeviceCount);
return outputDeviceCount;
}
Oct 28, 2006
Oct 28, 2006
222
return 0; /* shouldn't ever hit this. */
Oct 17, 2006
Oct 17, 2006
223
}
Oct 17, 2006
Oct 17, 2006
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
static const char *
COREAUDIO_GetDeviceName(int index, int iscapture)
{
if ((iscapture) && (index < inputDeviceCount)) {
return inputDevices[index].name;
} else if ((!iscapture) && (index < outputDeviceCount)) {
return outputDevices[index].name;
}
SDL_SetError("No such device");
return NULL;
}
static void
COREAUDIO_Deinitialize(void)
{
free_device_lists();
244
245
246
247
}
/* The CoreAudio callback */
Jul 10, 2006
Jul 10, 2006
248
static OSStatus
Oct 17, 2006
Oct 17, 2006
249
outputCallback(void *inRefCon,
Oct 28, 2006
Oct 28, 2006
250
251
252
AudioUnitRenderActionFlags * ioActionFlags,
const AudioTimeStamp * inTimeStamp,
UInt32 inBusNumber, UInt32 inNumberFrames,
Jan 6, 2010
Jan 6, 2010
253
AudioBufferList * ioData)
Jul 10, 2006
Jul 10, 2006
255
SDL_AudioDevice *this = (SDL_AudioDevice *) inRefCon;
Jan 6, 2010
Jan 6, 2010
256
AudioBuffer *abuf;
257
258
UInt32 remaining, len;
void *ptr;
Jan 6, 2010
Jan 6, 2010
259
UInt32 i;
260
261
/* Only do anything if audio is enabled and not paused */
Jul 10, 2006
Jul 10, 2006
262
if (!this->enabled || this->paused) {
Jan 6, 2010
Jan 6, 2010
263
264
265
266
for (i = 0; i < ioData->mNumberBuffers; i++) {
abuf = &ioData->mBuffers[i];
SDL_memset(abuf->mData, this->spec.silence, abuf->mDataByteSize);
}
Jul 10, 2006
Jul 10, 2006
269
270
271
272
/* No SDL conversion should be needed here, ever, since we accept
any input format in OpenAudio, and leave the conversion to CoreAudio.
*/
Feb 7, 2006
Feb 7, 2006
273
/*
Jul 10, 2006
Jul 10, 2006
274
275
assert(!this->convert.needed);
assert(this->spec.channels == ioData->mNumberChannels);
Feb 7, 2006
Feb 7, 2006
276
*/
Jul 10, 2006
Jul 10, 2006
277
Jan 6, 2010
Jan 6, 2010
278
279
280
281
282
for (i = 0; i < ioData->mNumberBuffers; i++) {
abuf = &ioData->mBuffers[i];
remaining = abuf->mDataByteSize;
ptr = abuf->mData;
while (remaining > 0) {
Jan 11, 2010
Jan 11, 2010
283
if (this->hidden->bufferOffset >= this->hidden->bufferSize) {
Jan 6, 2010
Jan 6, 2010
284
/* Generate the data */
Jan 11, 2010
Jan 11, 2010
285
286
SDL_memset(this->hidden->buffer, this->spec.silence,
this->hidden->bufferSize);
Jan 6, 2010
Jan 6, 2010
287
288
SDL_mutexP(this->mixer_lock);
(*this->spec.callback)(this->spec.userdata,
Jan 11, 2010
Jan 11, 2010
289
this->hidden->buffer, this->hidden->bufferSize);
Jan 6, 2010
Jan 6, 2010
290
SDL_mutexV(this->mixer_lock);
Jan 11, 2010
Jan 11, 2010
291
this->hidden->bufferOffset = 0;
Jan 6, 2010
Jan 6, 2010
292
}
Jul 10, 2006
Jul 10, 2006
293
Jan 11, 2010
Jan 11, 2010
294
len = this->hidden->bufferSize - this->hidden->bufferOffset;
Jan 6, 2010
Jan 6, 2010
295
296
if (len > remaining)
len = remaining;
Jan 11, 2010
Jan 11, 2010
297
298
SDL_memcpy(ptr, (char *)this->hidden->buffer +
this->hidden->bufferOffset, len);
Jan 6, 2010
Jan 6, 2010
299
300
ptr = (char *)ptr + len;
remaining -= len;
Jan 11, 2010
Jan 11, 2010
301
this->hidden->bufferOffset += len;
Jan 6, 2010
Jan 6, 2010
302
}
Jul 10, 2006
Jul 10, 2006
304
Oct 17, 2006
Oct 17, 2006
308
309
static OSStatus
inputCallback(void *inRefCon,
Oct 28, 2006
Oct 28, 2006
310
AudioUnitRenderActionFlags * ioActionFlags,
Oct 17, 2006
Oct 17, 2006
311
312
const AudioTimeStamp * inTimeStamp,
UInt32 inBusNumber, UInt32 inNumberFrames,
Oct 28, 2006
Oct 28, 2006
313
AudioBufferList * ioData)
Oct 17, 2006
Oct 17, 2006
315
316
317
//err = AudioUnitRender(afr->fAudioUnit, ioActionFlags, inTimeStamp, inBusNumber, inNumberFrames, afr->fAudioBuffer);
// !!! FIXME: write me!
return noErr;
Oct 17, 2006
Oct 17, 2006
321
322
static void
COREAUDIO_CloseDevice(_THIS)
Oct 17, 2006
Oct 17, 2006
324
if (this->hidden != NULL) {
Oct 28, 2006
Oct 28, 2006
325
326
327
328
329
330
if (this->hidden->audioUnitOpened) {
OSStatus result = noErr;
AURenderCallbackStruct callback;
const AudioUnitElement output_bus = 0;
const AudioUnitElement input_bus = 1;
const int iscapture = this->iscapture;
Oct 28, 2006
Oct 28, 2006
331
332
333
334
335
const AudioUnitElement bus =
((iscapture) ? input_bus : output_bus);
const AudioUnitScope scope =
((iscapture) ? kAudioUnitScope_Output :
kAudioUnitScope_Input);
Oct 28, 2006
Oct 28, 2006
336
337
338
339
340
/* stop processing the audio unit */
result = AudioOutputUnitStop(this->hidden->audioUnit);
/* Remove the input callback */
Oct 28, 2006
Oct 28, 2006
341
SDL_memset(&callback, '\0', sizeof(AURenderCallbackStruct));
Oct 28, 2006
Oct 28, 2006
342
343
344
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioUnitProperty_SetRenderCallback,
scope, bus, &callback,
Oct 28, 2006
Oct 28, 2006
345
sizeof(callback));
Oct 28, 2006
Oct 28, 2006
346
347
348
349
CloseComponent(this->hidden->audioUnit);
this->hidden->audioUnitOpened = 0;
}
Oct 17, 2006
Oct 17, 2006
350
351
352
353
SDL_free(this->hidden->buffer);
SDL_free(this->hidden);
this->hidden = NULL;
}
Oct 17, 2006
Oct 17, 2006
357
358
359
360
361
#define CHECK_RESULT(msg) \
if (result != noErr) { \
COREAUDIO_CloseDevice(this); \
SDL_SetError("CoreAudio error (%s): %d", msg, (int) result); \
return 0; \
Oct 17, 2006
Oct 17, 2006
364
365
366
367
368
369
370
371
372
373
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;
if (devname == NULL) {
Oct 28, 2006
Oct 28, 2006
374
size = sizeof(AudioDeviceID);
Oct 17, 2006
Oct 17, 2006
375
const AudioHardwarePropertyID propid =
Oct 28, 2006
Oct 28, 2006
376
377
((iscapture) ? kAudioHardwarePropertyDefaultInputDevice :
kAudioHardwarePropertyDefaultOutputDevice);
Oct 17, 2006
Oct 17, 2006
378
379
380
381
382
383
384
385
result = AudioHardwareGetProperty(propid, &size, &devid);
CHECK_RESULT("AudioHardwareGetProperty (default device)");
} else {
if (!find_device_id(devname, iscapture, &devid)) {
SDL_SetError("CoreAudio: No such audio device.");
return 0;
}
Oct 28, 2006
Oct 28, 2006
388
size = sizeof(alive);
Oct 17, 2006
Oct 17, 2006
389
390
391
result = AudioDeviceGetProperty(devid, 0, iscapture,
kAudioDevicePropertyDeviceIsAlive,
&size, &alive);
Oct 28, 2006
Oct 28, 2006
392
393
CHECK_RESULT
("AudioDeviceGetProperty (kAudioDevicePropertyDeviceIsAlive)");
Oct 17, 2006
Oct 17, 2006
394
395
396
397
if (!alive) {
SDL_SetError("CoreAudio: requested device exists, but isn't alive.");
return 0;
Jul 10, 2006
Jul 10, 2006
399
Oct 28, 2006
Oct 28, 2006
400
size = sizeof(pid);
Oct 17, 2006
Oct 17, 2006
401
402
result = AudioDeviceGetProperty(devid, 0, iscapture,
kAudioDevicePropertyHogMode, &size, &pid);
Oct 17, 2006
Oct 17, 2006
404
405
406
407
/* 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;
Oct 17, 2006
Oct 17, 2006
410
411
412
413
this->hidden->deviceID = devid;
return 1;
}
Oct 17, 2006
Oct 17, 2006
415
416
static int
prepare_audiounit(_THIS, const char *devname, int iscapture,
Oct 28, 2006
Oct 28, 2006
417
const AudioStreamBasicDescription * strdesc)
418
419
{
OSStatus result = noErr;
Oct 17, 2006
Oct 17, 2006
420
AURenderCallbackStruct callback;
421
ComponentDescription desc;
Oct 17, 2006
Oct 17, 2006
422
423
424
425
426
427
Component comp = NULL;
UInt32 enableIO = 0;
const AudioUnitElement output_bus = 0;
const AudioUnitElement input_bus = 1;
const AudioUnitElement bus = ((iscapture) ? input_bus : output_bus);
const AudioUnitScope scope = ((iscapture) ? kAudioUnitScope_Output :
Oct 28, 2006
Oct 28, 2006
428
kAudioUnitScope_Input);
Oct 17, 2006
Oct 17, 2006
429
430
431
432
433
434
435
436
if (!find_device_by_name(this, devname, iscapture)) {
SDL_SetError("Couldn't find requested CoreAudio device");
return 0;
}
SDL_memset(&desc, '\0', sizeof(ComponentDescription));
desc.componentType = kAudioUnitType_Output;
Jan 6, 2010
Jan 6, 2010
437
desc.componentSubType = kAudioUnitSubType_DefaultOutput;
Oct 17, 2006
Oct 17, 2006
438
439
440
441
442
443
444
445
446
447
448
449
desc.componentManufacturer = kAudioUnitManufacturer_Apple;
comp = FindNextComponent(NULL, &desc);
if (comp == NULL) {
SDL_SetError("Couldn't find requested CoreAudio component");
return 0;
}
/* Open & initialize the audio unit */
result = OpenAComponent(comp, &this->hidden->audioUnit);
CHECK_RESULT("OpenAComponent");
Oct 28, 2006
Oct 28, 2006
450
451
this->hidden->audioUnitOpened = 1;
Oct 17, 2006
Oct 17, 2006
452
453
454
455
456
// !!! FIXME: this is wrong?
enableIO = ((iscapture) ? 1 : 0);
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioOutputUnitProperty_EnableIO,
kAudioUnitScope_Input, input_bus,
Oct 28, 2006
Oct 28, 2006
457
&enableIO, sizeof(enableIO));
Oct 17, 2006
Oct 17, 2006
458
459
460
461
462
463
464
CHECK_RESULT("AudioUnitSetProperty (kAudioUnitProperty_EnableIO input)");
// !!! FIXME: this is wrong?
enableIO = ((iscapture) ? 0 : 1);
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioOutputUnitProperty_EnableIO,
kAudioUnitScope_Output, output_bus,
Oct 28, 2006
Oct 28, 2006
465
&enableIO, sizeof(enableIO));
Oct 17, 2006
Oct 17, 2006
466
467
468
469
470
471
CHECK_RESULT("AudioUnitSetProperty (kAudioUnitProperty_EnableIO output)");
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioOutputUnitProperty_CurrentDevice,
kAudioUnitScope_Global, 0,
&this->hidden->deviceID,
Oct 28, 2006
Oct 28, 2006
472
473
474
sizeof(AudioDeviceID));
CHECK_RESULT
("AudioUnitSetProperty (kAudioOutputUnitProperty_CurrentDevice)");
Oct 17, 2006
Oct 17, 2006
475
476
477
478
/* Set the data format of the audio unit. */
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioUnitProperty_StreamFormat,
Oct 28, 2006
Oct 28, 2006
479
scope, bus, strdesc, sizeof(*strdesc));
Oct 17, 2006
Oct 17, 2006
480
481
482
CHECK_RESULT("AudioUnitSetProperty (kAudioUnitProperty_StreamFormat)");
/* Set the audio callback */
Oct 28, 2006
Oct 28, 2006
483
SDL_memset(&callback, '\0', sizeof(AURenderCallbackStruct));
Oct 17, 2006
Oct 17, 2006
484
485
486
487
callback.inputProc = ((iscapture) ? inputCallback : outputCallback);
callback.inputProcRefCon = this;
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioUnitProperty_SetRenderCallback,
Oct 28, 2006
Oct 28, 2006
488
489
scope, bus, &callback, sizeof(callback));
CHECK_RESULT
Jan 6, 2010
Jan 6, 2010
490
("AudioUnitSetProperty (kAudioUnitProperty_SetRenderCallback)");
Oct 17, 2006
Oct 17, 2006
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
/* 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)
{
Sep 2, 2006
Sep 2, 2006
514
AudioStreamBasicDescription strdesc;
Oct 17, 2006
Oct 17, 2006
515
SDL_AudioFormat test_format = SDL_FirstAudioFormat(this->spec.format);
Sep 1, 2006
Sep 1, 2006
516
int valid_datatype = 0;
Oct 17, 2006
Oct 17, 2006
518
519
/* Initialize all variables that we clean on shutdown */
this->hidden = (struct SDL_PrivateAudioData *)
Oct 28, 2006
Oct 28, 2006
520
SDL_malloc((sizeof *this->hidden));
Oct 17, 2006
Oct 17, 2006
521
522
523
524
525
526
if (this->hidden == NULL) {
SDL_OutOfMemory();
return (0);
}
SDL_memset(this->hidden, 0, (sizeof *this->hidden));
527
/* Setup a AudioStreamBasicDescription with the requested format */
Oct 17, 2006
Oct 17, 2006
528
SDL_memset(&strdesc, '\0', sizeof(AudioStreamBasicDescription));
Sep 2, 2006
Sep 2, 2006
529
530
strdesc.mFormatID = kAudioFormatLinearPCM;
strdesc.mFormatFlags = kLinearPCMFormatFlagIsPacked;
Oct 17, 2006
Oct 17, 2006
531
532
strdesc.mChannelsPerFrame = this->spec.channels;
strdesc.mSampleRate = this->spec.freq;
Sep 2, 2006
Sep 2, 2006
533
strdesc.mFramesPerPacket = 1;
Sep 1, 2006
Sep 1, 2006
534
535
while ((!valid_datatype) && (test_format)) {
Oct 17, 2006
Oct 17, 2006
536
this->spec.format = test_format;
Sep 1, 2006
Sep 1, 2006
537
538
/* Just a list of valid SDL formats, so people don't pass junk here. */
switch (test_format) {
Sep 24, 2006
Sep 24, 2006
539
540
541
542
543
544
545
546
547
548
549
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;
Oct 17, 2006
Oct 17, 2006
550
551
strdesc.mBitsPerChannel = SDL_AUDIO_BITSIZE(this->spec.format);
if (SDL_AUDIO_ISBIGENDIAN(this->spec.format))
Sep 24, 2006
Sep 24, 2006
552
553
strdesc.mFormatFlags |= kLinearPCMFormatFlagIsBigEndian;
Oct 17, 2006
Oct 17, 2006
554
if (SDL_AUDIO_ISFLOAT(this->spec.format))
Sep 24, 2006
Sep 24, 2006
555
strdesc.mFormatFlags |= kLinearPCMFormatFlagIsFloat;
Oct 17, 2006
Oct 17, 2006
556
else if (SDL_AUDIO_ISSIGNED(this->spec.format))
Sep 24, 2006
Sep 24, 2006
557
558
strdesc.mFormatFlags |= kLinearPCMFormatFlagIsSignedInteger;
break;
Sep 1, 2006
Sep 1, 2006
559
560
}
}
Jul 10, 2006
Jul 10, 2006
561
Sep 24, 2006
Sep 24, 2006
562
if (!valid_datatype) { /* shouldn't happen, but just in case... */
Oct 28, 2006
Oct 28, 2006
563
COREAUDIO_CloseDevice(this);
Sep 1, 2006
Sep 1, 2006
564
SDL_SetError("Unsupported audio format");
Oct 17, 2006
Oct 17, 2006
565
return 0;
Sep 1, 2006
Sep 1, 2006
566
}
Sep 2, 2006
Sep 2, 2006
568
569
570
571
strdesc.mBytesPerFrame =
strdesc.mBitsPerChannel * strdesc.mChannelsPerFrame / 8;
strdesc.mBytesPerPacket =
strdesc.mBytesPerFrame * strdesc.mFramesPerPacket;
Oct 17, 2006
Oct 17, 2006
573
if (!prepare_audiounit(this, devname, iscapture, &strdesc)) {
Oct 28, 2006
Oct 28, 2006
574
COREAUDIO_CloseDevice(this);
Oct 28, 2006
Oct 28, 2006
575
return 0; /* prepare_audiounit() will call SDL_SetError()... */
Jul 10, 2006
Jul 10, 2006
577
Oct 28, 2006
Oct 28, 2006
578
return 1; /* good to go. */
Oct 17, 2006
Oct 17, 2006
579
}
Oct 17, 2006
Oct 17, 2006
581
static int
Oct 28, 2006
Oct 28, 2006
582
COREAUDIO_Init(SDL_AudioDriverImpl * impl)
Oct 17, 2006
Oct 17, 2006
583
584
585
586
587
588
589
590
{
/* Set the function pointers */
impl->DetectDevices = COREAUDIO_DetectDevices;
impl->GetDeviceName = COREAUDIO_GetDeviceName;
impl->OpenDevice = COREAUDIO_OpenDevice;
impl->CloseDevice = COREAUDIO_CloseDevice;
impl->Deinitialize = COREAUDIO_Deinitialize;
impl->ProvidesOwnCallbackThread = 1;
Feb 7, 2006
Feb 7, 2006
591
Oct 28, 2006
Oct 28, 2006
592
build_device_lists(); /* do an initial check for devices... */
Oct 17, 2006
Oct 17, 2006
593
Jan 1, 2009
Jan 1, 2009
594
return (outputDeviceCount > 0) ? 2 : 1;
Jul 10, 2006
Jul 10, 2006
596
Oct 17, 2006
Oct 17, 2006
597
598
599
600
AudioBootStrap COREAUDIO_bootstrap = {
"coreaudio", "Mac OS X CoreAudio", COREAUDIO_Init, 0
};
Jul 10, 2006
Jul 10, 2006
601
/* vi: set ts=4 sw=4 expandtab: */