AAX SDK 2.6.1
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IACFHostProcessorDelegate.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 *
4 * Copyright 2013-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
17/*================================================================================================*/
18
19
20#ifndef AAX_IACFHOSTPROCESSORDELEGATE_H
21#define AAX_IACFHOSTPROCESSORDELEGATE_H
22
23#include "AAX.h"
24
25#ifdef __clang__
26#pragma clang diagnostic push
27#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
28#endif
29
30#include "acfunknown.h"
31
32
36{
37public:
38 virtual AAX_Result GetAudio ( const float * const inAudioIns [], int32_t inAudioInCount, int64_t inLocation, int32_t * ioNumSamples ) = 0;
39 virtual int32_t GetSideChainInputNum () = 0;
40};
41
42
46{
47public:
48 virtual AAX_Result ForceAnalyze () = 0;
49};
50
54{
55public:
56 virtual AAX_Result ForceProcess () = 0;
57};
58
59#ifdef __clang__
60#pragma clang diagnostic pop
61#endif
62
63#endif // #ifndef AAX_IACFHOSTPROCESSORDELEGATE_H
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:334
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:252
Versioned interface for host methods specific to offline processing.
Definition: AAX_IACFHostProcessorDelegate.h:36
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:46
virtual AAX_Result ForceAnalyze()=0
CALL: Request an analysis pass.
Versioned interface for host methods specific to offline processing.
Definition: AAX_IACFHostProcessorDelegate.h:54
virtual AAX_Result ForceProcess()=0
CALL: Request a process pass.