2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
31
32
43
44
45
46#define VST_FUNCTION_INTERFACE __cdecl
49
50#define VST_MAX_CHANNELS 32
53
54#define VST_FOURCC(a,b,c,d) ((((uint32_t)a) << 24
) | (((uint32_t)b) << 16
) | (((uint32_t)c) << 8
) | (((uint32_t)d) << 0
))
57
60
61
62
63
64
74
75
76
77
78
88
89
90
91
92
101
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
150
151
160
161
164
165
166
172
173
174
180
181
182
188
189
190
196
197
198
204
205
206
212
213
214
223
224
225
228
229
230
231
232
233
237
238
239
240
241
242
243
247
248
249
250
251
252
253
257
258
259
263
264
265
269
270
271
272
276
277
278
279
283
284
285
286
290
291
292
293
297
298
299
300
304
305
306
307
308
309
313
314
315
316
317
323
324
325
326
393
394
395
396
400
401
402
403
407
408
409
410
416
417
418
419
423
424
425
426
427
428
436
437
438
442
446
450
454
458
459
460
464
465
466
470
471
472
487
491
492
493
498
499
500
507
511
512
516
517
521
534
535
536
539
540
541
542
543
544
545
553
554
555
561
562
563
564
565
571
572
573
603
604
605
606
607
608
609
610
611
653
654
655
661
662
663
669
670
671
677
678
686
687
688
689
701
702
708
709
710
716
717
718
735
736
737
738
739
742
743
744
745
746
747
748
749
753
754
755
756
757
758
759
760
761
765
766
767
768
769
770
771
772
773
790} vst_host_supports = {
808
809
810
811
812
813
814
822
823
824
828
829
830
831
832#define VST_DEFAULT_SAMPLE_RATE 44100.0f
835
836
837
838
839#define VST_DEFAULT_BLOCK_SIZE 1024
842
843
844
845
850
851
852
853
859
860
861
862
868
869
870
871
872
878
879
880
881
887
888
889
890
896
897
898
899
907
908
909
910
911
917
918
919
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1007
1008
1009
1010
1011
1012
1013
1019 VST_EFFECT_CATEGORY_MAX,
1022 _VST_EFFECT_CATEGORY_PAD = 0xFFFFFFFFul,
1026
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1056
1057
1058
1059
1060
1066
1067
1068
1069
1070
1079
1080
1081
1082
1088
1089
1090
1091
1092
1101
1102
1103
1104
1105
1106
1113
1114
1117
1118
1119
1127
1128
1129
1130
1131
1137
1138
1139
1147
1148
1149
1157
1158
1159
1167
1168
1169
1177
1178
1179
1180
1181
1191
1192
1193
1194
1195
1207
1208
1209
1210
1211
1221
1222
1223
1227
1228
1229
1237
1238
1239
1247
1248
1249
1250
1251
1252
1253
1263
1264
1265
1266
1267
1277
1278
1279
1280
1288
1289
1290
1298
1299
1300
1301
1302
1303
1304
1305
1306
1314
1315
1316
1317
1318
1319
1320
1321
1322
1330
1331
1332
1333
1334
1335
1336
1337
1338
1346
1347
1348
1354
1355
1356
1357
1358
1359
1360
1364
1365
1366
1367
1368
1369
1370
1374
1375
1376
1377
1378
1384
1385
1386
1387
1388
1389
1390
1391
1392
1398
1399
1400
1401
1402
1403
1404
1405
1406
1416
1417
1418
1419
1423
1424
1425
1426
1427
1437
1438
1439
1440
1441
1442
1450
1451
1452
1453
1457
1458
1459
1460
1464
1465
1466
1467
1471
1472
1473
1474
1478
1479
1480
1481
1485
1486
1487
1488
1489
1490
1496
1497
1498
1499
1500
1501
1507
1508
1509
1510
1518
1519
1520
1521
1525
1526
1527
1528
1532
1533
1534
1535
1539
1540
1541
1542
1546
1547
1548
1549
1553
1554
1555
1556
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1576
1577
1578
1582
1583
1584
1585
1586
1587
1593
1594
1595
1596
1597
1598
1608
1609
1610
1611
1612
1613
1614
1620
1621
1622
1623
1631
1632
1633
1634
1642
1643
1644
1645
1653
1654
1655
1656
1657
1658
1664
1665
1666
1667
1668
1669
1675
1676
1677
1678
1679
1687
1688
1689
1690
1691
1692
1698
1699
1700
1701
1702
1706
1707
1708
1709
1710
1714
1715
1716
1717
1718
1719
1727
1728
1729
1730
1734
1735
1736
1737
1738
1748
1749
1750
1751
1752
1753
1754
1760
1761
1762
1763
1764
1765
1766
1772
1773
1774
1775
1779
1780
1781
1782
1786
1787
1788
1789
1793
1794
1795
1796
1800
1801
1802
1803
1807
1808
1809
1810
1814
1815
1816
1817
1818
1824
1825
1826
1827
1828
1838
1839
1840
1841
1842
1843
1849
1850
1851
1852
1853
1854
1855
1856
1862
1863
1864
1865
1871
1872
1873
1874
1880
1881
1882
1883
1887
1888
1889
1890
1891
1892
1896
1897
1898
1899
1900
1901
1902
1908
1909
1910
1911
1912
1913
1914
1924
1925
1926
1927
1931
1932
1933
1934
1938
1939
1940
1941
1945 VST_EFFECT_OPCODE_MAX,
1948 _VST_EFFECT_OPCODE_PAD = 0xFFFFFFFFul,
1952
1953
1954
1955
1956
1959
1960
1961
1962
1963
1964
1965
1993} vst_effect_supports = {
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2035
2036
2037
2038
2039
2040
2041
2042
2046
2047
2048
2049
2050
2054
2055
2056
2057
2058
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2088
2091
2092
2093
2094
2095
2099
2100
2101
2105
2106
2107
2108
2112
2113
2117
2118
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2137
2138
2139
2140
2144
2145
2146
2147
2148
2149
2153
2154
2155
2156
2157
2161
2162
2163
2170
2171
2172
2173
2174
2175
2182
2183
2184
2185
2186
2187
2188
2192
2193
2194
2195
2199
2200
2201
2202
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2219
2220
2221
2229
2230
2231
2239
2240
2241
2249
2250
2251
2252
2253
2254#define VST_ENTRYPOINT
2255 vst_effect_t* VSTPluginMain(vst_host_callback_t callback)
2258
2259
2260
2261
2262
2263#define VST_ENTRYPOINT_WINDOWS
2264 vst_effect_t* MAIN(vst_host_callback_t callback) { return VSTPluginMain(callback); }
2267
2268
2269
2270
2271
2272#define VST_ENTRYPOINT_MACOS
2273 vst_effect_t* main_macho(vst_host_callback_t callback) { return VSTPluginMain(callback); }
2276
2277
2278
2279
2280
2281#define VST_ENTRYPOINT_MACOS_POWERPC
2282 vst_effect_t* main(vst_host_callback_t callback) { return VSTPluginMain(callback); }
Host to Plug-in support checks.
const char * plugAsChannelInsert
const char * sendVstEvents
const char * conformsToWindowRules
const char * receiveVstEvents
const char * receiveVstTimeInfo
const char * bypass
Effect supports alternative bypass.
const char * midiProgramNames
const char * receiveVstMidiEvent
const char * sendVstMidiEvent
Plug-in Effect definition.
int32_t num_outputs
Number of available output streams.
int32_t magic_number
VST Magic Number.
vst_effect_process_double_t process_double
Process function for in-place double (64-bit float) processiong.
int32_t unique_id
Id of the plugin.
vst_effect_process_t process
Process Function.
int32_t flags
Effect Flags.
float input_output_ratio
Ratio of Input to Output production Defines how much output data is produced relative to input data w...
int32_t num_programs
Number of available pre-defined programs.
vst_effect_process_float_t process_float
Process function for in-place single (32-bit float) processiong.
int32_t version
Plugin version.
void * host_internal
Host Internal Pointer.
vst_effect_set_parameter_t set_parameter
Set Parameter Function.
int32_t num_params
Number of available parameters.
void * effect_internal
Effect Internal Pointer.
vst_effect_get_parameter_t get_parameter
Get Parameter Function.
int32_t delay
Initial delay before processing of samples can actually begin in Samples.
int32_t num_inputs
Number of available input streams.
vst_effect_control_t control
Control Function.
Plug-in to Host support checks.
const char * acceptIOChanges
Does the host support modifying input/output/params/delay when programs, banks or parameters are chan...
const char * openFileSelector
const char * receiveVstMidiEvent
const char * sendVstEvents
const char * sendVstMidiEventFlagIsRealtime
const char * reportConnectionChanges
const char * startStopProcess
Is the host using process begin/end instead of idle? The host may opt to emit VST_EFFECT_OPCODE_IDLE ...
const char * sendVstMidiEvent
const char * receiveVstEvents
const char * closeFileSelector
const char * sendVstTimeInfo
const char * shellCategory
Does the host support container plug-ins?
Information about a parameter.
char label[VST_BUFFER_SIZE_PARAM_LABEL]
Short Human-readable label for this parameter.
char category_label[VST_BUFFER_SIZE_CATEGORY_LABEL]
Human-readable name for the category this parameter is in.
uint32_t flags
Parameter Flags.
uint16_t category
Category index.
int32_t max_value_i32
Maximum Integer value.
char name[VST_BUFFER_SIZE_PARAM_LONG_NAME]
Human-readable name for this parameter.
float step_f32
Float Step value.
float step_large_f32
Float large step value This is used for "huge" changes.
int32_t step_i32
Integer Step value.
uint16_t index
Display order index.
int32_t min_value_i32
Minimum Integer value.
float step_small_f32
Float small step value This is used for "tiny" changes.
uint16_t num_parameters_in_category
How many parameters are in this category? This allows the plug-in to specify the same category multip...
struct vst_speaker_properties_t speakers[VST_MAX_CHANNELS]
int32_t type
The type of the speaker.
float azimuth
Azimuth in Radians Range: -PI (Left) through 0.0 (Right) to PI (Left)
float distance
Distance in Meters range: 0 to +-Infinity.
float altitude
Altitude in Radians Range: -PI/2 (Bottom) to PI/2 (Top)
char name[VST_BUFFER_SIZE_SPEAKER_NAME]
Human readable name for this speaker.
int32_t type
Stream arrangement (optional) See VST_SPEAKER_ARRANGEMENT_TYPE.
int32_t flags
Stream flags Any combination of VST_STREAM_FLAG.
char label[VST_BUFFER_SIZE_STREAM_LABEL]
Human-readable label for this stream.
char name[VST_BUFFER_SIZE_STREAM_NAME]
Human-readable name for this stream.
VST_SPEAKER_ARRANGEMENT_TYPE
@ VST_SPEAKER_ARRANGEMENT_TYPE_7_1
7.1 (Full Surround)
@ VST_SPEAKER_ARRANGEMENT_TYPE_UNKNOWN
Unknown/Empty speaker layout.
@ _VST_SPEAKER_ARRANGEMENT_TYPE_PAD
@ VST_SPEAKER_ARRANGEMENT_TYPE_5_1
5.1 (Old Surround)
@ VST_SPEAKER_ARRANGEMENT_TYPE_CUSTOM
Custom speaker arrangement.
@ VST_SPEAKER_ARRANGEMENT_TYPE_MONO
Mono.
@ VST_SPEAKER_ARRANGEMENT_TYPE_STEREO
Stereo.
@ VST_SPEAKER_ARRANGEMENT_TYPE_5_0
5.0 (Old Surround)
@ VST_SPEAKER_ARRANGEMENT_TYPE_4_0
Quadraphonic.
#define VST_FOURCC(a, b, c, d)
Convert four numbers into a FourCC.
VST_VERSION
Valid VST 1.x and 2.x versions The format is either a single digit or four digits in Base10 format.
void(VST_FUNCTION_INTERFACE * vst_effect_process_t)(struct vst_effect_t *self, const float *const *inputs, float **outputs, int32_t samples)
Process the given number of samples in inputs and outputs.
#define VST_MAX_CHANNELS
Maximum number of channels/streams/inputs/outputs supported by VST 2.x.
void(VST_FUNCTION_INTERFACE * vst_effect_set_parameter_t)(struct vst_effect_t *self, uint32_t index, float value)
Updates the value for the parameter at the given index, or does nothing if out of bounds.
VST_HOST_OPCODE
Plug-in to Host Op-Codes These Op-Codes are emitted by the plug-in and the host may handle them or re...
@ VST_HOST_OPCODE_EDITOR_UPDATE
@ VST_HOST_OPCODE_CURRENT_EFFECT_ID
@ VST_HOST_OPCODE_PARAM_START_EDIT
@ VST_HOST_OPCODE_PARAM_STOP_EDIT
@ VST_HOST_OPCODE_IO_MODIFIED
@ VST_HOST_OPCODE_KEEPALIVE_OR_IDLE
@ VST_HOST_OPCODE_2B
Notify host that a parameter is being edited.
@ VST_HOST_OPCODE_23
Retrieve the vendor version in return value.
@ VST_HOST_OPCODE_24
User defined OP Code, for custom interaction.
@ VST_HOST_OPCODE_01
Retrieve the Hosts VST Version.
@ VST_HOST_OPCODE_AUTOMATE
@ VST_HOST_OPCODE_26
Check if the host supports a certain feature.
@ VST_HOST_OPCODE_2C
Notify host that parameter is no longer being edited.
@ VST_HOST_OPCODE_0E
Notify the host that numInputs/numOutputs/delay/numParams has changed.
@ VST_HOST_OPCODE_00
Update automation for a given Parameter.
@ VST_HOST_OPCODE_03
Some sort of idle keep-alive?
@ VST_HOST_OPCODE_PRODUCT_NAME
@ VST_HOST_OPCODE_2A
Request an update of the editor window.
@ VST_HOST_OPCODE_02
Get the currently selected effect id in container plug-ins.
@ VST_HOST_OPCODE_VENDOR_VERSION
@ VST_HOST_OPCODE_VENDOR_NAME
@ VST_HOST_OPCODE_22
Retrieve the product name into the ptr buffer.
@ VST_HOST_OPCODE_21
Retrieve the vendor name into the ptr buffer.
@ VST_HOST_OPCODE_VST_VERSION
@ VST_HOST_OPCODE_SUPPORTS
@ VST_HOST_OPCODE_PARAM_UPDATE
void(VST_FUNCTION_INTERFACE * vst_effect_process_double_t)(struct vst_effect_t *self, const double *const *inputs, double **outputs, int32_t samples)
Process the given number of double samples in inputs and outputs.
VST_STATUS
Known Status Codes.
@ VST_STATUS_0
Unknown / False We either don't know the answer or we can't handle the data/notification.
@ VST_STATUS_m1
No We're unable to handle the data/notification.
@ VST_STATUS_1
Yes / True We've handled the data/notification.
@ VST_SPEAKER_TYPE_RIGHT_REAR
@ VST_SPEAKER_TYPE_CENTER
@ VST_SPEAKER_TYPE_USER_09
@ VST_SPEAKER_TYPE_USER_25
@ VST_SPEAKER_TYPE_USER_04
@ VST_SPEAKER_TYPE_USER_11
@ VST_SPEAKER_TYPE_USER_10
@ VST_SPEAKER_TYPE_USER_12
@ VST_SPEAKER_TYPE_USER_30
@ VST_SPEAKER_TYPE_USER_32
@ VST_SPEAKER_TYPE_USER_20
@ VST_SPEAKER_TYPE_USER_15
@ VST_SPEAKER_TYPE_RIGHT_SIDE
@ VST_SPEAKER_TYPE_LEFT_SIDE
@ VST_SPEAKER_TYPE_USER_13
@ VST_SPEAKER_TYPE_USER_02
@ VST_SPEAKER_TYPE_USER_23
@ VST_SPEAKER_TYPE_USER_28
@ VST_SPEAKER_TYPE_USER_05
@ VST_SPEAKER_TYPE_USER_01
@ VST_SPEAKER_TYPE_USER_07
@ VST_SPEAKER_TYPE_USER_27
@ VST_SPEAKER_TYPE_USER_18
@ VST_SPEAKER_TYPE_USER_29
@ VST_SPEAKER_TYPE_USER_21
@ VST_SPEAKER_TYPE_USER_06
@ VST_SPEAKER_TYPE_USER_26
@ VST_SPEAKER_TYPE_USER_19
@ VST_SPEAKER_TYPE_USER_31
@ VST_SPEAKER_TYPE_USER_24
@ VST_SPEAKER_TYPE_USER_22
@ VST_SPEAKER_TYPE_USER_17
@ VST_SPEAKER_TYPE_USER_08
@ VST_SPEAKER_TYPE_LEFT_REAR
@ VST_SPEAKER_TYPE_USER_14
@ VST_SPEAKER_TYPE_USER_16
@ VST_SPEAKER_TYPE_USER_03
VST_EFFECT_CATEGORY
Plug-in Categories Pre-defined category grouping that also affect host behavior when handling the plu...
@ VST_EFFECT_CATEGORY_0A
Container Plug-in This plug-in contains multiple effects in one and requires special handling on both...
@ VST_EFFECT_CATEGORY_EFFECT
@ VST_EFFECT_CATEGORY_02
Instruments Examples: Instruments, Synths, Samplers, ...
@ VST_EFFECT_CATEGORY_METERING
@ VST_EFFECT_CATEGORY_01
Generic Effects Examples: Distortion, Pitch Shift, ...
@ VST_EFFECT_CATEGORY_08
Restoration Examples: Noise Filtering, Upsamplers, ...
@ VST_EFFECT_CATEGORY_WAVEGENERATOR
@ VST_EFFECT_CATEGORY_09
Offline Processing Examples: Nothing Supports: Nothing
@ VST_EFFECT_CATEGORY_SPATIAL
@ VST_EFFECT_CATEGORY_06
Delay/Echo Examples: Echo, Reverb, Room Simulation, Delay, ...
@ VST_EFFECT_CATEGORY_OFFLINE
@ VST_EFFECT_CATEGORY_0B
Waveform Generators Examples: Sine Wave Generator, ... Supports: Delay, Tail Samples
@ VST_EFFECT_CATEGORY_05
Spatializers Examples: Channel Panning, Expanders, ...
@ VST_EFFECT_CATEGORY_MASTERING
@ VST_EFFECT_CATEGORY_RESTORATION
@ VST_EFFECT_CATEGORY_UNCATEGORIZED
@ VST_EFFECT_CATEGORY_03
Metering Examples: Loudness Meters, Volume Analysis, ...
@ VST_EFFECT_CATEGORY_INSTRUMENT
@ VST_EFFECT_CATEGORY_DELAY_OR_ECHO
@ VST_EFFECT_CATEGORY_04
Mastering Examples: Compressors, Limiters, ...
@ VST_EFFECT_CATEGORY_CONTAINER
VST_EFFECT_FLAG
Effect Flags.
@ VST_EFFECT_FLAG_SILENT_TAIL
@ VST_EFFECT_FLAG_1ls9
Effect does not produce tail samples when the input is silent.
@ VST_EFFECT_FLAG_1ls4
Effect uses process_float.
@ VST_EFFECT_FLAG_1ls5
Effect supports saving/loading programs/banks from unformatted chunk data.
@ VST_EFFECT_FLAG_SUPPORTS_FLOAT
@ VST_EFFECT_FLAG_1ls0
Effect provides a custom editor.
@ VST_EFFECT_FLAG_INSTRUMENT
@ VST_EFFECT_FLAG_1ls12
Effect supports process_double.
@ VST_EFFECT_FLAG_1ls8
Effect is an Instrument/Generator.
@ VST_EFFECT_FLAG_SUPPORTS_DOUBLE
VST_BUFFER_SIZE
Known Buffer Sizes.
@ VST_BUFFER_SIZE_SPEAKER_NAME
@ VST_BUFFER_SIZE_STREAM_NAME
@ VST_BUFFER_SIZE_PARAM_VALUE
@ VST_BUFFER_SIZE_STREAM_LABEL
@ VST_BUFFER_SIZE_PARAM_LABEL
@ VST_BUFFER_SIZE_VENDOR_NAME
@ VST_BUFFER_SIZE_PARAM_NAME
@ VST_BUFFER_SIZE_PROGRAM_NAME
@ VST_BUFFER_SIZE_CATEGORY_LABEL
@ VST_BUFFER_SIZE_EFFECT_NAME
@ VST_BUFFER_SIZE_PARAM_LONG_NAME
@ VST_BUFFER_SIZE_PRODUCT_NAME
void(VST_FUNCTION_INTERFACE * vst_effect_process_float_t)(struct vst_effect_t *self, const float *const *inputs, float **outputs, int32_t samples)
Process the given number of single samples in inputs and outputs.
VST_PARAMETER_FLAG
Flags for parameters.
@ VST_PARAMETER_FLAG_SWITCH
@ VST_PARAMETER_FLAG_1ls6
Parameter can be gradually increased/decreased.
@ VST_PARAMETER_FLAG_1ls5
Parameter has a category for the default editor.
@ VST_PARAMETER_FLAG_1ls4
Parameter has an display order index for the default editor.
@ VST_PARAMETER_FLAG_1ls2
Parameter uses float steps.
@ VST_PARAMETER_FLAG_INTEGER_LIMITS
@ VST_PARAMETER_FLAG_STEP_FLOAT
@ VST_PARAMETER_FLAG_INDEX
@ VST_PARAMETER_FLAG_CATEGORY
@ VST_PARAMETER_FLAG_RAMPING
@ VST_PARAMETER_FLAG_1ls3
Parameter uses integer steps.
@ VST_PARAMETER_FLAG_1ls0
Parameter is an on/off switch.
@ VST_PARAMETER_FLAG_STEP_INT
@ VST_PARAMETER_FLAG_1ls1
Parameter limits are set as integers.
@ _VST_PARAMETER_FLAG_PAD
#define VST_FUNCTION_INTERFACE
Standard calling convention across plug-ins and hosts.
VST_EFFECT_OPCODE
Host to Plug-in Op-Codes These Op-Codes are emitted by the host and we must either handle them or ret...
@ VST_EFFECT_OPCODE_WINDOW_MOUSE
@ VST_EFFECT_OPCODE_2A
Host wants to change the speaker arrangement.
@ VST_EFFECT_OPCODE_GETVENDORVERSION
@ VST_EFFECT_OPCODE_20
Input disconnected.
@ VST_EFFECT_OPCODE_14
Window Focus Event?
@ VST_EFFECT_OPCODE_PARAM_VALUE_TO_STRING
@ VST_EFFECT_OPCODE_PARAM_GETLABEL
@ VST_EFFECT_OPCODE_43
Host is starting to set up a program.
@ VST_EFFECT_OPCODE_3E
Midi related.
@ VST_EFFECT_OPCODE_32
User-defined Op-Code for VST extensions.
@ VST_EFFECT_OPCODE_03
Get currently selected program number.
@ VST_EFFECT_OPCODE_SET_CHUNK_DATA
@ VST_EFFECT_OPCODE_21
Retrieve properties for the given input index.
@ VST_EFFECT_OPCODE_PRODUCT_NAME
@ VST_EFFECT_OPCODE_4B
Host wants to know if we can load the provided bank data.
@ VST_EFFECT_OPCODE_PARAM_NAME
@ VST_EFFECT_OPCODE_41
Midi related.
@ VST_EFFECT_OPCODE_SET_SAMPLE_RATE
@ VST_EFFECT_OPCODE_CREATE
@ VST_EFFECT_OPCODE_EDITOR_GET_RECT
@ VST_EFFECT_OPCODE_SET_SPEAKER_ARRANGEMENT
@ VST_EFFECT_OPCODE_PARAM_GETVALUE
@ VST_EFFECT_OPCODE_PROGRAM_SET_NAME
@ VST_EFFECT_OPCODE_06
Get the value? label for the parameter.
@ VST_EFFECT_OPCODE_0A
Set the new sample rate for the plugin to use.
@ VST_EFFECT_OPCODE_10
Window Draw Event?
@ VST_EFFECT_OPCODE_2F
Retrieve the vendor name into the ptr buffer.
@ VST_EFFECT_OPCODE_PROGRAM_GET
@ VST_EFFECT_OPCODE_28
Seen in plug-ins with VST_EFFECT_CATEGORY_OFFLINE.
@ VST_EFFECT_OPCODE_01
Destroy the effect (if there is any) and free its memory.
@ VST_EFFECT_OPCODE_3C
Editor Virtual Key Up Event.
@ VST_EFFECT_OPCODE_1B
Set Parameter value from string representation.
@ VST_EFFECT_OPCODE_SET_BLOCK_SIZE
@ VST_EFFECT_OPCODE_33
Test for support of a specific named feature.
@ VST_EFFECT_OPCODE_04
Set the name of the currently selected program.
@ VST_EFFECT_OPCODE_PARAM_GET_NAME
@ VST_EFFECT_OPCODE_BANK_LOAD
@ VST_EFFECT_OPCODE_EDITOR_MOUSE
@ VST_EFFECT_OPCODE_WINDOW_CREATE
@ VST_EFFECT_OPCODE_0B
Sets the block size, which is the maximum number of samples passed into the effect via process calls.
@ VST_EFFECT_OPCODE_PARAM_GET_VALUE
@ VST_EFFECT_OPCODE_05
Get the name of the currently selected program.
@ VST_EFFECT_OPCODE_1A
Can the parameter be automated?
@ VST_EFFECT_OPCODE_19
Appears to be related to midi and audio events.
@ VST_EFFECT_OPCODE_PROGRAM_SET_END
@ VST_EFFECT_OPCODE_GET_PROGRAM
@ VST_EFFECT_OPCODE_12
Window Keyboard Event?
@ VST_EFFECT_OPCODE_42
Midi related.
@ VST_EFFECT_OPCODE_EFFECT_CATEGORY
@ VST_EFFECT_OPCODE_PARAM_IS_AUTOMATABLE
@ VST_EFFECT_OPCODE_WINDOW_DRAW
@ VST_EFFECT_OPCODE_DESTROY
@ VST_EFFECT_OPCODE_SETBLOCKSIZE
@ VST_EFFECT_OPCODE_02
Set which program number is currently select.
@ VST_EFFECT_OPCODE_48
End processing of audio.
@ VST_EFFECT_OPCODE_GETNAME2
@ VST_EFFECT_OPCODE_CUSTOM
@ VST_EFFECT_OPCODE_2E
Translate an error code to a string.
@ VST_EFFECT_OPCODE_EDITOR_KEEP_ALIVE
@ VST_EFFECT_OPCODE_PARAM_PROPERTIES
@ VST_EFFECT_OPCODE_TAIL_SAMPLES
@ VST_EFFECT_OPCODE_30
Retrieve the product name into the ptr buffer.
@ VST_EFFECT_OPCODE_PARAM_VALUE
@ VST_EFFECT_OPCODE_35
Notify effect that it is idle?
@ VST_EFFECT_OPCODE_PROGRAM_GET_NAME
@ VST_EFFECT_OPCODE_0D
Retrieve the client rect size of the plugins window.
@ VST_EFFECT_OPCODE_PROGRAM_LOAD
@ VST_EFFECT_OPCODE_23
Retrieve category of this effect.
@ VST_EFFECT_OPCODE_VST_VERSION
@ VST_EFFECT_OPCODE_CATEGORY
@ VST_EFFECT_OPCODE_EDITOR_OPEN
@ VST_EFFECT_OPCODE_EDITOR_VKEY_DOWN
@ VST_EFFECT_OPCODE_00
Create/Initialize the effect (if it has not been created already).
@ VST_EFFECT_OPCODE_SUSPEND_RESUME
@ VST_EFFECT_OPCODE_PARAM_LABEL
@ VST_EFFECT_OPCODE_40
Midi related.
@ VST_EFFECT_OPCODE_22
Retrieve properties for the given output index.
@ VST_EFFECT_OPCODE_47
Begin processing of audio.
@ VST_EFFECT_OPCODE_38
Parameter Properties.
@ VST_EFFECT_OPCODE_GET_SPEAKER_ARRANGEMENT
@ VST_EFFECT_OPCODE_0E
Create the window for the plugin.
@ VST_EFFECT_OPCODE_3B
Editor Virtual Key Down Input.
@ VST_EFFECT_OPCODE_BYPASS
@ VST_EFFECT_OPCODE_EDITOR_KEYBOARD
@ VST_EFFECT_OPCODE_INPUT_GET_PROPERTIES
@ VST_EFFECT_OPCODE_VENDOR_NAME
@ VST_EFFECT_OPCODE_PARAM_ISAUTOMATABLE
@ VST_EFFECT_OPCODE_WINDOW_KEYBOARD
@ VST_EFFECT_OPCODE_GET_PROGRAM_NAME
@ VST_EFFECT_OPCODE_17
Get Chunk Data.
@ VST_EFFECT_OPCODE_31
Retrieve the vendor version in return value.
@ VST_EFFECT_OPCODE_2D
Retrieve the effect name into the ptr buffer.
@ VST_EFFECT_OPCODE_07
Get the string representing the value for the parameter.
@ VST_EFFECT_OPCODE_PROCESS_END
@ VST_EFFECT_OPCODE_SET_PROGRAM
@ VST_EFFECT_OPCODE_27
Seen in plug-ins with VST_EFFECT_CATEGORY_OFFLINE.
@ VST_EFFECT_OPCODE_EDITOR_DRAW
@ VST_EFFECT_OPCODE_15
Window Unfocus Event?
@ VST_EFFECT_OPCODE_EDITOR_CLOSE
@ VST_EFFECT_OPCODE_29
Seen in plug-ins with VST_EFFECT_CATEGORY_OFFLINE.
@ VST_EFFECT_OPCODE_3A
Retrieve the VST Version supported.
@ VST_EFFECT_OPCODE_11
Window Mouse Event?
@ VST_EFFECT_OPCODE_PARAM_GET_LABEL
@ VST_EFFECT_OPCODE_SETSAMPLERATE
@ VST_EFFECT_OPCODE_0F
Destroy the plugins window.
@ VST_EFFECT_OPCODE_GET_CHUNK_DATA
@ VST_EFFECT_OPCODE_INITIALIZE
@ VST_EFFECT_OPCODE_GETTAILSAMPLES
@ VST_EFFECT_OPCODE_18
Set Chunk Data.
@ VST_EFFECT_OPCODE_EFFECT_NAME
@ VST_EFFECT_OPCODE_GET_PARAMETER_PROPERTIES
@ VST_EFFECT_OPCODE_PARAM_AUTOMATABLE
@ VST_EFFECT_OPCODE_PARAM_GETNAME
@ VST_EFFECT_OPCODE_08
Get the name for the parameter.
@ VST_EFFECT_OPCODE_13
Window/Editor Idle/Keep-Alive Callback?
@ VST_EFFECT_OPCODE_45
Host wants to know the current speaker arrangement.
@ VST_EFFECT_OPCODE_WINDOW_GETRECT
@ VST_EFFECT_OPCODE_OUTPUT_GET_PROPERTIES
@ VST_EFFECT_OPCODE_PARAM_VALUE_FROM_STRING
@ VST_EFFECT_OPCODE_GETVENDOR
@ VST_EFFECT_OPCODE_PROCESS_BEGIN
@ VST_EFFECT_OPCODE_PAUSE_UNPAUSE
@ VST_EFFECT_OPCODE_4C
Host wants to know if we can load the provided program data.
@ VST_EFFECT_OPCODE_26
Seen in plug-ins with VST_EFFECT_CATEGORY_OFFLINE.
@ VST_EFFECT_OPCODE_CONTAINER_NEXT_EFFECT_ID
@ VST_EFFECT_OPCODE_GETNAME
@ VST_EFFECT_OPCODE_VENDOR_VERSION
@ VST_EFFECT_OPCODE_46
Get the next effect contained in this effect.
@ VST_EFFECT_OPCODE_SET_PROGRAM_NAME
@ VST_EFFECT_OPCODE_FOURCC
@ VST_EFFECT_OPCODE_44
Host is done setting up a program.
@ VST_EFFECT_OPCODE_3F
Midi related.
@ VST_EFFECT_OPCODE_WINDOW_DESTROY
@ VST_EFFECT_OPCODE_EDITOR_VKEY_UP
@ VST_EFFECT_OPCODE_1F
Input connected.
@ VST_EFFECT_OPCODE_34
Number of samples that are at the tail at the end of playback.
@ VST_EFFECT_OPCODE_2C
Enable/Disable bypassing the effect.
@ VST_EFFECT_OPCODE_PROGRAM_SET
@ VST_EFFECT_OPCODE_SUPPORTS
@ VST_EFFECT_OPCODE_PROGRAM_SET_BEGIN
@ VST_EFFECT_OPCODE_TRANSLATE_ERROR
@ VST_EFFECT_OPCODE_EDITOR_RECT
@ VST_EFFECT_OPCODE_PARAM_SET_VALUE
@ VST_EFFECT_OPCODE_SUSPEND
@ VST_EFFECT_OPCODE_0C
Effect processing should be suspended/paused or resumed/unpaused.
@ VST_STREAM_FLAG_1ls2
Stream is defined by VST_SPEAKER_ARRANGEMENT_TYPE.
@ VST_STREAM_FLAG_1ls0
Ignored?
@ VST_STREAM_FLAG_1ls1
Stream is in Stereo.
@ VST_STREAM_FLAG_USE_TYPE
float(VST_FUNCTION_INTERFACE * vst_effect_get_parameter_t)(struct vst_effect_t *self, uint32_t index)
Retrieve the current value of the parameter at the given index, or do nothing if out of bounds.