AAX SDK  2.4.1
Avid Audio Extensions Development Kit
AAX_IHostProcessorDelegate.h
Go to the documentation of this file.
1 /*================================================================================================*/
2 /*
3  *
4  * Copyright 2014-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 
21 /*================================================================================================*/
22 
23 
24 #ifndef AAX_IHOSTPROCESSORDELEGATE_H
25 #define AAX_IHOSTPROCESSORDELEGATE_H
26 
27 #include "AAX.h"
28 
41 {
42 public:
43 
45 
69  virtual AAX_Result GetAudio ( const float * const inAudioIns [], int32_t inAudioInCount, int64_t inLocation, int32_t * ioNumSamples ) = 0;
76  virtual int32_t GetSideChainInputNum () = 0;
84  virtual AAX_Result ForceAnalyze () = 0;
92  virtual AAX_Result ForceProcess () = 0;
93 };
94 
95 #endif // #ifndef _AAX_IPLUGIN_H_
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:337
Versioned interface for host methods specific to offline processing.
Definition: AAX_IHostProcessorDelegate.h:41
virtual AAX_Result ForceProcess()=0
CALL: Request a process pass.
virtual AAX_Result ForceAnalyze()=0
CALL: Request an analysis pass.
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.
virtual ~AAX_IHostProcessorDelegate()
Definition: AAX_IHostProcessorDelegate.h:44