AAX SDK  2.4.1
Avid Audio Extensions Development Kit
AAX_IACFHostProcessorDelegate.h
Go to the documentation of this file.
1 /*================================================================================================*/
2 /*
3  *
4  * Copyright 2013-2017 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 Technology, 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 inAudioIns [], int32_t inAudioInCount, int64_t inLocation, int32_t * ioNumSamples ) = 0;
42  virtual int32_t GetSideChainInputNum () = 0;
43 };
44 
45 
49 {
50 public:
51  virtual AAX_Result ForceAnalyze () = 0;
52 };
53 
57 {
58 public:
59  virtual AAX_Result ForceProcess () = 0;
60 };
61 
62 #ifdef __clang__
63 #pragma clang diagnostic pop
64 #endif
65 
66 #endif // #ifndef AAX_IACFHOSTPROCESSORDELEGATE_H
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:337
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:248
Versioned interface for host methods specific to offline processing.
Definition: AAX_IACFHostProcessorDelegate.h:39
virtual AAX_Result GetAudio(const float *const inAudioIns[], int32_t inAudioInCount, int64_t inLocation, int32_t *ioNumSamples)=0
CALL: Randomly access audio from the timeline.
virtual int32_t GetSideChainInputNum()=0
CALL: Returns the index of the side chain input buffer.
Versioned interface for host methods specific to offline processing.
Definition: AAX_IACFHostProcessorDelegate.h:49
virtual AAX_Result ForceAnalyze()=0
CALL: Request an analysis pass.
Versioned interface for host methods specific to offline processing.
Definition: AAX_IACFHostProcessorDelegate.h:57
virtual AAX_Result ForceProcess()=0
CALL: Request a process pass.