AAX SDK 2.6.1
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IHostProcessorDelegate.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 *
4 * Copyright 2014-2017, 2023 Avid Technology, Inc.
5 * All rights reserved.
6 *
7 * CONFIDENTIAL: this document contains confidential information of Avid. Do
8 * not disclose to any third party. Use of the information contained in this
9 * document is subject to an Avid SDK license.
10 *
11 */
12
18/*================================================================================================*/
19
20
21#ifndef AAX_IHOSTPROCESSORDELEGATE_H
22#define AAX_IHOSTPROCESSORDELEGATE_H
23
24#include "AAX.h"
25
38{
39public:
40
42
66 virtual AAX_Result GetAudio ( const float * const inAudioIns [], int32_t inAudioInCount, int64_t inLocation, int32_t * ioNumSamples ) = 0;
73 virtual int32_t GetSideChainInputNum () = 0;
81 virtual AAX_Result ForceAnalyze () = 0;
89 virtual AAX_Result ForceProcess () = 0;
90};
91
92#endif // #ifndef _AAX_IPLUGIN_H_
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:334
Versioned interface for host methods specific to offline processing.
Definition: AAX_IHostProcessorDelegate.h:38
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:41