43 #include "EST_cutils.h"
45 #include "EST_Option.h"
48 #if defined (SUPPORT_MACOSX_AUDIO)
50 #include <CoreServices/CoreServices.h>
53 #include <CoreAudio/CoreAudio.h>
54 #include <AudioUnit/AudioUnit.h>
56 int macosx_supported = TRUE;
64 OSStatus render_callback(
void *inref,
65 AudioUnitRenderActionFlags *inflags,
66 const AudioTimeStamp *instamp,
69 AudioBufferList *ioData)
74 UInt32 channels = ioData->mNumberBuffers;
75 int totalNumberOfBytes = waveSize;
76 int channelBytesLeft = totalNumberOfBytes - waveIndex;
77 int bufferSize = ioData->mBuffers[0].mDataByteSize;
79 if(channelBytesLeft > 0) {
80 if(channelBytesLeft < bufferSize) {
81 for(UInt32 i = 0; i < channels; ++i) {
82 waveMatrix->
copy_column((
int)i, (
int short*)ioData->mBuffers[i].mData, waveIndex/2, channelBytesLeft/2);
83 memset((
char*)ioData->mBuffers[i].mData + channelBytesLeft, 0, bufferSize - channelBytesLeft) ;
85 waveIndex += channelBytesLeft;
87 for(UInt32 i = 0; i < channels; ++i)
88 waveMatrix->
copy_column((
int)i, (
int short*)ioData->mBuffers[i].mData, waveIndex/2, bufferSize/2);
89 waveIndex += bufferSize;
92 for(UInt32 i = 0; i < channels; ++i)
93 memset(ioData->mBuffers[i].mData, 0, ioData->mBuffers[i].mDataByteSize);
101 void CreateDefaultAU()
103 OSStatus err = noErr;
106 ComponentDescription desc;
107 desc.componentType = kAudioUnitType_Output;
108 desc.componentSubType = kAudioUnitSubType_DefaultOutput;
109 desc.componentManufacturer = kAudioUnitManufacturer_Apple;
110 desc.componentFlags = 0;
111 desc.componentFlagsMask = 0;
113 Component comp = FindNextComponent(NULL, &desc);
114 if (comp == NULL) { printf (
"FindNextComponent\n");
return; }
116 err = OpenAComponent(comp, &outau);
117 if (comp == NULL) { printf (
"OpenAComponent=%ld\n",
long(err));
return; }
120 AURenderCallbackStruct input;
121 input.inputProc = render_callback;
122 input.inputProcRefCon = NULL;
124 err = AudioUnitSetProperty (outau,
125 kAudioUnitProperty_SetRenderCallback,
126 kAudioUnitScope_Input,
130 if (err) { printf (
"AudioUnitSetProperty-CB=%ld\n",
long(err));
return; }
137 AudioStreamBasicDescription waveformat, outformat;
138 UInt32 size =
sizeof(AudioStreamBasicDescription);
146 waveformat.mSampleRate = (Float64)inwave.
sample_rate();
147 waveformat.mFormatID = kAudioFormatLinearPCM;
148 waveformat.mFormatFlags = kLinearPCMFormatFlagIsSignedInteger
149 | kAudioFormatFlagsNativeEndian
150 | kLinearPCMFormatFlagIsPacked
151 | kAudioFormatFlagIsNonInterleaved;
152 waveformat.mFramesPerPacket = 1;
154 waveformat.mBytesPerPacket = 2;
155 waveformat.mBytesPerFrame = 2;
156 waveformat.mBitsPerChannel = 16;
158 err = AudioUnitSetProperty(outau,
159 kAudioUnitProperty_StreamFormat,
160 kAudioUnitScope_Input,
165 cerr <<
"Error setting input audio stream format." << endl;
166 CloseComponent(outau);
170 err = AudioUnitGetProperty(outau,
171 kAudioUnitProperty_StreamFormat,
172 kAudioUnitScope_Output,
177 cerr <<
"Error getting output audio stream format." << endl;
178 CloseComponent(outau);
182 err = AudioUnitInitialize(outau);
184 printf (
"AudioUnitInitialize=%ld\n",
long(err));
190 waveMatrix = &inwave.values();
194 err = AudioOutputUnitStart(outau);
196 cerr <<
"Error starting audio outup: " << err << endl;
197 CloseComponent(outau);
203 size =
sizeof(UInt32);
206 err = AudioUnitGetProperty(outau, kAudioOutputUnitProperty_IsRunning,
207 kAudioUnitScope_Global, 0, &running, &size);
208 }
while (err == noErr && running && !done);
210 CloseComponent (outau);
217 int macosx_supported = FALSE;
223 cerr <<
"OS X Core Audio in not supported in this configuration." << endl;