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

Latest commit

 

History

History
584 lines (481 loc) · 18.3 KB

SDL_coreaudio.c

File metadata and controls

584 lines (481 loc) · 18.3 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 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 3, 2006
Oct 3, 2006
24
#include <CoreAudio/CoreAudio.h>
25
26
27
#include <AudioUnit/AudioUnit.h>
#include "SDL_audio.h"
Feb 16, 2006
Feb 16, 2006
28
29
#include "../SDL_audio_c.h"
#include "../SDL_sysaudio.h"
30
31
#include "SDL_coreaudio.h"
Oct 3, 2006
Oct 3, 2006
32
#define DEBUG_COREAUDIO 1
Oct 3, 2006
Oct 3, 2006
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
typedef struct COREAUDIO_DeviceList
{
AudioDeviceID id;
const char *name;
} COREAUDIO_DeviceList;
static COREAUDIO_DeviceList *inputDevices = NULL;
static int inputDeviceCount = 0;
static COREAUDIO_DeviceList *outputDevices = NULL;
static int outputDeviceCount = 0;
static void
free_device_list(COREAUDIO_DeviceList **devices, int *devCount)
{
if (*devices) {
int i = *devCount;
while (i--)
SDL_free((void *) (*devices)[i].name);
SDL_free(*devices);
*devices = NULL;
}
*devCount = 0;
}
static void
build_device_list(int iscapture, COREAUDIO_DeviceList **devices, int *devCount)
{
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,
&size, &outWritable);
if (result != kAudioHardwareNoError)
return;
devs = (AudioDeviceID *) alloca(size);
if (devs == NULL)
return;
max = size / sizeof (AudioDeviceID);
*devices = (COREAUDIO_DeviceList *) SDL_malloc(max * sizeof (**devices));
if (*devices == NULL)
return;
result = AudioHardwareGetProperty(kAudioHardwarePropertyDevices,
&size, devs);
if (result != kAudioHardwareNoError)
return;
for (i = 0; i < max; i++) {
Oct 3, 2006
Oct 3, 2006
92
CFStringRef cfstr = NULL;
Oct 3, 2006
Oct 3, 2006
93
94
95
96
char *ptr = NULL;
AudioDeviceID dev = devs[i];
AudioBufferList *buflist = NULL;
int usable = 0;
Oct 3, 2006
Oct 3, 2006
97
CFIndex len = 0;
Oct 3, 2006
Oct 3, 2006
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
result = AudioDeviceGetPropertyInfo(dev, 0, iscapture,
kAudioDevicePropertyStreamConfiguration,
&size, &outWritable);
if (result != noErr)
continue;
buflist = (AudioBufferList *) SDL_malloc(size);
if (buflist == NULL)
continue;
result = AudioDeviceGetProperty(dev, 0, iscapture,
kAudioDevicePropertyStreamConfiguration,
&size, buflist);
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 3, 2006
Oct 3, 2006
128
129
130
131
size = sizeof (CFStringRef);
result = AudioDeviceGetProperty(dev, 0, iscapture,
kAudioObjectPropertyName,
&size, &cfstr);
Oct 3, 2006
Oct 3, 2006
132
133
134
135
if (result != kAudioHardwareNoError)
continue;
Oct 3, 2006
Oct 3, 2006
136
137
len = CFStringGetMaximumSizeForEncoding(CFStringGetLength(cfstr),
kCFStringEncodingUTF8);
Oct 3, 2006
Oct 3, 2006
138
Oct 3, 2006
Oct 3, 2006
139
140
141
ptr = (char *) SDL_malloc(len + 1);
usable = ( (ptr != NULL) &&
(CFStringGetCString(cfstr,ptr,len+1,kCFStringEncodingUTF8)) );
Oct 3, 2006
Oct 3, 2006
142
Oct 3, 2006
Oct 3, 2006
143
CFRelease(cfstr);
Oct 3, 2006
Oct 3, 2006
144
Oct 3, 2006
Oct 3, 2006
145
146
147
148
149
150
151
152
if (usable) {
len = strlen(ptr);
/* Some devices have whitespace at the end...trim it. */
while ((len > 0) && (ptr[len-1] == ' ')) {
len--;
}
usable = (len > 0);
}
Oct 3, 2006
Oct 3, 2006
153
Oct 3, 2006
Oct 3, 2006
154
if (!usable) {
Oct 3, 2006
Oct 3, 2006
155
156
SDL_free(ptr);
} else {
Oct 3, 2006
Oct 3, 2006
157
158
159
160
161
162
163
164
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
Oct 3, 2006
Oct 3, 2006
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
(*devices)[*devCount].id = dev;
(*devices)[*devCount].name = ptr;
(*devCount)++;
}
}
}
static int
find_device_id(const char *devname, int iscapture, AudioDeviceID *id)
{
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;
}
devs++;
}
return 0;
}
189
190
/* Audio driver functions */
Oct 1, 2006
Oct 1, 2006
191
192
193
194
195
static int COREAUDIO_OpenAudio(_THIS, const char *devname, int iscapture);
static void COREAUDIO_WaitAudio(_THIS);
static void COREAUDIO_PlayAudio(_THIS);
static Uint8 *COREAUDIO_GetAudioBuf(_THIS);
static void COREAUDIO_CloseAudio(_THIS);
Oct 3, 2006
Oct 3, 2006
196
static void COREAUDIO_Deinitialize(void);
197
198
199
/* Audio driver bootstrap functions */
Jul 10, 2006
Jul 10, 2006
200
static int
Oct 1, 2006
Oct 1, 2006
201
COREAUDIO_Available(void)
Jul 10, 2006
Jul 10, 2006
203
return (1);
Oct 1, 2006
Oct 1, 2006
206
207
static int
COREAUDIO_Init(SDL_AudioDriverImpl *impl)
Oct 3, 2006
Oct 3, 2006
209
210
211
212
/* !!! FIXME: should these _really_ be static? */
build_device_list(0, &outputDevices, &outputDeviceCount);
build_device_list(1, &inputDevices, &inputDeviceCount);
213
/* Set the function pointers */
Oct 1, 2006
Oct 1, 2006
214
215
216
217
218
impl->OpenAudio = COREAUDIO_OpenAudio;
impl->WaitAudio = COREAUDIO_WaitAudio;
impl->PlayAudio = COREAUDIO_PlayAudio;
impl->GetAudioBuf = COREAUDIO_GetAudioBuf;
impl->CloseAudio = COREAUDIO_CloseAudio;
Oct 3, 2006
Oct 3, 2006
219
impl->Deinitialize = COREAUDIO_Deinitialize;
Oct 1, 2006
Oct 1, 2006
221
return 1;
222
223
224
225
}
AudioBootStrap COREAUDIO_bootstrap = {
"coreaudio", "Mac OS X CoreAudio",
Oct 1, 2006
Oct 1, 2006
226
COREAUDIO_Available, COREAUDIO_Init
Oct 3, 2006
Oct 3, 2006
229
230
231
232
static void
COREAUDIO_Deinitialize(void)
{
Oct 3, 2006
Oct 3, 2006
233
234
free_device_list(&outputDevices, &outputDeviceCount);
free_device_list(&inputDevices, &inputDeviceCount);
Oct 3, 2006
Oct 3, 2006
235
236
237
}
238
/* The CoreAudio callback */
Jul 10, 2006
Jul 10, 2006
239
static OSStatus
Oct 3, 2006
Oct 3, 2006
240
241
outputCallback(void *inRefCon,
AudioUnitRenderActionFlags *ioActionFlags,
Jul 10, 2006
Jul 10, 2006
242
const AudioTimeStamp * inTimeStamp,
Oct 3, 2006
Oct 3, 2006
243
244
UInt32 inBusNumber, UInt32 inNumberFrames,
AudioBufferList *ioDataList)
Jul 10, 2006
Jul 10, 2006
246
SDL_AudioDevice *this = (SDL_AudioDevice *) inRefCon;
Oct 3, 2006
Oct 3, 2006
247
AudioBuffer *ioData = &ioDataList->mBuffers[0];
248
249
250
UInt32 remaining, len;
void *ptr;
Oct 3, 2006
Oct 3, 2006
251
252
253
254
/*
* !!! FIXME: I'm not sure if you can ever have more than one
* buffer, or what this signifies, or what to do with it...
*/
Oct 3, 2006
Oct 3, 2006
255
256
257
258
if (ioDataList->mNumberBuffers != 1) {
return noErr;
}
259
/* Only do anything if audio is enabled and not paused */
Jul 10, 2006
Jul 10, 2006
260
if (!this->enabled || this->paused) {
Feb 7, 2006
Feb 7, 2006
261
SDL_memset(ioData->mData, this->spec.silence, ioData->mDataByteSize);
Jul 10, 2006
Jul 10, 2006
264
265
266
267
/* 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
268
/*
Jul 10, 2006
Jul 10, 2006
269
270
assert(!this->convert.needed);
assert(this->spec.channels == ioData->mNumberChannels);
Feb 7, 2006
Feb 7, 2006
271
*/
Jul 10, 2006
Jul 10, 2006
272
273
274
275
remaining = ioData->mDataByteSize;
ptr = ioData->mData;
while (remaining > 0) {
Oct 1, 2006
Oct 1, 2006
276
if (this->hidden->bufferOffset >= this->hidden->bufferSize) {
277
/* Generate the data */
Oct 1, 2006
Oct 1, 2006
278
279
SDL_memset(this->hidden->buffer, this->spec.silence,
this->hidden->bufferSize);
280
SDL_mutexP(this->mixer_lock);
Oct 1, 2006
Oct 1, 2006
281
282
(*this->spec.callback) (this->spec.userdata, this->hidden->buffer,
this->hidden->bufferSize);
283
SDL_mutexV(this->mixer_lock);
Oct 1, 2006
Oct 1, 2006
284
this->hidden->bufferOffset = 0;
Jul 10, 2006
Jul 10, 2006
286
Oct 1, 2006
Oct 1, 2006
287
len = this->hidden->bufferSize - this->hidden->bufferOffset;
288
289
if (len > remaining)
len = remaining;
Oct 1, 2006
Oct 1, 2006
290
291
292
SDL_memcpy(ptr,
(char *) this->hidden->buffer + this->hidden->bufferOffset,
len);
Jul 10, 2006
Jul 10, 2006
293
ptr = (char *) ptr + len;
Oct 1, 2006
Oct 1, 2006
295
this->hidden->bufferOffset += len;
Jul 10, 2006
Jul 10, 2006
297
Oct 3, 2006
Oct 3, 2006
301
302
303
304
305
306
307
308
309
310
311
312
313
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;
}
314
/* Dummy functions -- we don't use thread-based audio */
Jul 10, 2006
Jul 10, 2006
315
void
Oct 1, 2006
Oct 1, 2006
316
COREAUDIO_WaitAudio(_THIS)
Jul 10, 2006
Jul 10, 2006
321
void
Oct 1, 2006
Oct 1, 2006
322
COREAUDIO_PlayAudio(_THIS)
Jul 10, 2006
Jul 10, 2006
327
Uint8 *
Oct 1, 2006
Oct 1, 2006
328
COREAUDIO_GetAudioBuf(_THIS)
Jul 10, 2006
Jul 10, 2006
330
return (NULL);
Jul 10, 2006
Jul 10, 2006
333
void
Oct 1, 2006
Oct 1, 2006
334
COREAUDIO_CloseAudio(_THIS)
Oct 3, 2006
Oct 3, 2006
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
if (this->hidden != NULL) {
OSStatus result = noErr;
AURenderCallbackStruct callback;
const AudioUnitElement output_bus = 0;
const AudioUnitElement input_bus = 1;
const int iscapture = this->hidden->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 */
memset(&callback, '\0', sizeof (AURenderCallbackStruct));
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioUnitProperty_SetRenderCallback,
scope, bus, &callback, sizeof (callback));
CloseComponent(this->hidden->audioUnit);
SDL_free(this->hidden->buffer);
SDL_free(this->hidden);
this->hidden = NULL;
}
}
Oct 3, 2006
Oct 3, 2006
363
364
365
366
367
368
#define CHECK_RESULT(msg) \
if (result != noErr) { \
COREAUDIO_CloseAudio(this); \
SDL_SetError("CoreAudio error (%s): %d", msg, (int) result); \
return 0; \
Oct 1, 2006
Oct 1, 2006
369
370
}
Oct 3, 2006
Oct 3, 2006
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
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) {
size = sizeof (AudioDeviceID);
const AudioHardwarePropertyID propid =
((iscapture) ? kAudioHardwarePropertyDefaultInputDevice :
kAudioHardwarePropertyDefaultOutputDevice);
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 3, 2006
Oct 3, 2006
395
396
397
398
399
400
401
402
403
size = sizeof (alive);
result = AudioDeviceGetProperty(devid, 0, iscapture,
kAudioDevicePropertyDeviceIsAlive,
&size, &alive);
CHECK_RESULT("AudioDeviceGetProperty (kAudioDevicePropertyDeviceIsAlive)");
if (!alive) {
SDL_SetError("CoreAudio: requested device exists, but isn't alive.");
return 0;
Oct 3, 2006
Oct 3, 2006
406
407
408
409
410
411
412
413
size = sizeof (pid);
result = AudioDeviceGetProperty(devid, 0, iscapture,
kAudioDevicePropertyHogMode, &size, &pid);
/* 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;
Jul 10, 2006
Jul 10, 2006
415
Oct 3, 2006
Oct 3, 2006
416
417
this->hidden->deviceID = devid;
return 1;
Oct 3, 2006
Oct 3, 2006
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
static int
prepare_audiounit(_THIS, const char *devname, int iscapture,
const AudioStreamBasicDescription *strdesc)
{
OSStatus result = noErr;
AURenderCallbackStruct callback;
ComponentDescription desc;
Component comp = NULL;
int use_system_device = 0;
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 :
kAudioUnitScope_Input);
if (!find_device_by_name(this, devname, iscapture)) {
SDL_SetError("Couldn't find requested CoreAudio device");
return 0;
Oct 3, 2006
Oct 3, 2006
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
memset(&desc, '\0', sizeof(ComponentDescription));
desc.componentType = kAudioUnitType_Output;
desc.componentSubType = kAudioUnitSubType_HALOutput;
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");
// !!! FIXME: this is wrong?
enableIO = ((iscapture) ? 1 : 0);
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioOutputUnitProperty_EnableIO,
kAudioUnitScope_Input, input_bus,
&enableIO, sizeof (enableIO));
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,
&enableIO, sizeof (enableIO));
CHECK_RESULT("AudioUnitSetProperty (kAudioUnitProperty_EnableIO output)");
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioOutputUnitProperty_CurrentDevice,
kAudioUnitScope_Global, 0,
&this->hidden->deviceID,
sizeof (AudioDeviceID));
CHECK_RESULT("AudioUnitSetProperty (kAudioOutputUnitProperty_CurrentDevice)");
/* 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 */
memset(&callback, '\0', sizeof (AURenderCallbackStruct));
callback.inputProc = ((iscapture) ? inputCallback : outputCallback);
callback.inputProcRefCon = this;
result = AudioUnitSetProperty(this->hidden->audioUnit,
kAudioUnitProperty_SetRenderCallback,
scope, bus, &callback, sizeof (callback));
CHECK_RESULT("AudioUnitSetProperty (kAudioUnitProperty_SetInputCallback)");
/* 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;
}
Jul 10, 2006
Jul 10, 2006
514
int
Oct 1, 2006
Oct 1, 2006
515
COREAUDIO_OpenAudio(_THIS, const char *devname, int iscapture)
Sep 2, 2006
Sep 2, 2006
517
AudioStreamBasicDescription strdesc;
Oct 1, 2006
Oct 1, 2006
518
SDL_AudioFormat test_format = SDL_FirstAudioFormat(this->spec.format);
Sep 1, 2006
Sep 1, 2006
519
int valid_datatype = 0;
Oct 1, 2006
Oct 1, 2006
521
522
523
524
525
526
527
528
529
/* 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));
Oct 3, 2006
Oct 3, 2006
530
this->hidden->isCapture = iscapture;
Oct 1, 2006
Oct 1, 2006
531
532
/* Setup a AudioStreamBasicDescription with the requested format */
Sep 24, 2006
Sep 24, 2006
533
memset(&strdesc, '\0', sizeof(AudioStreamBasicDescription));
Sep 2, 2006
Sep 2, 2006
534
535
strdesc.mFormatID = kAudioFormatLinearPCM;
strdesc.mFormatFlags = kLinearPCMFormatFlagIsPacked;
Oct 1, 2006
Oct 1, 2006
536
537
strdesc.mChannelsPerFrame = this->spec.channels;
strdesc.mSampleRate = this->spec.freq;
Sep 2, 2006
Sep 2, 2006
538
strdesc.mFramesPerPacket = 1;
Sep 1, 2006
Sep 1, 2006
539
540
while ((!valid_datatype) && (test_format)) {
Oct 1, 2006
Oct 1, 2006
541
this->spec.format = test_format;
Sep 1, 2006
Sep 1, 2006
542
543
/* Just a list of valid SDL formats, so people don't pass junk here. */
switch (test_format) {
Sep 24, 2006
Sep 24, 2006
544
545
546
547
548
549
550
551
552
553
554
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 1, 2006
Oct 1, 2006
555
556
strdesc.mBitsPerChannel = SDL_AUDIO_BITSIZE(this->spec.format);
if (SDL_AUDIO_ISBIGENDIAN(this->spec.format))
Sep 24, 2006
Sep 24, 2006
557
558
strdesc.mFormatFlags |= kLinearPCMFormatFlagIsBigEndian;
Oct 1, 2006
Oct 1, 2006
559
if (SDL_AUDIO_ISFLOAT(this->spec.format))
Sep 24, 2006
Sep 24, 2006
560
strdesc.mFormatFlags |= kLinearPCMFormatFlagIsFloat;
Oct 1, 2006
Oct 1, 2006
561
else if (SDL_AUDIO_ISSIGNED(this->spec.format))
Sep 24, 2006
Sep 24, 2006
562
563
strdesc.mFormatFlags |= kLinearPCMFormatFlagIsSignedInteger;
break;
Sep 1, 2006
Sep 1, 2006
564
565
}
}
Jul 10, 2006
Jul 10, 2006
566
Sep 24, 2006
Sep 24, 2006
567
if (!valid_datatype) { /* shouldn't happen, but just in case... */
Sep 1, 2006
Sep 1, 2006
568
SDL_SetError("Unsupported audio format");
Oct 1, 2006
Oct 1, 2006
569
return 0;
Sep 1, 2006
Sep 1, 2006
570
}
Sep 2, 2006
Sep 2, 2006
572
573
574
575
strdesc.mBytesPerFrame =
strdesc.mBitsPerChannel * strdesc.mChannelsPerFrame / 8;
strdesc.mBytesPerPacket =
strdesc.mBytesPerFrame * strdesc.mFramesPerPacket;
Oct 3, 2006
Oct 3, 2006
577
578
if (!prepare_audiounit(this, devname, iscapture, &strdesc)) {
return 0; /* prepare_audiounit() will call SDL_SetError()... */
Jul 10, 2006
Jul 10, 2006
580
Oct 3, 2006
Oct 3, 2006
581
return 1; /* good to go. */
Jul 10, 2006
Jul 10, 2006
583
584
/* vi: set ts=4 sw=4 expandtab: */