AAX SDK  2.1.1
Avid Audio Extensions Development Kit
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AAX_VPrivateDataAccess.h
Go to the documentation of this file.
1 // **************************************************************************************
2 // FILE: AAX_VPrivateDataAccess.h
3 //
4 // Copyright(C) 2011 Avid Technology, Inc.
5 // All rights reserved
6 //
7 // CONFIDENTIAL: This document contains confidential information.
8 // Do not disclose any information contained in this document to any
9 // third-party without the prior written consent of Avid Technology, Inc.
10 //
11 // **************************************************************************************
12 #ifndef AAX_VPRIVATEDATAACCESS_H
13 #define AAX_VPRIVATEDATAACCESS_H
14 
15 #include "AAX_IPrivateDataAccess.h"
17 #include "ACFPtr.h"
18 
19 
20 class IACFUnknown;
21 
27 {
28 public:
30  virtual ~AAX_VPrivateDataAccess();
31 
32  // Direct access methods
33  virtual AAX_Result ReadPortDirect( AAX_CFieldIndex inFieldIndex, const uint32_t inOffset, const uint32_t inSize, void* outBuffer );
34  virtual AAX_Result WritePortDirect( AAX_CFieldIndex inFieldIndex, const uint32_t inOffset, const uint32_t inSize, const void* inBuffer );
35 
36 
37 private:
38  AAX_IACFPrivateDataAccess* mIPrivateDataAccess;
39 };
40 
41 
42 #endif //AAX_VPRIVATEDATAACCESS_H
43 
virtual ~AAX_VPrivateDataAccess()
AAX_VPrivateDataAccess(IACFUnknown *pUnknown)
virtual AAX_Result WritePortDirect(AAX_CFieldIndex inFieldIndex, const uint32_t inOffset, const uint32_t inSize, const void *inBuffer)
Write data directly to DSP at the given port.
virtual AAX_Result ReadPortDirect(AAX_CFieldIndex inFieldIndex, const uint32_t inOffset, const uint32_t inSize, void *outBuffer)
Read data directly from DSP at the given port.
Interface for the AAX host's data access functionality.
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.dox:231
Interface to data access provided by host to plug-in.
Definition: AAX_IPrivateDataAccess.h:45
int32_t AAX_Result
Definition: AAX.h:118
Interface to data access provided by host to plug-in.
Interface for the AAX host's data access functionality.
Definition: AAX_IACFPrivateDataAccess.h:42
AAX_CIndex AAX_CFieldIndex
Not used by AAX plug-ins (except in AAX_FIELD_INDEX macro)
Definition: AAX.h:125
Version-managed concrete AAX_IPrivateDataAccess class.
Definition: AAX_VPrivateDataAccess.h:26