forked from osxmidi/LinVst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
remoteplugin.h
120 lines (100 loc) · 2.53 KB
/
remoteplugin.h
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* dssi-vst: a DSSI plugin wrapper for VST effects and instruments
Copyright 2004-2007 Chris Cannam
*/
#ifndef REMOTE_PLUGIN_H
#define REMOTE_PLUGIN_H
#ifdef CHUNKBUF
#define CHUNKSIZEMAX 1024 * 1024
#define CHUNKSIZE 1024 * 1024
#else
#define CHUNKSIZEMAX 1024 * 1024 * 2
#endif
#define PROCESSSIZE (1024 * 1024 * 2)
#define FIXED_SHM_SIZE PROCESSSIZE + CHUNKSIZEMAX
#define FIXED_SHM_SIZE2 (1024 * 128)
#define FIXED_SHM_SIZE3 (1024 * 128)
#define FIXED_SHM_SIZECHUNKSTART PROCESSSIZE
#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,
RemotePluginGetParameterDisplay,
RemotePluginGetParameterLabel,
#ifdef WAVES
RemotePluginGetShellName,
#endif
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,
#ifdef DOUBLEP
RemotePluginProcessDouble,
RemoteSetPrecision,
#endif
RemoteInProp,
RemoteOutProp,
#ifdef MIDIEFF
RemoteMidiKey,
RemoteMidiProgName,
RemoteMidiCurProg,
RemoteMidiProgCat,
RemoteMidiProgCh,
RemoteSetSpeaker,
RemoteGetSpeaker,
#endif
#ifdef CANDOEFF
RemotePluginEffCanDo,
#endif
#ifdef CHUNKBUF
RemotePluginGetBuf,
RemotePluginSetBuf,
#endif
RemotePluginNoOpcode = 9999
};
#endif