AAX SDK 2.8.0
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IACFEffectDirectData.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 *
4 * Copyright 2013-2015, 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
32/*================================================================================================*/
33
34
35#ifndef AAX_IACFEFFECTDIRECTDATA_H
36#define AAX_IACFEFFECTDIRECTDATA_H
37
38#include "AAX.h"
39
40#ifdef __clang__
41#pragma clang diagnostic push
42#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
43#endif
44
45#include "acfunknown.h"
46
47
58{
59public:
60
72 virtual AAX_Result Initialize ( IACFUnknown * iController ) = 0;
79 virtual AAX_Result Uninitialize () = 0;
81
82
115 IACFUnknown * iDataAccessInterface ) = 0;
117};
118
119
121public:
150 virtual AAX_Result NotificationReceived( /* AAX_ENotificationEvent */ AAX_CTypeID inNotificationType, const void * inNotificationData, uint32_t inNotificationDataSize) = 0;
152
153};
154
155#ifdef __clang__
156#pragma clang diagnostic pop
157#endif
158
159#endif //AAX_IACFEFFECTDIRECTDATA_H
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:347
uint32_t AAX_CTypeID
Matches type of OSType used in classic plugins.
Definition: AAX.h:346
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:265
Optional interface for direct access to a plug-in's alg memory.
Definition: AAX_IACFEffectDirectData.h:58
virtual AAX_Result Uninitialize()=0
Main uninitialization.
virtual AAX_Result Initialize(IACFUnknown *iController)=0
Main initialization.
virtual AAX_Result TimerWakeup(IACFUnknown *iDataAccessInterface)=0
Periodic wakeup callback for idle-time operations.
Definition: AAX_IACFEffectDirectData.h:120
virtual AAX_Result NotificationReceived(AAX_CTypeID inNotificationType, const void *inNotificationData, uint32_t inNotificationDataSize)=0
Notification Hook.