AAX SDK 2.8.0
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-2024 Avid Technology, Inc.
5 * All rights reserved.
6 *
7 * This file is part of the Avid AAX SDK.
8 *
9 * The AAX SDK is subject to commercial or open-source licensing.
10 *
11 * By using the AAX SDK, you agree to the terms of both the Avid AAX SDK License
12 * Agreement and Avid Privacy Policy.
13 *
14 * AAX SDK License: https://developer.avid.com/aax
15 * Privacy Policy: https://www.avid.com/legal/privacy-policy-statement
16 *
17 * Or: You may also use this code under the terms of the GPL v3 (see
18 * www.gnu.org/licenses).
19 *
20 * THE AAX SDK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
21 * EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
22 * DISCLAIMED.
23 *
24 */
25
31/*================================================================================================*/
32
33
34#ifndef AAX_IHOSTPROCESSORDELEGATE_H
35#define AAX_IHOSTPROCESSORDELEGATE_H
36
37#include "AAX.h"
38
51{
52public:
53
55
79 virtual AAX_Result GetAudio ( const float * const inAudioIns [], int32_t inAudioInCount, int64_t inLocation, int32_t * ioNumSamples ) = 0;
86 virtual int32_t GetSideChainInputNum () = 0;
94 virtual AAX_Result ForceAnalyze () = 0;
102 virtual AAX_Result ForceProcess () = 0;
103};
104
105#endif // #ifndef _AAX_IPLUGIN_H_
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:347
Versioned interface for host methods specific to offline processing.
Definition: AAX_IHostProcessorDelegate.h:51
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:54