| 
							- /*
 - Copyright (C) 2004-2006 Grame
 - 
 - This program is free software; you can redistribute it and/or modify
 - it under the terms of the GNU General Public License as published by
 - the Free Software Foundation; either version 2 of the License, or
 - (at your option) any later version.
 - 
 - This program 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 General Public License for more details.
 - 
 - You should have received a copy of the GNU General Public License
 - along with this program; if not, write to the Free Software
 - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 - 
 - */
 - 
 - #include "JackCoreAudioDriver.h"
 - #include "JackEngineControl.h"
 - #include "JackMachThread.h"
 - #include "JackGraphManager.h"
 - #include "JackError.h"
 - #include "JackClientControl.h"
 - #include "JackDriverLoader.h"
 - #include "JackGlobals.h"
 - #include "driver_interface.h"
 - #include <iostream>
 - 
 - namespace Jack
 - {
 - 
 - static void PrintStreamDesc(AudioStreamBasicDescription *inDesc)
 - {
 -     JackLog("- - - - - - - - - - - - - - - - - - - -\n");
 -     JackLog("  Sample Rate:%f\n", inDesc->mSampleRate);
 -     JackLog("  Format ID:%.*s\n", (int) sizeof(inDesc->mFormatID), (char*)&inDesc->mFormatID);
 -     JackLog("  Format Flags:%lX\n", inDesc->mFormatFlags);
 -     JackLog("  Bytes per Packet:%ld\n", inDesc->mBytesPerPacket);
 -     JackLog("  Frames per Packet:%ld\n", inDesc->mFramesPerPacket);
 -     JackLog("  Bytes per Frame:%ld\n", inDesc->mBytesPerFrame);
 -     JackLog("  Channels per Frame:%ld\n", inDesc->mChannelsPerFrame);
 -     JackLog("  Bits per Channel:%ld\n", inDesc->mBitsPerChannel);
 -     JackLog("- - - - - - - - - - - - - - - - - - - -\n");
 - }
 - 
 - static void printError(OSStatus err)
 - {
 -     switch (err) {
 -         case kAudioHardwareNoError:
 -             JackLog("error code : kAudioHardwareNoError\n");
 -             break;
 -         case kAudioConverterErr_FormatNotSupported:
 -             JackLog("error code : kAudioConverterErr_FormatNotSupported\n");
 -             break;
 -         case kAudioConverterErr_OperationNotSupported:
 -             JackLog("error code : kAudioConverterErr_OperationNotSupported\n");
 -             break;
 -         case kAudioConverterErr_PropertyNotSupported:
 -             JackLog("error code : kAudioConverterErr_PropertyNotSupported\n");
 -             break;
 -         case kAudioConverterErr_InvalidInputSize:
 -             JackLog("error code : kAudioConverterErr_InvalidInputSize\n");
 -             break;
 -         case kAudioConverterErr_InvalidOutputSize:
 -             JackLog("error code : kAudioConverterErr_InvalidOutputSize\n");
 -             break;
 -         case kAudioConverterErr_UnspecifiedError:
 -             JackLog("error code : kAudioConverterErr_UnspecifiedError\n");
 -             break;
 -         case kAudioConverterErr_BadPropertySizeError:
 -             JackLog("error code : kAudioConverterErr_BadPropertySizeError\n");
 -             break;
 -         case kAudioConverterErr_RequiresPacketDescriptionsError:
 -             JackLog("error code : kAudioConverterErr_RequiresPacketDescriptionsError\n");
 -             break;
 -         case kAudioConverterErr_InputSampleRateOutOfRange:
 -             JackLog("error code : kAudioConverterErr_InputSampleRateOutOfRange\n");
 -             break;
 -         case kAudioConverterErr_OutputSampleRateOutOfRange:
 -             JackLog("error code : kAudioConverterErr_OutputSampleRateOutOfRange\n");
 -             break;
 -         case kAudioHardwareNotRunningError:
 -             JackLog("error code : kAudioHardwareNotRunningError\n");
 -             break;
 -         case kAudioHardwareUnknownPropertyError:
 -             JackLog("error code : kAudioHardwareUnknownPropertyError\n");
 -             break;
 -         case kAudioHardwareIllegalOperationError:
 -             JackLog("error code : kAudioHardwareIllegalOperationError\n");
 -             break;
 -         case kAudioHardwareBadDeviceError:
 -             JackLog("error code : kAudioHardwareBadDeviceError\n");
 -             break;
 -         case kAudioHardwareBadStreamError:
 -             JackLog("error code : kAudioHardwareBadStreamError\n");
 -             break;
 -         case kAudioDeviceUnsupportedFormatError:
 -             JackLog("error code : kAudioDeviceUnsupportedFormatError\n");
 -             break;
 -         case kAudioDevicePermissionsError:
 -             JackLog("error code : kAudioDevicePermissionsError\n");
 -             break;
 -         default:
 -             JackLog("error code : unknown\n");
 -             break;
 -     }
 - }
 - 
 - static OSStatus DisplayDeviceNames()
 - {
 -     UInt32 size;
 -     Boolean isWritable;
 -     int i, deviceNum;
 -     OSStatus err;
 -     CFStringRef UIname;
 - 
 -     err = AudioHardwareGetPropertyInfo(kAudioHardwarePropertyDevices, &size, &isWritable);
 -     if (err != noErr)
 -         return err;
 - 
 -     deviceNum = size / sizeof(AudioDeviceID);
 -     AudioDeviceID devices[deviceNum];
 - 
 -     err = AudioHardwareGetProperty(kAudioHardwarePropertyDevices, &size, devices);
 -     if (err != noErr)
 -         return err;
 - 
 -     for (i = 0; i < deviceNum; i++) {
 -         char device_name[256];
 -         char internal_name[256];
 - 
 -         size = sizeof(CFStringRef);
 -         UIname = NULL;
 -         err = AudioDeviceGetProperty(devices[i], 0, false, kAudioDevicePropertyDeviceUID, &size, &UIname);
 -         if (err == noErr) {
 -             CFStringGetCString(UIname, internal_name, 256, CFStringGetSystemEncoding());
 -         } else {
 -             goto error;
 -         }
 - 
 -         size = 256;
 -         err = AudioDeviceGetProperty(devices[i], 0, false, kAudioDevicePropertyDeviceName, &size, device_name);
 -         if (err != noErr)
 -             return err;
 - 
 -         printf("Device name = \'%s\', internal_name = \'%s\' (to be used as -C, -P, or -d parameter)\n", device_name, internal_name);
 -     }
 - 
 -     return noErr;
 - 
 - error:
 -     if (UIname != NULL)
 -         CFRelease(UIname);
 -     return err;
 - }
 - 
 - #if IO_CPU
 - 
 - OSStatus JackCoreAudioDriver::Render(void *inRefCon,
 -                                      AudioUnitRenderActionFlags *ioActionFlags,
 -                                      const AudioTimeStamp *inTimeStamp,
 -                                      UInt32 inBusNumber,
 -                                      UInt32 inNumberFrames,
 -                                      AudioBufferList *ioData)
 - {
 -     JackCoreAudioDriver* driver = (JackCoreAudioDriver*)inRefCon;
 -     driver->fLastWaitUst = GetMicroSeconds(); // Take callback date here
 -     memcpy(&driver->fActionFags, ioActionFlags, sizeof(AudioUnitRenderActionFlags));
 -     memcpy(&driver->fCurrentTime, inTimeStamp, sizeof(AudioTimeStamp));
 -     driver->fDriverOutputData = ioData;
 -     float delta;
 -     OSStatus res = driver->Process();
 -     if ((delta = float(GetMicroSeconds() - driver->fLastWaitUst) / float(driver->fEngineControl->fPeriodUsecs)) > 0.1) {
 -         JackLog("IO CPU %f\n", delta);
 -     }
 -     return res;
 - }
 - 
 - #else
 - 
 - OSStatus JackCoreAudioDriver::Render(void *inRefCon,
 -                                      AudioUnitRenderActionFlags *ioActionFlags,
 -                                      const AudioTimeStamp *inTimeStamp,
 -                                      UInt32 inBusNumber,
 -                                      UInt32 inNumberFrames,
 -                                      AudioBufferList *ioData)
 - {
 -     JackCoreAudioDriver* driver = (JackCoreAudioDriver*)inRefCon;
 -     driver->fLastWaitUst = GetMicroSeconds(); // Take callback date here
 -     memcpy(&driver->fActionFags, ioActionFlags, sizeof(AudioUnitRenderActionFlags));
 -     memcpy(&driver->fCurrentTime, inTimeStamp, sizeof(AudioTimeStamp));
 -     driver->fDriverOutputData = ioData;
 -     return driver->Process();
 - }
 - 
 - #endif
 - 
 - int JackCoreAudioDriver::Read()
 - {
 -     AudioUnitRender(fAUHAL, &fActionFags, &fCurrentTime, 1, fEngineControl->fBufferSize, fJackInputData);
 -     return 0;
 - }
 - 
 - int JackCoreAudioDriver::Write()
 - {
 -     for (int i = 0; i < fPlaybackChannels; i++) {
 -         if (fGraphManager->GetConnectionsNum(fPlaybackPortList[i]) > 0) {
 -             float* buffer = GetOutputBuffer(i);
 -             int size = sizeof(float) * fEngineControl->fBufferSize;
 -             memcpy((float*)fDriverOutputData->mBuffers[i].mData, buffer, size);
 -             // Monitor ports
 -             if (fWithMonitorPorts && fGraphManager->GetConnectionsNum(fMonitorPortList[i]) > 0)
 -                 memcpy(GetMonitorBuffer(i), buffer, size);
 -         } else {
 -             memset((float*)fDriverOutputData->mBuffers[i].mData, 0, sizeof(float) * fEngineControl->fBufferSize);
 -         }
 -     }
 -     return 0;
 - }
 - 
 - // Will run only once
 - OSStatus JackCoreAudioDriver::MeasureCallback(AudioDeviceID inDevice,
 -         const AudioTimeStamp* inNow,
 -         const AudioBufferList* inInputData,
 -         const AudioTimeStamp* inInputTime,
 -         AudioBufferList* outOutputData,
 -         const AudioTimeStamp* inOutputTime,
 -         void* inClientData)
 - {
 -     JackCoreAudioDriver* driver = (JackCoreAudioDriver*)inClientData;
 -     AudioDeviceStop(driver->fDeviceID, MeasureCallback);
 -     AudioDeviceRemoveIOProc(driver->fDeviceID, MeasureCallback);
 -     JackLog("JackCoreAudioDriver::MeasureCallback called\n");
 -     JackMachThread::GetParams(&driver->fEngineControl->fPeriod, &driver->fEngineControl->fComputation, &driver->fEngineControl->fConstraint);
 -     return noErr;
 - }
 - 
 - OSStatus JackCoreAudioDriver::DeviceNotificationCallback(AudioDeviceID inDevice,
 -         UInt32 inChannel,
 -         Boolean	isInput,
 -         AudioDevicePropertyID inPropertyID,
 -         void* inClientData)
 - {
 -     JackCoreAudioDriver* driver = (JackCoreAudioDriver*)inClientData;
 -     if (inPropertyID == kAudioDeviceProcessorOverload) {
 -         JackLog("JackCoreAudioDriver::NotificationCallback kAudioDeviceProcessorOverload\n");
 - #ifdef DEBUG
 -         //driver->fLogFile->Capture(AudioGetCurrentHostTime() - AudioConvertNanosToHostTime(LOG_SAMPLE_DURATION * 1000000), AudioGetCurrentHostTime(), true, "Captured Latency Log for I/O Cycle Overload\n");
 - #endif
 - 
 -         driver->NotifyXRun(GetMicroSeconds());
 -     }
 -     return noErr;
 - }
 - 
 - OSStatus JackCoreAudioDriver::GetDeviceIDFromUID(const char* UID, AudioDeviceID* id)
 - {
 -     UInt32 size = sizeof(AudioValueTranslation);
 -     CFStringRef inIUD = CFStringCreateWithCString(NULL, UID, CFStringGetSystemEncoding());
 -     AudioValueTranslation value = { &inIUD, sizeof(CFStringRef), id, sizeof(AudioDeviceID) };
 - 
 -     if (inIUD == NULL) {
 -         return kAudioHardwareUnspecifiedError;
 -     } else {
 -         OSStatus res = AudioHardwareGetProperty(kAudioHardwarePropertyDeviceForUID, &size, &value);
 -         CFRelease(inIUD);
 -         JackLog("get_device_id_from_uid %s %ld \n", UID, *id);
 -         return (*id == kAudioDeviceUnknown) ? kAudioHardwareBadDeviceError : res;
 -     }
 - }
 - 
 - OSStatus JackCoreAudioDriver::GetDefaultDevice(AudioDeviceID* id)
 - {
 -     OSStatus res;
 -     UInt32 theSize = sizeof(UInt32);
 -     AudioDeviceID inDefault;
 -     AudioDeviceID outDefault;
 - 
 -     if ((res = AudioHardwareGetProperty(kAudioHardwarePropertyDefaultInputDevice,
 -                                         &theSize, &inDefault)) != noErr)
 -         return res;
 - 
 -     if ((res = AudioHardwareGetProperty(kAudioHardwarePropertyDefaultOutputDevice,
 -                                         &theSize, &outDefault)) != noErr)
 -         return res;
 - 
 -     JackLog("GetDefaultDevice: input = %ld output = %ld\n", inDefault, outDefault);
 - 
 -     // Get the device only if default input and ouput are the same
 -     if (inDefault == outDefault) {
 -         *id = inDefault;
 -         return noErr;
 -     } else {
 -         jack_error("Default input and output devices are not the same !!");
 -         return kAudioHardwareBadDeviceError;
 -     }
 - }
 - 
 - OSStatus JackCoreAudioDriver::GetDefaultInputDevice(AudioDeviceID* id)
 - {
 -     OSStatus res;
 -     UInt32 theSize = sizeof(UInt32);
 -     AudioDeviceID inDefault;
 - 
 -     if ((res = AudioHardwareGetProperty(kAudioHardwarePropertyDefaultInputDevice,
 -                                         &theSize, &inDefault)) != noErr)
 -         return res;
 - 
 -     JackLog("GetDefaultInputDevice: input = %ld \n", inDefault);
 -     *id = inDefault;
 -     return noErr;
 - }
 - 
 - OSStatus JackCoreAudioDriver::GetDefaultOutputDevice(AudioDeviceID* id)
 - {
 -     OSStatus res;
 -     UInt32 theSize = sizeof(UInt32);
 -     AudioDeviceID outDefault;
 - 
 -     if ((res = AudioHardwareGetProperty(kAudioHardwarePropertyDefaultOutputDevice,
 -                                         &theSize, &outDefault)) != noErr)
 -         return res;
 - 
 -     JackLog("GetDefaultOutputDevice: output = %ld\n", outDefault);
 -     *id = outDefault;
 -     return noErr;
 - }
 - 
 - OSStatus JackCoreAudioDriver::GetDeviceNameFromID(AudioDeviceID id, char* name)
 - {
 -     UInt32 size = 256;
 -     return AudioDeviceGetProperty(id, 0, false, kAudioDevicePropertyDeviceName, &size, name);
 - }
 - 
 - OSStatus JackCoreAudioDriver::GetTotalChannels(AudioDeviceID device, long* channelCount, bool isInput)
 - {
 -     OSStatus	err = noErr;
 -     UInt32	outSize;
 -     Boolean	outWritable;
 -     AudioBufferList*	bufferList = 0;
 -     AudioStreamID*	streamList = 0;
 -     int	i, numStream;
 - 
 -     err = AudioDeviceGetPropertyInfo(device, 0, isInput, kAudioDevicePropertyStreams, &outSize, &outWritable);
 -     if (err == noErr) {
 -         streamList = (AudioStreamID*)malloc(outSize);
 -         numStream = outSize / sizeof(AudioStreamID);
 -         JackLog("GetTotalChannels device stream number = %ld numStream = %ld\n", device, numStream);
 -         err = AudioDeviceGetProperty(device, 0, isInput, kAudioDevicePropertyStreams, &outSize, streamList);
 -         if (err == noErr) {
 -             AudioStreamBasicDescription streamDesc;
 -             outSize = sizeof(AudioStreamBasicDescription);
 -             for (i = 0; i < numStream; i++) {
 -                 err = AudioStreamGetProperty(streamList[i], 0, kAudioDevicePropertyStreamFormat, &outSize, &streamDesc);
 -                 JackLog("GetTotalChannels streamDesc mFormatFlags = %ld mChannelsPerFrame = %ld\n", streamDesc.mFormatFlags, streamDesc.mChannelsPerFrame);
 -             }
 -         }
 -     }
 - 
 -     *channelCount = 0;
 -     err = AudioDeviceGetPropertyInfo(device, 0, isInput, kAudioDevicePropertyStreamConfiguration, &outSize, &outWritable);
 -     if (err == noErr) {
 -         bufferList = (AudioBufferList*)malloc(outSize);
 -         err = AudioDeviceGetProperty(device, 0, isInput, kAudioDevicePropertyStreamConfiguration, &outSize, bufferList);
 -         if (err == noErr) {
 -             for (i = 0; i < bufferList->mNumberBuffers; i++)
 -                 *channelCount += bufferList->mBuffers[i].mNumberChannels;
 -         }
 -     }
 - 
 -     if (streamList)
 -         free(streamList);
 -     if (bufferList)
 -         free(bufferList);
 - 
 -     return err;
 - }
 - 
 - JackCoreAudioDriver::JackCoreAudioDriver(const char* name, JackEngine* engine, JackSynchro** table)
 -         : JackAudioDriver(name, engine, table), fJackInputData(NULL), fDriverOutputData(NULL)
 - {
 - #ifdef DEBUG
 -     //fLogFile = new CALatencyLog("jackmp_latency", ".txt");
 - #endif
 - }
 - 
 - JackCoreAudioDriver::~JackCoreAudioDriver()
 - {
 - #ifdef DEBUG
 -     //delete fLogFile;
 - #endif
 - }
 - 
 - int JackCoreAudioDriver::Open(jack_nframes_t nframes,
 -                               jack_nframes_t samplerate,
 -                               int capturing,
 -                               int playing,
 -                               int inchannels,
 -                               int outchannels,
 -                               bool monitor,
 -                               const char* capture_driver_uid,
 -                               const char* playback_driver_uid,
 -                               jack_nframes_t capture_latency,
 -                               jack_nframes_t playback_latency)
 - {
 -     OSStatus err = noErr;
 -     ComponentResult err1;
 -     UInt32 outSize;
 -     UInt32 enableIO;
 -     AudioStreamBasicDescription srcFormat, dstFormat, sampleRate;
 -     long in_nChannels = 0;
 -     long out_nChannels = 0;
 -     char capture_driver_name[256];
 -     char playback_driver_name[256];
 -     float iousage;
 - 
 -     capture_driver_name[0] = 0;
 -     playback_driver_name[0] = 0;
 - 
 -     JackLog("JackCoreAudioDriver::Open nframes = %ld in = %ld out = %ld capture name = %s playback name = %s\n",
 -             nframes, inchannels, outchannels, capture_driver_uid, playback_driver_uid);
 - 
 -     // Duplex
 -     if (capture_driver_uid != NULL && playback_driver_uid != NULL) {
 -         JackLog("JackCoreAudioDriver::Open duplex \n");
 -         if (GetDeviceIDFromUID(playback_driver_uid, &fDeviceID) != noErr) {
 -             if (GetDefaultDevice(&fDeviceID) != noErr) {
 -                 jack_error("Cannot open default device");
 -                 return -1;
 -             }
 -         }
 -         if (GetDeviceNameFromID(fDeviceID, capture_driver_name) != noErr || GetDeviceNameFromID(fDeviceID, playback_driver_name) != noErr) {
 -             jack_error("Cannot get device name from device ID");
 -             return -1;
 -         }
 - 
 -         // Capture only
 -     } else if (capture_driver_uid != NULL) {
 -         JackLog("JackCoreAudioDriver::Open capture only \n");
 -         if (GetDeviceIDFromUID(capture_driver_uid, &fDeviceID) != noErr) {
 -             if (GetDefaultInputDevice(&fDeviceID) != noErr) {
 -                 jack_error("Cannot open default device");
 -                 return -1;
 -             }
 -         }
 -         if (GetDeviceNameFromID(fDeviceID, capture_driver_name) != noErr) {
 -             jack_error("Cannot get device name from device ID");
 -             return -1;
 -         }
 - 
 -         // Playback only
 -     } else if (playback_driver_uid != NULL) {
 -         JackLog("JackCoreAudioDriver::Open playback only \n");
 -         if (GetDeviceIDFromUID(playback_driver_uid, &fDeviceID) != noErr) {
 -             if (GetDefaultOutputDevice(&fDeviceID) != noErr) {
 -                 jack_error("Cannot open default device");
 -                 return -1;
 -             }
 -         }
 -         if (GetDeviceNameFromID(fDeviceID, playback_driver_name) != noErr) {
 -             jack_error("Cannot get device name from device ID");
 -             return -1;
 -         }
 - 
 -         // Use default driver in duplex mode
 -     } else {
 -         JackLog("JackCoreAudioDriver::Open default driver \n");
 -         if (GetDefaultDevice(&fDeviceID) != noErr) {
 -             jack_error("Cannot open default device");
 -             return -1;
 -         }
 -         if (GetDeviceNameFromID(fDeviceID, capture_driver_name) != noErr || GetDeviceNameFromID(fDeviceID, playback_driver_name) != noErr) {
 -             jack_error("Cannot get device name from device ID");
 -             return -1;
 -         }
 -     }
 - 
 -     // Generic JackAudioDriver Open
 -     if (JackAudioDriver::Open(nframes, samplerate, capturing, playing, inchannels, outchannels, monitor, capture_driver_name, playback_driver_name, capture_latency, playback_latency) != 0) {
 -         return -1;
 -     }
 - 
 -     if (capturing) {
 -         err = GetTotalChannels(fDeviceID, &in_nChannels, true);
 -         if (err != noErr) {
 -             jack_error("Cannot get input channel number");
 -             printError(err);
 -             return -1;
 -         }
 -     }
 - 
 -     if (playing) {
 -         err = GetTotalChannels(fDeviceID, &out_nChannels, false);
 -         if (err != noErr) {
 -             jack_error("Cannot get output channel number");
 -             printError(err);
 -             return -1;
 -         }
 -     }
 - 
 -     if (inchannels > in_nChannels) {
 -         jack_error("This device hasn't required input channels inchannels = %ld in_nChannels = %ld", inchannels, in_nChannels);
 -         return -1;
 -     }
 - 
 -     if (outchannels > out_nChannels) {
 -         jack_error("This device hasn't required output channels outchannels = %ld out_nChannels = %ld", outchannels, out_nChannels);
 -         return -1;
 -     }
 - 
 -     if (inchannels == 0) {
 -         JackLog("Setup max in channels = %ld\n", in_nChannels);
 -         inchannels = in_nChannels;
 -     }
 - 
 -     if (outchannels == 0) {
 -         JackLog("Setup max out channels = %ld\n", out_nChannels);
 -         outchannels = out_nChannels;
 -     }
 - 
 -     // Setting buffer size
 -     outSize = sizeof(UInt32);
 -     err = AudioDeviceSetProperty(fDeviceID, NULL, 0, false, kAudioDevicePropertyBufferFrameSize, outSize, &fEngineControl->fBufferSize);
 -     if (err != noErr) {
 -         jack_error("Cannot set buffer size %ld", nframes);
 -         printError(err);
 -         return -1;
 -     }
 - 
 -     // Set sample rate
 -     if (capturing && inchannels > 0) {
 -         outSize = sizeof(AudioStreamBasicDescription);
 -         err = AudioDeviceGetProperty(fDeviceID, 0, true, kAudioDevicePropertyStreamFormat, &outSize, &sampleRate);
 -         if (err != noErr) {
 -             jack_error("Cannot get current sample rate");
 -             printError(err);
 -             return -1;
 -         }
 - 
 -         if (samplerate != (unsigned long)sampleRate.mSampleRate) {
 -             sampleRate.mSampleRate = (Float64)samplerate;
 -             err = AudioDeviceSetProperty(fDeviceID, NULL, 0, true, kAudioDevicePropertyStreamFormat, outSize, &sampleRate);
 -             if (err != noErr) {
 -                 jack_error("Cannot set sample rate = %ld", samplerate);
 -                 printError(err);
 -                 return -1;
 -             }
 -         }
 -     }
 - 
 -     if (playing && outchannels > 0) {
 -         outSize = sizeof(AudioStreamBasicDescription);
 -         err = AudioDeviceGetProperty(fDeviceID, 0, false, kAudioDevicePropertyStreamFormat, &outSize, &sampleRate);
 -         if (err != noErr) {
 -             jack_error("Cannot get current sample rate");
 -             printError(err);
 -             return -1;
 -         }
 - 
 -         if (samplerate != (unsigned long)sampleRate.mSampleRate) {
 -             sampleRate.mSampleRate = (Float64)samplerate;
 -             err = AudioDeviceSetProperty(fDeviceID, NULL, 0, false, kAudioDevicePropertyStreamFormat, outSize, &sampleRate);
 -             if (err != noErr) {
 -                 jack_error("Cannot set sample rate = %ld", samplerate);
 -                 printError(err);
 -                 return -1;
 -             }
 -         }
 -     }
 - 
 -     // AUHAL
 -     ComponentDescription cd = {kAudioUnitType_Output, kAudioUnitSubType_HALOutput, kAudioUnitManufacturer_Apple, 0, 0};
 -     Component HALOutput = FindNextComponent(NULL, &cd);
 - 
 -     err1 = OpenAComponent(HALOutput, &fAUHAL);
 -     if (err1 != noErr) {
 -         jack_error("Error calling OpenAComponent");
 -         printError(err1);
 -         goto error;
 -     }
 - 
 -     err1 = AudioUnitInitialize(fAUHAL);
 -     if (err1 != noErr) {
 -         jack_error("Cannot initialize AUHAL unit");
 -         printError(err1);
 -         goto error;
 -     }
 - 
 -     // Start I/O
 -     enableIO = 1;
 -     if (capturing && inchannels > 0) {
 -         JackLog("Setup AUHAL input\n");
 -         err1 = AudioUnitSetProperty(fAUHAL, kAudioOutputUnitProperty_EnableIO, kAudioUnitScope_Input, 1, &enableIO, sizeof(enableIO));
 -         if (err1 != noErr) {
 -             jack_error("Error calling AudioUnitSetProperty - kAudioOutputUnitProperty_EnableIO, kAudioUnitScope_Input");
 -             printError(err1);
 -             goto error;
 -         }
 -     }
 - 
 -     if (playing && outchannels > 0) {
 -         JackLog("Setup AUHAL output\n");
 -         err1 = AudioUnitSetProperty(fAUHAL, kAudioOutputUnitProperty_EnableIO, kAudioUnitScope_Output, 0, &enableIO, sizeof(enableIO));
 -         if (err1 != noErr) {
 -             jack_error("Error calling AudioUnitSetProperty - kAudioOutputUnitProperty_EnableIO,kAudioUnitScope_Output");
 -             printError(err1);
 -             goto error;
 -         }
 -     }
 - 
 -     // Setup up choosen device, in both input and output cases
 -     err1 = AudioUnitSetProperty(fAUHAL, kAudioOutputUnitProperty_CurrentDevice, kAudioUnitScope_Global, 0, &fDeviceID, sizeof(AudioDeviceID));
 -     if (err1 != noErr) {
 -         jack_error("Error calling AudioUnitSetProperty - kAudioOutputUnitProperty_CurrentDevice");
 -         printError(err1);
 -         goto error;
 -     }
 - 
 -     // Set buffer size
 -     if (capturing && inchannels > 0) {
 -         err1 = AudioUnitSetProperty(fAUHAL, kAudioUnitProperty_MaximumFramesPerSlice, kAudioUnitScope_Global, 1, (UInt32*) & nframes, sizeof(UInt32));
 -         if (err1 != noErr) {
 -             jack_error("Error calling AudioUnitSetProperty - kAudioUnitProperty_MaximumFramesPerSlice");
 -             printError(err1);
 -             goto error;
 -         }
 -     }
 - 
 -     if (playing && outchannels > 0) {
 -         err1 = AudioUnitSetProperty(fAUHAL, kAudioUnitProperty_MaximumFramesPerSlice, kAudioUnitScope_Global, 0, (UInt32*) & nframes, sizeof(UInt32));
 -         if (err1 != noErr) {
 -             jack_error("Error calling AudioUnitSetProperty - kAudioUnitProperty_MaximumFramesPerSlice");
 -             printError(err1);
 -             goto error;
 -         }
 -     }
 - 
 -     // Setup channel map
 -     if (capturing && inchannels > 0 && inchannels < in_nChannels) {
 -         SInt32 chanArr[in_nChannels];
 -         for (int i = 0; i < in_nChannels; i++) {
 -             chanArr[i] = -1;
 -         }
 -         for (int i = 0; i < inchannels; i++) {
 -             chanArr[i] = i;
 -         }
 -         AudioUnitSetProperty(fAUHAL, kAudioOutputUnitProperty_ChannelMap , kAudioUnitScope_Input, 1, chanArr, sizeof(SInt32) * in_nChannels);
 -         if (err1 != noErr) {
 -             jack_error("Error calling AudioUnitSetProperty - kAudioOutputUnitProperty_ChannelMap 1");
 -             printError(err1);
 -         }
 -     }
 - 
 -     if (playing && outchannels > 0 && outchannels < out_nChannels) {
 -         SInt32 chanArr[out_nChannels];
 -         for (int i = 0;	i < out_nChannels; i++) {
 -             chanArr[i] = -1;
 -         }
 -         for (int i = 0; i < outchannels; i++) {
 -             chanArr[i] = i;
 -         }
 -         err1 = AudioUnitSetProperty(fAUHAL, kAudioOutputUnitProperty_ChannelMap, kAudioUnitScope_Output, 0, chanArr, sizeof(SInt32) * out_nChannels);
 -         if (err1 != noErr) {
 -             jack_error("Error calling AudioUnitSetProperty - kAudioOutputUnitProperty_ChannelMap 0");
 -             printError(err1);
 -         }
 -     }
 - 
 -     // Setup stream converters
 -     if (capturing && inchannels > 0) {
 -         srcFormat.mSampleRate = samplerate;
 -         srcFormat.mFormatID = kAudioFormatLinearPCM;
 -         srcFormat.mFormatFlags = kAudioFormatFlagsNativeFloatPacked | kLinearPCMFormatFlagIsNonInterleaved;
 -         srcFormat.mBytesPerPacket = sizeof(float);
 -         srcFormat.mFramesPerPacket = 1;
 -         srcFormat.mBytesPerFrame = sizeof(float);
 -         srcFormat.mChannelsPerFrame = outchannels;
 -         srcFormat.mBitsPerChannel = 32;
 - 
 -         err1 = AudioUnitSetProperty(fAUHAL, kAudioUnitProperty_StreamFormat, kAudioUnitScope_Input, 0, &srcFormat, sizeof(AudioStreamBasicDescription));
 -         if (err1 != noErr) {
 -             jack_error("Error calling AudioUnitSetProperty - kAudioUnitProperty_StreamFormat kAudioUnitScope_Input");
 -             printError(err1);
 -         }
 -     }
 - 
 -     if (playing && outchannels > 0) {
 -         dstFormat.mSampleRate = samplerate;
 -         dstFormat.mFormatID = kAudioFormatLinearPCM;
 -         dstFormat.mFormatFlags = kAudioFormatFlagsNativeFloatPacked | kLinearPCMFormatFlagIsNonInterleaved;
 -         dstFormat.mBytesPerPacket = sizeof(float);
 -         dstFormat.mFramesPerPacket = 1;
 -         dstFormat.mBytesPerFrame = sizeof(float);
 -         dstFormat.mChannelsPerFrame = inchannels;
 -         dstFormat.mBitsPerChannel = 32;
 - 
 -         err1 = AudioUnitSetProperty(fAUHAL, kAudioUnitProperty_StreamFormat, kAudioUnitScope_Output, 1, &dstFormat, sizeof(AudioStreamBasicDescription));
 -         if (err1 != noErr) {
 -             jack_error("Error calling AudioUnitSetProperty - kAudioUnitProperty_StreamFormat kAudioUnitScope_Output");
 -             printError(err1);
 -         }
 -     }
 - 
 -     // Setup callbacks
 -     if (inchannels > 0 && outchannels == 0) {
 -         AURenderCallbackStruct output;
 -         output.inputProc = Render;
 -         output.inputProcRefCon = this;
 -         err1 = AudioUnitSetProperty(fAUHAL, kAudioOutputUnitProperty_SetInputCallback, kAudioUnitScope_Global, 0, &output, sizeof(output));
 -         if (err1 != noErr) {
 -             jack_error("Error calling  AudioUnitSetProperty - kAudioUnitProperty_SetRenderCallback 1");
 -             printError(err1);
 -             goto error;
 -         }
 -     } else {
 -         AURenderCallbackStruct output;
 -         output.inputProc = Render;
 -         output.inputProcRefCon = this;
 -         err1 = AudioUnitSetProperty(fAUHAL, kAudioUnitProperty_SetRenderCallback, kAudioUnitScope_Input, 0, &output, sizeof(output));
 -         if (err1 != noErr) {
 -             jack_error("Error calling AudioUnitSetProperty - kAudioUnitProperty_SetRenderCallback 0");
 -             printError(err1);
 -             goto error;
 -         }
 -     }
 - 
 -     // Prepare buffers
 -     if (capturing && inchannels > 0) {
 -         fJackInputData = (AudioBufferList*)malloc(sizeof(UInt32) + inchannels * sizeof(AudioBuffer));
 -         if (fJackInputData == 0) {
 -             jack_error("Cannot allocate memory for input buffers");
 -             goto error;
 -         }
 -         fJackInputData->mNumberBuffers = inchannels;
 -         for (int i = 0; i < fCaptureChannels; i++) {
 -             fJackInputData->mBuffers[i].mNumberChannels = 1;
 -             fJackInputData->mBuffers[i].mDataByteSize = fEngineControl->fBufferSize * sizeof(float);
 -         }
 -     }
 - 
 -     // Add listeners
 -     err = AudioDeviceAddPropertyListener(fDeviceID, 0, true, kAudioDeviceProcessorOverload, DeviceNotificationCallback, this);
 -     if (err != noErr) {
 -         jack_error("Error calling AudioDeviceAddPropertyListener with kAudioDeviceProcessorOverload");
 -         printError(err1);
 -         goto error;
 -     }
 - 
 -     err = AudioDeviceAddPropertyListener(fDeviceID, 0, true, kAudioHardwarePropertyDevices, DeviceNotificationCallback, this);
 -     if (err != noErr) {
 -         jack_error("Error calling AudioDeviceAddPropertyListener with kAudioHardwarePropertyDevices");
 -         printError(err1);
 -         goto error;
 -     }
 - 
 -     fDriverOutputData = 0;
 - 
 - #if IO_CPU
 - 
 -     outSize = sizeof(float);
 -     iousage = 0.4f;
 -     err = AudioDeviceSetProperty(fDeviceID, NULL, 0, false, kAudioDevicePropertyIOCycleUsage, outSize, &iousage);
 -     if (err != noErr) {
 -         jack_error("Error calling AudioDeviceSetProperty kAudioDevicePropertyIOCycleUsage");
 -         printError(err);
 -     }
 - #endif
 - 
 -     // Core driver may have changed the in/out values
 -     fCaptureChannels = inchannels;
 -     fPlaybackChannels = outchannels;
 -     return 0;
 - 
 - error:
 -     AudioUnitUninitialize(fAUHAL);
 -     CloseComponent(fAUHAL);
 -     return -1;
 - }
 - 
 - int JackCoreAudioDriver::Close()
 - {
 -     JackAudioDriver::Close();
 -     // Possibly (if MeasureCallback has not been called)
 -     AudioDeviceStop(fDeviceID, MeasureCallback);
 -     AudioDeviceRemoveIOProc(fDeviceID, MeasureCallback);
 -     AudioDeviceRemovePropertyListener(fDeviceID, 0, true, kAudioDeviceProcessorOverload, DeviceNotificationCallback);
 -     free(fJackInputData);
 -     AudioUnitUninitialize(fAUHAL);
 -     CloseComponent(fAUHAL);
 -     return 0;
 - }
 - 
 - int JackCoreAudioDriver::Attach()
 - {
 -     OSStatus err;
 -     JackPort* port;
 -     jack_port_id_t port_index;
 -     UInt32 size;
 -     Boolean isWritable;
 -     char channel_name[64];
 -     char buf[JACK_PORT_NAME_SIZE];
 -     unsigned long port_flags = JackPortIsOutput | JackPortIsPhysical | JackPortIsTerminal;
 - 
 -     JackLog("JackCoreAudioDriver::Attach fBufferSize %ld fSampleRate %ld\n", fEngineControl->fBufferSize, fEngineControl->fSampleRate);
 - 
 -     for (int i = 0; i < fCaptureChannels; i++) {
 - 
 -         err = AudioDeviceGetPropertyInfo(fDeviceID, i + 1, true, kAudioDevicePropertyChannelName, &size, &isWritable);
 -         if (err != noErr)
 -             JackLog("AudioDeviceGetPropertyInfo kAudioDevicePropertyChannelName error \n");
 -         if (err == noErr && size > 0) {
 -             err = AudioDeviceGetProperty(fDeviceID, i + 1, true, kAudioDevicePropertyChannelName, &size, channel_name);
 -             if (err != noErr)
 -                 JackLog("AudioDeviceGetProperty kAudioDevicePropertyChannelName error \n");
 -             snprintf(buf, sizeof(buf) - 1, "%s:%s:out_%s%u", fClientControl->fName, fCaptureDriverName, channel_name, i + 1);
 -         } else {
 -             snprintf(buf, sizeof(buf) - 1, "%s:%s:out%u", fClientControl->fName, fCaptureDriverName, i + 1);
 -         }
 - 
 -         if ((port_index = fGraphManager->AllocatePort(fClientControl->fRefNum, buf, (JackPortFlags)port_flags)) == NO_PORT) {
 -             jack_error("Cannot register port for %s", buf);
 -             return -1;
 -         }
 - 
 -         port = fGraphManager->GetPort(port_index);
 -         port->SetLatency(fEngineControl->fBufferSize + fCaptureLatency);
 -         fCapturePortList[i] = port_index;
 -     }
 - 
 -     port_flags = JackPortIsInput | JackPortIsPhysical | JackPortIsTerminal;
 - 
 -     for (int i = 0; i < fPlaybackChannels; i++) {
 - 
 -         err = AudioDeviceGetPropertyInfo(fDeviceID, i + 1, false, kAudioDevicePropertyChannelName, &size, &isWritable);
 -         if (err != noErr)
 -             JackLog("AudioDeviceGetPropertyInfo kAudioDevicePropertyChannelName error \n");
 -         if (err == noErr && size > 0) {
 -             err = AudioDeviceGetProperty(fDeviceID, i + 1, false, kAudioDevicePropertyChannelName, &size, channel_name);
 -             if (err != noErr)
 -                 JackLog("AudioDeviceGetProperty kAudioDevicePropertyChannelName error \n");
 -             snprintf(buf, sizeof(buf) - 1, "%s:%s:in_%s%u", fClientControl->fName, fPlaybackDriverName, channel_name, i + 1);
 -         } else {
 -             snprintf(buf, sizeof(buf) - 1, "%s:%s:in%u", fClientControl->fName, fPlaybackDriverName, i + 1);
 -         }
 - 
 -         if ((port_index = fGraphManager->AllocatePort(fClientControl->fRefNum, buf, (JackPortFlags)port_flags)) == NO_PORT) {
 -             jack_error("Cannot register port for %s", buf);
 -             return -1;
 -         }
 - 
 -         port = fGraphManager->GetPort(port_index);
 -         port->SetLatency(fEngineControl->fBufferSize + fPlaybackLatency);
 -         fPlaybackPortList[i] = port_index;
 - 
 -         // Monitor ports
 -         if (fWithMonitorPorts) {
 -             JackLog("Create monitor port \n");
 -             snprintf(buf, sizeof(buf) - 1, "%s:%s:monitor_%u", fClientControl->fName, fPlaybackDriverName, i + 1);
 -             if ((port_index = fGraphManager->AllocatePort(fClientControl->fRefNum, buf, JackPortIsOutput)) == NO_PORT) {
 -                 jack_error("Cannot register monitor port for %s", buf);
 -                 return -1;
 -             } else {
 -                 port = fGraphManager->GetPort(port_index);
 -                 port->SetLatency(fEngineControl->fBufferSize);
 -                 fMonitorPortList[i] = port_index;
 -             }
 -         }
 -     }
 - 
 -     // Input buffers do no change : prepare them only once
 -     for (int i = 0; i < fCaptureChannels; i++) {
 -         fJackInputData->mBuffers[i].mData = GetInputBuffer(i);
 -     }
 - 
 -     return 0;
 - }
 - 
 - int JackCoreAudioDriver::Start()
 - {
 -     JackLog("JackCoreAudioDriver::Start\n");
 -     JackAudioDriver::Start();
 - 
 -     OSStatus err = AudioDeviceAddIOProc(fDeviceID, MeasureCallback, this);
 -     if (err != noErr)
 -         return -1;
 - 
 -     err = AudioOutputUnitStart(fAUHAL);
 -     if (err != noErr)
 -         return -1;
 - 
 -     if ((err = AudioDeviceStart(fDeviceID, MeasureCallback)) != noErr) {
 -         jack_error("Cannot start MeasureCallback");
 -         printError(err);
 -         return -1;
 -     }
 - 
 -     return 0;
 - }
 - 
 - int JackCoreAudioDriver::Stop()
 - {
 -     AudioDeviceStop(fDeviceID, MeasureCallback);
 -     AudioDeviceRemoveIOProc(fDeviceID, MeasureCallback);
 -     JackLog("JackCoreAudioDriver::Stop\n");
 -     return (AudioOutputUnitStop(fAUHAL) == noErr) ? 0 : -1;
 - }
 - 
 - int JackCoreAudioDriver::SetBufferSize(jack_nframes_t buffer_size)
 - {
 -     OSStatus err;
 -     UInt32 outSize = sizeof(UInt32);
 - 
 -     err = AudioDeviceSetProperty(fDeviceID, NULL, 0, false, kAudioDevicePropertyBufferFrameSize, outSize, &buffer_size);
 -     if (err != noErr) {
 -         jack_error("Cannot set buffer size %ld", buffer_size);
 -         printError(err);
 -         return -1;
 -     }
 - 
 -     fEngineControl->fBufferSize = buffer_size;
 -     fEngineControl->fPeriodUsecs = jack_time_t(1000000.f / fEngineControl->fSampleRate * fEngineControl->fBufferSize); // In microsec
 - 
 -     // Input buffers do no change : prepare them only once
 -     for (int i = 0; i < fCaptureChannels; i++) {
 -         fJackInputData->mBuffers[i].mNumberChannels = 1;
 -         fJackInputData->mBuffers[i].mDataByteSize = fEngineControl->fBufferSize * sizeof(float);
 -         fJackInputData->mBuffers[i].mData = GetInputBuffer(i);
 -     }
 - 
 -     return 0;
 - }
 - 
 - void JackCoreAudioDriver::PrintState()
 - {
 -     std::cout << "JackCoreAudioDriver state" << std::endl;
 - 
 -     jack_port_id_t port_index;
 - 
 -     std::cout << "Input ports" << std::endl;
 - 
 -     for (int i = 0; i < fPlaybackChannels; i++) {
 -         port_index = fCapturePortList[i];
 -         JackPort* port = fGraphManager->GetPort(port_index);
 -         std::cout << port->GetName() << std::endl;
 -         if (fGraphManager->GetConnectionsNum(port_index)) {}
 -     }
 - 
 -     std::cout << "Output ports" << std::endl;
 - 
 -     for (int i = 0; i < fCaptureChannels; i++) {
 -         port_index = fPlaybackPortList[i];
 -         JackPort* port = fGraphManager->GetPort(port_index);
 -         std::cout << port->GetName() << std::endl;
 -         if (fGraphManager->GetConnectionsNum(port_index)) {}
 -     }
 - }
 - 
 - } // end of namespace
 - 
 - 
 - #ifdef __cplusplus
 - extern "C"
 - {
 - #endif
 - 
 -     jack_driver_desc_t* driver_get_descriptor() {
 -         jack_driver_desc_t *desc;
 -         unsigned int i;
 -         desc = (jack_driver_desc_t*)calloc(1, sizeof(jack_driver_desc_t));
 - 
 -         strcpy(desc->name, "coreaudio");
 -         desc->nparams = 13;
 -         desc->params = (jack_driver_param_desc_t*)calloc(desc->nparams, sizeof(jack_driver_param_desc_t));
 - 
 -         i = 0;
 -         strcpy(desc->params[i].name, "channels");
 -         desc->params[i].character = 'c';
 -         desc->params[i].type = JackDriverParamInt;
 -         desc->params[i].value.ui = 0;
 -         strcpy(desc->params[i].short_desc, "Maximum number of channels");
 -         strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
 - 
 -         i++;
 -         strcpy(desc->params[i].name, "inchannels");
 -         desc->params[i].character = 'i';
 -         desc->params[i].type = JackDriverParamInt;
 -         desc->params[i].value.ui = 0;
 -         strcpy(desc->params[i].short_desc, "Maximum number of input channels");
 -         strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
 - 
 -         i++;
 -         strcpy(desc->params[i].name, "outchannels");
 -         desc->params[i].character = 'o';
 -         desc->params[i].type = JackDriverParamInt;
 -         desc->params[i].value.ui = 0;
 -         strcpy(desc->params[i].short_desc, "Maximum number of output channels");
 -         strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
 - 
 -         i++;
 -         strcpy(desc->params[i].name, "capture");
 -         desc->params[i].character = 'C';
 -         desc->params[i].type = JackDriverParamString;
 -         strcpy(desc->params[i].value.str, "will take default CoreAudio input device");
 -         strcpy(desc->params[i].short_desc, "Provide capture ports. Optionally set CoreAudio device name");
 -         strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
 - 
 -         i++;
 -         strcpy(desc->params[i].name, "playback");
 -         desc->params[i].character = 'P';
 -         desc->params[i].type = JackDriverParamString;
 -         strcpy(desc->params[i].value.str, "will take default CoreAudio output device");
 -         strcpy(desc->params[i].short_desc, "Provide playback ports. Optionally set CoreAudio device name");
 -         strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
 - 
 -         i++;
 -         strcpy (desc->params[i].name, "monitor");
 -         desc->params[i].character = 'm';
 -         desc->params[i].type = JackDriverParamBool;
 -         desc->params[i].value.i = 0;
 -         strcpy(desc->params[i].short_desc, "Provide monitor ports for the output");
 -         strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
 - 
 -         i++;
 -         strcpy(desc->params[i].name, "duplex");
 -         desc->params[i].character = 'D';
 -         desc->params[i].type = JackDriverParamBool;
 -         desc->params[i].value.i = TRUE;
 -         strcpy(desc->params[i].short_desc, "Provide both capture and playback ports");
 -         strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
 - 
 -         i++;
 -         strcpy(desc->params[i].name, "rate");
 -         desc->params[i].character = 'r';
 -         desc->params[i].type = JackDriverParamUInt;
 -         desc->params[i].value.ui = 44100U;
 -         strcpy(desc->params[i].short_desc, "Sample rate");
 -         strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
 - 
 -         i++;
 -         strcpy(desc->params[i].name, "period");
 -         desc->params[i].character = 'p';
 -         desc->params[i].type = JackDriverParamUInt;
 -         desc->params[i].value.ui = 128U;
 -         strcpy(desc->params[i].short_desc, "Frames per period");
 -         strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
 - 
 -         i++;
 -         strcpy(desc->params[i].name, "device");
 -         desc->params[i].character = 'd';
 -         desc->params[i].type = JackDriverParamString;
 -         desc->params[i].value.ui = 128U;
 -         strcpy(desc->params[i].value.str, "will take default CoreAudio device name");
 -         strcpy(desc->params[i].short_desc, "CoreAudio device name");
 -         strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
 - 
 -         i++;
 -         strcpy(desc->params[i].name, "input-latency");
 -         desc->params[i].character = 'I';
 -         desc->params[i].type = JackDriverParamUInt;
 -         desc->params[i].value.i = 0;
 -         strcpy(desc->params[i].short_desc, "Extra input latency");
 -         strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
 - 
 -         i++;
 -         strcpy(desc->params[i].name, "output-latency");
 -         desc->params[i].character = 'O';
 -         desc->params[i].type = JackDriverParamUInt;
 -         desc->params[i].value.i = 0;
 -         strcpy(desc->params[i].short_desc, "Extra output latency");
 -         strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
 - 
 -         i++;
 -         strcpy(desc->params[i].name, "list-devices");
 -         desc->params[i].character = 'l';
 -         desc->params[i].type = JackDriverParamBool;
 -         desc->params[i].value.i = TRUE;
 -         strcpy(desc->params[i].short_desc, "Display available CoreAudio devices");
 -         strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
 - 
 -         return desc;
 -     }
 - 
 -     Jack::JackDriverClientInterface* driver_initialize(Jack::JackEngine* engine, Jack::JackSynchro** table, const JSList* params) {
 -         jack_nframes_t srate = 44100;
 -         jack_nframes_t frames_per_interrupt = 128;
 -         int capture = FALSE;
 -         int playback = FALSE;
 -         int chan_in = 0;
 -         int chan_out = 0;
 -         bool monitor = false;
 -         char* capture_pcm_name = "";
 -         char* playback_pcm_name = "";
 -         const JSList *node;
 -         const jack_driver_param_t *param;
 -         jack_nframes_t systemic_input_latency = 0;
 -         jack_nframes_t systemic_output_latency = 0;
 - 
 -         for (node = params; node; node = jack_slist_next(node)) {
 -             param = (const jack_driver_param_t *) node->data;
 - 
 -             switch (param->character) {
 - 
 -                 case 'd':
 -                     capture_pcm_name = strdup(param->value.str);
 -                     playback_pcm_name = strdup(param->value.str);
 -                     break;
 - 
 -                 case 'D':
 -                     capture = TRUE;
 -                     playback = TRUE;
 -                     break;
 - 
 -                 case 'c':
 -                     chan_in = chan_out = (int) param->value.ui;
 -                     break;
 - 
 -                 case 'i':
 -                     chan_in = (int) param->value.ui;
 -                     break;
 - 
 -                 case 'o':
 -                     chan_out = (int) param->value.ui;
 -                     break;
 - 
 -                 case 'C':
 -                     capture = TRUE;
 -                     if (strcmp(param->value.str, "none") != 0) {
 -                         capture_pcm_name = strdup(param->value.str);
 -                     }
 -                     break;
 - 
 -                 case 'P':
 -                     playback = TRUE;
 -                     if (strcmp(param->value.str, "none") != 0) {
 -                         playback_pcm_name = strdup(param->value.str);
 -                     }
 -                     break;
 - 
 -                 case 'm':
 -                     monitor = param->value.i;
 -                     break;
 - 
 -                 case 'r':
 -                     srate = param->value.ui;
 -                     break;
 - 
 -                 case 'p':
 -                     frames_per_interrupt = (unsigned int) param->value.ui;
 -                     break;
 - 
 -                 case 'I':
 -                     systemic_input_latency = param->value.ui;
 -                     break;
 - 
 -                 case 'O':
 -                     systemic_output_latency = param->value.ui;
 -                     break;
 - 
 -                 case 'l':
 -                     Jack::DisplayDeviceNames();
 -                     break;
 -             }
 -         }
 - 
 -         /* duplex is the default */
 -         if (!capture && !playback) {
 -             capture = TRUE;
 -             playback = TRUE;
 -         }
 - 
 -         Jack::JackDriverClientInterface* driver = new Jack::JackCoreAudioDriver("coreaudio", engine, table);
 -         if (driver->Open(frames_per_interrupt, srate, capture, playback, chan_in, chan_out, monitor, capture_pcm_name, playback_pcm_name, systemic_input_latency, systemic_output_latency) == 0) {
 -             return driver;
 -         } else {
 -             delete driver;
 -             return NULL;
 -         }
 -     }
 - 
 - #ifdef __cplusplus
 - }
 - #endif
 - 
 
 
  |