![]() |
AAX SDK 2.8.0
Avid Audio Extensions Development Kit
|
#include <AAX_IACFPageTableController.h>
Interface for host operations related to the page tables for this plug-in.
Public Member Functions | |
| virtual AAX_Result | CopyTableForEffect (AAX_CPropertyValue inManufacturerID, AAX_CPropertyValue inProductID, AAX_CPropertyValue inPlugInID, uint32_t inTableType, int32_t inTablePageSize, IACFUnknown *oPageTable) const =0 |
| virtual AAX_Result | CopyTableOfLayoutForEffect (const char *inEffectID, const char *inLayoutName, uint32_t inTableType, int32_t inTablePageSize, IACFUnknown *oPageTable) const =0 |
Public Member Functions inherited from IACFUnknown | |
| virtual BEGIN_ACFINTERFACE ACFRESULT ACFMETHODCALLTYPE | QueryInterface (const acfIID &iid, void **ppOut)=0 |
| Returns pointers to supported interfaces. | |
| virtual acfUInt32 ACFMETHODCALLTYPE | AddRef (void)=0 |
| Increments reference count. | |
| virtual acfUInt32 ACFMETHODCALLTYPE | Release (void)=0 |
| Decrements reference count. | |
|
pure virtual |
Copy the current page table data for a particular plug-in type.
The host will reject the copy and return an error if the requested plug-in type is unkown, if inTableType is unknown or if inTablePageSize is not a supported size for the given table type.
The host may also restrict plug-ins to only copying page table data from certain plug-in types, such as plug-ins from the same manufacturer or plug-in types within the same effect.
See Page Table Guide for more information about page tables.
oPageTable is null| [in] | inManufacturerID | Manufacturer ID of the desired plug-in type |
| [in] | inProductID | Product ID of the desired plug-in type |
| [in] | inPlugInID | Type ID of the desired plug-in type (AAX_eProperty_PlugInID_Native, AAX_eProperty_PlugInID_TI) |
| [in] | inTableType | Four-char type identifier for the requested table type (e.g. 'PgTL', 'Av81', etc.) |
| [in] | inTablePageSize | Page size for the requested table. Some tables support multiple page sizes. |
| [out] | oPageTable | The page table object to which the page table data should be copied. oPageTable must support AAX_IACFPageTable |
|
pure virtual |
Copy the current page table data for a particular plug-in effect and page table layout.
The host will reject the copy and return an error if the requested effect ID is unkown or if inLayoutName is not a valid layout name for the page tables registered for the effect.
The host may also restrict plug-ins to only copying page table data from certain effects, such as effects registered within the current AAX plug-in bundle.
See Page Table Guide for more information about page tables.
inEffectID, inLayoutName, or oPageTable is null| [in] | inEffectID | Effect ID for the desired effect. See AAX_ICollection::AddEffect() |
| [in] | inLayoutName | Page table layout name ("name" attribute of the PTLayout XML tag) |
| [in] | inTableType | Four-char type identifier for the requested table type (e.g. 'PgTL', 'Av81', etc.) |
| [in] | inTablePageSize | Page size for the requested table. Some tables support multiple page sizes. |
| [out] | oPageTable | The page table object to which the page table data should be copied. oPageTable must support AAX_IACFPageTable |
1.9.6