forked from osxmidi/LinVst
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremoteplugin.h
More file actions
83 lines (65 loc) · 1.8 KB
/
remoteplugin.h
File metadata and controls
83 lines (65 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* dssi-vst: a DSSI plugin wrapper for VST effects and instruments
Copyright 2004-2007 Chris Cannam
*/
#ifndef REMOTE_PLUGIN_H
#define REMOTE_PLUGIN_H
#define FIXED_SHM_SIZE (16 * 65536 * sizeof(float))
#define FIXED_SHM_SIZE2 (1024 * 128)
#define FIXED_SHM_SIZE3 (1024 * 128)
#define VSTSIZE 2048
const float RemotePluginVersion = 0.986;
enum RemotePluginDebugLevel
{
RemotePluginDebugNone,
RemotePluginDebugSetup,
RemotePluginDebugEvents,
RemotePluginDebugData
};
enum RemotePluginOpcode
{
RemotePluginGetVersion = 0,
RemotePluginUniqueID,
RemotePluginGetName,
RemotePluginGetMaker,
RemotePluginGetFlags,
RemotePluginGetinitialDelay,
RemotePluginProcessEvents,
RemotePluginGetChunk,
RemotePluginSetChunk,
RemotePluginCanBeAutomated,
RemotePluginGetProgram,
RemotePluginEffectOpen,
// RemotePluginGetUniqueID,
// RemotePluginGetInitialDelay,
RemotePluginSetBufferSize = 100,
RemotePluginSetSampleRate,
RemotePluginReset,
RemotePluginTerminate,
RemotePluginGetInputCount = 200,
RemotePluginGetOutputCount,
RemotePluginGetParameterCount = 300,
RemotePluginGetParameterName,
RemotePluginSetParameter,
RemotePluginGetParameter,
RemotePluginGetParameterDefault,
RemotePluginGetParameters,
RemotePluginGetProgramCount = 350,
RemotePluginGetProgramNameIndexed,
RemotePluginGetProgramName,
RemotePluginSetCurrentProgram,
RemotePluginProcess = 500,
RemotePluginIsReady,
RemotePluginSetDebugLevel = 600,
RemotePluginWarn,
RemotePluginShowGUI = 700,
RemotePluginHideGUI,
#ifdef EMBED
RemotePluginOpenGUI,
#endif
RemotePluginGetEffInt = 800,
RemotePluginGetEffString,
RemotePluginDoVoid,
RemotePluginDoVoid2,
RemotePluginNoOpcode = 9999
};
#endif