1 | #include "config.h" |
---|
2 | |
---|
3 | #if defined(HAVE_SOURCE_APPLE_AUDIO) || defined(HAVE_SINK_APPLE_AUDIO) |
---|
4 | |
---|
5 | // CFURLRef, CFURLCreateWithFileSystemPath, ... |
---|
6 | #include <CoreFoundation/CoreFoundation.h> |
---|
7 | // ExtAudioFileRef, AudioStreamBasicDescription, AudioBufferList, ... |
---|
8 | #include <AudioToolbox/AudioToolbox.h> |
---|
9 | #include "aubio_priv.h" |
---|
10 | |
---|
11 | int createAubioBufferList(AudioBufferList *bufferList, int channels, int segmentSize); |
---|
12 | void freeAudioBufferList(AudioBufferList *bufferList); |
---|
13 | CFURLRef getURLFromPath(const char * path); |
---|
14 | char_t *getPrintableOSStatusError(char_t *str, OSStatus error); |
---|
15 | |
---|
16 | int createAubioBufferList(AudioBufferList * bufferList, int channels, int max_source_samples) { |
---|
17 | bufferList->mNumberBuffers = 1; |
---|
18 | bufferList->mBuffers[0].mNumberChannels = channels; |
---|
19 | bufferList->mBuffers[0].mData = AUBIO_ARRAY(short, max_source_samples); |
---|
20 | bufferList->mBuffers[0].mDataByteSize = max_source_samples * sizeof(short); |
---|
21 | return 0; |
---|
22 | } |
---|
23 | |
---|
24 | void freeAudioBufferList(AudioBufferList *bufferList) { |
---|
25 | UInt32 i = 0; |
---|
26 | if (!bufferList) return; |
---|
27 | for (i = 0; i < bufferList->mNumberBuffers; i++) { |
---|
28 | if (bufferList->mBuffers[i].mData) { |
---|
29 | AUBIO_FREE(bufferList->mBuffers[i].mData); |
---|
30 | bufferList->mBuffers[i].mData = NULL; |
---|
31 | } |
---|
32 | } |
---|
33 | bufferList = NULL; |
---|
34 | } |
---|
35 | |
---|
36 | CFURLRef getURLFromPath(const char * path) { |
---|
37 | CFStringRef cfTotalPath = CFStringCreateWithCString (kCFAllocatorDefault, |
---|
38 | path, kCFStringEncodingUTF8); |
---|
39 | |
---|
40 | return CFURLCreateWithFileSystemPath(kCFAllocatorDefault, cfTotalPath, |
---|
41 | kCFURLPOSIXPathStyle, false); |
---|
42 | } |
---|
43 | |
---|
44 | char_t *getPrintableOSStatusError(char_t *str, OSStatus error) |
---|
45 | { |
---|
46 | // see if it appears to be a 4-char-code |
---|
47 | *(UInt32 *)(str + 1) = CFSwapInt32HostToBig(error); |
---|
48 | if (isprint(str[1]) && isprint(str[2]) && isprint(str[3]) && isprint(str[4])) { |
---|
49 | str[0] = str[5] = '\''; |
---|
50 | str[6] = '\0'; |
---|
51 | } else |
---|
52 | // no, format it as an integer |
---|
53 | sprintf(str, "%d", (int)error); |
---|
54 | return str; |
---|
55 | } |
---|
56 | |
---|
57 | #endif /* defined(HAVE_SOURCE_APPLE_AUDIO) || defined(HAVE_SINK_APPLE_AUDIO) */ |
---|