Static configuration for an AAX plug-in.
On this page
About the Describe callback and AAX descriptor interfaces
In Describe, a plug-in declares its static (or default) configuration and any properties that the host will need in order to manage the plug-in.
A plug-in's Describe callback ties the Algorithm, GUI, and Data Model together. In this callback, the plug-in provides a description of its algorithm callbacks, data connections, and other static plug-in properties using a set of host-provided description interfaces. The plug-in uses a tiered hierarchy of these description interfaces to complete its description:
-
At the top level, a single Collection interface represents properties that apply to the plug-in binary.
-
The Collection interface is populated with one or more Effect descriptors, each of which represents a single kind of effect. For example, a single dynamics plug-in binary may include both single-band and multi-band Effects. Each Effect represents a different plug-in "product" available to users.
-
Each Effect is registered with a set of one or more algorithm components that represent the specific processing configurations (e.g. stem formats, sample rates) that the plug-in supports. The set of components in a single Effect provide possible variations of the single plug-in "product", and as such these variations are mostly transparent to users.
{
if ( plugInDescriptor )
{
result = DemoGain_GetPlugInDescription( plugInDescriptor );
outCollection->
AddEffect( kEffectID_DemoGain, plugInDescriptor );
}
return result;
}
In general, the following procedure is used when describing an AAX plug-in:
-
Create an Effect description interface from the Collection interface provided by the host
-
Use the Effect description interface to create references to one or more component description interfaces.
-
Describe each algorithm component by populating the component descriptions.
-
Add the components to the Effect description
-
Add additional modules and properties to the Effect description.
-
Add the completed Effect to the Collection
-
Repeat for any additional Effects included in the plug-in binary.
-
Return the completed Collection interface to the host and exit.
- Note
- The host owns all memory associated with any descriptors that the plug-in returns via this callback.
Top level: Collection
The
AAX_ICollection interface provides a creation function (
AAX_ICollection::NewDescriptor()) for new plug-in descriptors, which in turn provides access to the various interfaces necessary for describing a plug-in (see the
DemoGain_GetPlugInDescription() and
DescribeAlgorithmComponent() listings below).
When a plug-in description is complete, it is added to the collection via the
AAX_ICollection::AddEffect() method. The
AAX_ICollection interface also provides some additional description methods that are used to describe the overall plug-in package. These methods can be used to describe the plug-in package's name, the name of the plug-in's manufacturer, and the plug-in package version. Once these have been described, the completed description interface is returned to the host and exits.
{
.
.
.
.
.
.
result = DemoGain_GetPlugInDescription( plugInDescriptor );
.
.
.
outCollection->
AddEffect( kEffectID_DemoGain, plugInDescriptor );
.
.
.
.
.
.
return result;
}
Middle level: Effects
The
AAX_IEffectDescriptor interface provides description methods that are used to describe the Effect, such as its name, category, associated page table, and, importantly, creation methods for its data model, GUI, and other AAX modules.
{
int err;
if ( !compDesc )
DescribeAlgorithmComponent( compDesc );
outDescriptor->AddPlugInName ( "Demo Gain AAX" );
outDescriptor->AddPlugInName ( "Demo Gain" );
outDescriptor->AddPlugInName ( "DemoGain" );
outDescriptor->AddPlugInName ( "DmGain" );
outDescriptor->AddPlugInName ( "DGpr" );
outDescriptor->AddPlugInName ( "Dn" );
#if PLUGGUI != 0
#endif
}
All components in an Effect must share the same AAX modules; for example, it is not possible to use one data model definition for one sample rate and another data model definition for a different sample rate. Therefore, a plug-in's AAX modules are defined in its Effect description.
Registering multiple Effects
A single plug-in package may include multiple Effects, which are added in turn in the description method. Once these connections are made, Describe passes the host a populated description interface and returns.
For example, consider an EQ plug-in that contains both one-band and four-band variations, each of which the user should see as a distinct plug-in. These Effects would be described and added separately to the collection object and would appear as separate products to the user.
{
{
result = outCollection -> AddEffect ( kEffectID_MyOneBandEQ , aDesc1 );
}
{
result = outCollection -> AddEffect ( kEffectID_MyFourBandEQ , aDesc4 );
}
{
outCollection -> SetManufacturerName ( "My Plug -Ins , Inc." );
outCollection -> AddPackageName ( " MyEQ Plug -In" );
outCollection -> AddPackageName ( " MyQ" );
outCollection -> SetPackageVersion ( 1 );
}
return result ;
}
Registering multiple Effects in a single Collection
Lowest level: Algorithm components
In order to register an algorithm component, a plug-in must describe the component's external interface. This includes each of the component's ports and any other fields in its context structure, a reference to its processing function entrypoint (its "Process Procedure", or ProcessProc,) and any other special properties that the host should know about.
The description of a context structure involves a set of port definitions, which can be "hard-wired" to receive data from the host (such as audio buffers), from the plug-in's data model (such as packets of coefficients), or even from past calls to the algorithm (private, persistent algorithm state). See
Real-time algorithm callback for more information on an algorithm's context structure.
{
.
.
.
err = outDesc->AddField ( eAlgFieldID_AudioIn, kAAX_FieldTypeAudioIn );
AAX_ASSERT(err == 0);
err = outDesc->AddField ( eAlgFieldID_AudioOut, kAAX_FieldTypeAudioOut );
AAX_ASSERT (err == 0);
err = outDesc->AddField ( eAlgFieldID_BufferSize, kAAX_FieldTypeAudioBufferLength );
AAX_ASSERT (err == 0);
.
.
.
}
Algorithm callback properties
A set of callback properties is required when adding a Process Procedure to an algorithm component. This is done via the
AAX_IPropertyMap interface. Using distinct property maps, a single component may register multiple versions of its callback. For example, an audio processing component might register mono and stereo callbacks, or Native and TI callbacks, assigning each the applicable property mapping. This allows the host to determine the correct callback to use depending on the environment in which the plug-in is instantiated.
{
.
.
.
properties->Clear ();
err = outDesc->
AddProcessProc_Native ( DemoGain_AlgorithmProcessFunction <1, 1, 1<<kAAX_NativeAudioBufferLength_Default>, properties );
AAX_ASSERT (err == 0);
}
Adding properties to a component description
AAX does not require that every value in
AAX_IPropertyMap be assigned by the developer. However, if a specic value is not assigned to one of an element's properties then the element must support any value for that property. For example, if an audio processing component does not provide any stem format properties then the host will assume that the callback will support any stem format.
Additional Topics
The main plug-in registration method.
This method determines the number of components defined in the dll. The implementation of this method in the AAX library calls the following function, which must be implemented somewhere in your plug-in:
Wrapped by ACFRegisterPlugin()
Referenced by ACFRegisterPlugin().
The plug-in's static Description entrypoint.
This function is responsible for describing an AAX plug-in to the host. It does this by populating an AAX_ICollection interface.
This function must be included in every plug-in that links to the AAX library. It is called when the host first loads the plug-in.
- Parameters
-