AAX SDK  2.1.1
Avid Audio Extensions Development Kit
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AAX_IPrivateDataAccess.h
Go to the documentation of this file.
1 /*================================================================================================*/
2 /*
3  *
4  * Copyright (c) 2011 Avid Technology, Inc.
5  * All rights reserved.
6  *
7  * CONFIDENTIAL: This document contains confidential information. Do not
8  * read or examine this document unless you are an Avid Technology employee
9  * or have signed a non-disclosure agreement with Avid Technology which protects
10  * the confidentiality of this document. DO NOT DISCLOSE ANY INFORMATION
11  * CONTAINED IN THIS DOCUMENT TO ANY THIRD-PARTY WITHOUT THE PRIOR WRITTEN CONSENT
12  * OF Avid Technology, INC.
13  *
14  */
15 
22 /*================================================================================================*/
23 
24 
25 #ifndef AAX_IPRIVATEDATAACCESS_H
26 #define AAX_IPRIVATEDATAACCESS_H
27 
28 #include "AAX.h"
29 
30 
46 {
47 public:
49 
64  virtual AAX_Result ReadPortDirect( AAX_CFieldIndex iFieldIndex, const uint32_t iOffset, const uint32_t iSize, void* oBuffer ) = 0;
65 
79  virtual AAX_Result WritePortDirect( AAX_CFieldIndex iFieldIndex, const uint32_t iOffset, const uint32_t iSize, const void* iBuffer ) = 0;
80 };
81 
82 #endif //AAX_IPRIVATEDATAACCESS_H
Various utility definitions for AAX.
virtual AAX_Result ReadPortDirect(AAX_CFieldIndex iFieldIndex, const uint32_t iOffset, const uint32_t iSize, void *oBuffer)=0
Read data directly from DSP at the given port.
Interface to data access provided by host to plug-in.
Definition: AAX_IPrivateDataAccess.h:45
int32_t AAX_Result
Definition: AAX.h:118
virtual AAX_Result WritePortDirect(AAX_CFieldIndex iFieldIndex, const uint32_t iOffset, const uint32_t iSize, const void *iBuffer)=0
Write data directly to DSP at the given port.
AAX_CIndex AAX_CFieldIndex
Not used by AAX plug-ins (except in AAX_FIELD_INDEX macro)
Definition: AAX.h:125
virtual ~AAX_IPrivateDataAccess()
Definition: AAX_IPrivateDataAccess.h:48