
To learn about a particular device and how to operate it, consult the Live Audio Effect Reference ( see Chapter 24), Live MIDI Effect Reference ( see Chapter 25) or the Live Instrument Reference ( see Chapter 26). To save space in the Device View, a device can be collapsed by double-clicking on its title bar or by choosing Fold from its right-click(PC) / CTRL- click(Mac) context menu. The Device View appears in the bottom area of the Live screen. To select a track and open the Device View to access its devices, double-click the track’s name.

The Device View is where you insert, view and adjust the devices for the selected track.

Typically, when i need to process Audio, I build my own graph I make this it's own class for better portability. More importantly, where are you hooking your renderCallback to, what are you doing in the callback and what does the framework expect?

What is the definition of &iOUnitDescription. From the above, i see you have a mixer somewhere, a guitarBus which presumably is your input (and seemingly a stream). &mixerOutToIoUnitIn, // connection definition IoUnitOutputElement, // destination element KAudioUnitScope_Input, // destination scope KAudioUnitProperty_MakeConnection, // property key

MixerOutToIoUnitIn.sourceOutputNumber = mixerUnitOutputBus MixerOutToIoUnitIn.sourceAudioUnit = mixerUnit If (noErr != result) ĪudioUnitElement ioUnitOutputElement = 0 ponentFlagsMask = 0 ĪudioComponent foundIoUnitReference = AudioComponentFindNext ( ponentManufacturer = kAudioUnitManufacturer_Apple ponentSubType = kAudioUnitSubType_RemoteIO I need the same output i'm getting with this audiounit mixer but with another audiounit with type kAudioUnitSubType_RemoteIO.ĮDIT 2- iOUnitDescription Added AudioComponentDescription iOUnitDescription I have an AudioUnit with correspondent Callback working properly, But now, I need to send it to a RemoteIO, cause i'm implementing some framework who needs an RemoteIO AudioUnit to work.
