![]() |
AAX SDK
2.4.1
Avid Audio Extensions Development Kit
|
#include <AAX_IACFPrivateDataAccess.h>
Interface for the AAX host's data access functionality.
Public Member Functions | |
virtual AAX_Result | ReadPortDirect (AAX_CFieldIndex inFieldIndex, const uint32_t inOffset, const uint32_t inSize, void *outBuffer)=0 |
Read data directly from DSP at the given port. More... | |
virtual AAX_Result | WritePortDirect (AAX_CFieldIndex inFieldIndex, const uint32_t inOffset, const uint32_t inSize, const void *inBuffer)=0 |
Write data directly to DSP at the given port. More... | |
![]() | |
virtual BEGIN_ACFINTERFACE ACFRESULT ACFMETHODCALLTYPE | QueryInterface (const acfIID &iid, void **ppOut)=0 |
Returns pointers to supported interfaces. More... | |
virtual acfUInt32 ACFMETHODCALLTYPE | AddRef (void)=0 |
Increments reference count. More... | |
virtual acfUInt32 ACFMETHODCALLTYPE | Release (void)=0 |
Decrements reference count. More... | |
|
pure virtual |
Read data directly from DSP at the given port.
[in] | inFieldIndex | The port to read from. |
[in] | inOffset | Offset into data to start reading. |
[in] | inSize | Amount of data to read (in bytes). |
[out] | outBuffer | Pointer to storage for data to be read into. |
|
pure virtual |
Write data directly to DSP at the given port.
[in] | inFieldIndex | The port to write to. |
[in] | inOffset | Offset into data to begin writing. |
[in] | inSize | Amount of data to write (in bytes). |
[in] | inBuffer | Pointer to data being written. |