AAX SDK  2.1.1
Avid Audio Extensions Development Kit
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AAX_IACFHostProcessorDelegate.h
Go to the documentation of this file.
1 /*================================================================================================*/
2 /*
3  *
4  * Copyright 2013 by 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 Technolgy, INC.
13  *
14  */
15 
20 /*================================================================================================*/
21 
22 
23 #ifndef AAX_IACFHOSTPROCESSORDELEGATE_H
24 #define AAX_IACFHOSTPROCESSORDELEGATE_H
25 
26 #include "AAX.h"
27 
28 #ifdef __clang__
29 #pragma clang diagnostic push
30 #pragma clang diagnostic ignored "-Wnon-virtual-dtor"
31 #endif
32 
33 #include "acfunknown.h"
34 
35 
39 {
40 public:
41  virtual AAX_Result GetAudio ( const float * const iAudioIns [], int32_t iAudioInCount, int64_t iLocation, int32_t * ioNumSamples ) = 0;
42  virtual int32_t GetSideChainInputNum () = 0;
43 };
44 
45 
49 {
50 public:
51  virtual AAX_Result ForceAnalyze () = 0;
52 };
53 
54 #ifdef __clang__
55 #pragma clang diagnostic pop
56 #endif
57 
58 #endif // #ifndef AAX_IACFHOSTPROCESSORDELEGATE_H
Various utility definitions for AAX.
Versioned interface for for retrieving offline processing information from the host.
Definition: AAX_IACFHostProcessorDelegate.h:48
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.dox:231
virtual int32_t GetSideChainInputNum()=0
CALL: Returns the index of the side chain input buffer.
int32_t AAX_Result
Definition: AAX.h:118
virtual AAX_Result ForceAnalyze()=0
CALL: Trigger an analysis pass.
Versioned interface for for retrieving offline processing information from the host.
Definition: AAX_IACFHostProcessorDelegate.h:38
virtual AAX_Result GetAudio(const float *const iAudioIns[], int32_t iAudioInCount, int64_t iLocation, int32_t *ioNumSamples)=0
CALL: Randomly access audio from the timeline.