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
601
602
603
604
605
606
607
608
609
651
652
653
659
660
661
667
668
669
675
676
684
685
686
687
703
704
710
711
712
718
719
720
737
738
739
740
741
744
745
746
747
748
749
750
751
755
756
757
758
759
760
761
762
763
767
768
769
770
771
772
773
774
775
792} vst_host_supports = {
810
811
812
813
814
815
816
824
825
826
830
831
832
833
834#define VST_DEFAULT_SAMPLE_RATE 44100.0f
837
838
839
840
841#define VST_DEFAULT_BLOCK_SIZE 1024
844
845
846
847
852
853
854
855
861
862
863
864
870
871
872
873
874
880
881
882
883
889
890
891
892
898
899
900
901
909
910
911
912
913
919
920
921
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
1002
1003
1009
1010
1011
1012
1013
1014
1015
1021 VST_EFFECT_CATEGORY_MAX,
1024 _VST_EFFECT_CATEGORY_PAD = 0xFFFFFFFFul,
1028
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1058
1059
1060
1061
1062
1068
1069
1070
1071
1072
1081
1082
1083
1084
1090
1091
1092
1093
1094
1103
1104
1105
1106
1107
1108
1115
1116
1119
1120
1121
1129
1130
1131
1132
1133
1139
1140
1141
1149
1150
1151
1159
1160
1161
1169
1170
1171
1179
1180
1181
1182
1183
1193
1194
1195
1196
1197
1209
1210
1211
1212
1213
1223
1224
1225
1229
1230
1231
1239
1240
1241
1249
1250
1251
1252
1253
1254
1255
1265
1266
1267
1268
1269
1279
1280
1281
1282
1290
1291
1292
1300
1301
1302
1303
1304
1305
1306
1307
1308
1316
1317
1318
1319
1320
1321
1322
1323
1324
1332
1333
1334
1335
1336
1337
1338
1339
1340
1348
1349
1350
1356
1357
1358
1359
1360
1361
1362
1366
1367
1368
1369
1370
1371
1372
1376
1377
1378
1379
1380
1386
1387
1388
1389
1390
1391
1392
1393
1394
1400
1401
1402
1403
1404
1405
1406
1407
1408
1418
1419
1420
1421
1425
1426
1427
1428
1429
1439
1440
1441
1442
1443
1444
1452
1453
1454
1455
1459
1460
1461
1462
1466
1467
1468
1469
1473
1474
1475
1476
1480
1481
1482
1483
1487
1488
1489
1490
1491
1492
1498
1499
1500
1501
1502
1503
1509
1510
1511
1512
1520
1521
1522
1523
1527
1528
1529
1530
1534
1535
1536
1537
1541
1542
1543
1544
1548
1549
1550
1551
1555
1556
1557
1558
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1578
1579
1580
1584
1585
1586
1587
1588
1589
1595
1596
1597
1598
1599
1600
1610
1611
1612
1613
1614
1615
1616
1622
1623
1624
1625
1633
1634
1635
1636
1644
1645
1646
1647
1655
1656
1657
1658
1659
1660
1666
1667
1668
1669
1670
1671
1677
1678
1679
1680
1681
1689
1690
1691
1692
1693
1694
1700
1701
1702
1703
1704
1708
1709
1710
1711
1712
1716
1717
1718
1719
1720
1721
1729
1730
1731
1732
1736
1737
1738
1739
1740
1750
1751
1752
1753
1754
1755
1756
1762
1763
1764
1765
1766
1767
1768
1774
1775
1776
1777
1781
1782
1783
1784
1788
1789
1790
1791
1795
1796
1797
1798
1802
1803
1804
1805
1809
1810
1811
1812
1816
1817
1818
1819
1820
1826
1827
1828
1829
1830
1840
1841
1842
1843
1844
1845
1851
1852
1853
1854
1855
1856
1857
1858
1864
1865
1866
1867
1873
1874
1875
1876
1882
1883
1884
1885
1889
1890
1891
1892
1893
1894
1898
1899
1900
1901
1902
1903
1904
1910
1911
1912
1913
1914
1915
1916
1926
1927
1928
1929
1933
1934
1935
1936
1940
1941
1942
1943
1947 VST_EFFECT_OPCODE_MAX,
1950 _VST_EFFECT_OPCODE_PAD = 0xFFFFFFFFul,
1954
1955
1956
1957
1958
1961
1962
1963
1964
1965
1966
1967
1995} vst_effect_supports = {
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2037
2038
2039
2040
2041
2042
2043
2044
2048
2049
2050
2051
2052
2056
2057
2058
2059
2060
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2090
2093
2094
2095
2096
2097
2101
2102
2103
2107
2108
2109
2110
2114
2115
2119
2120
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2139
2140
2141
2142
2146
2147
2148
2149
2150
2151
2155
2156
2157
2158
2159
2163
2164
2165
2172
2173
2174
2175
2176
2177
2184
2185
2186
2187
2188
2189
2190
2194
2195
2196
2197
2201
2202
2203
2204
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2221
2222
2223
2231
2232
2233
2241
2242
2243
2251
2252
2253
2254
2255
2256#define VST_ENTRYPOINT
2257 vst_effect_t* VSTPluginMain(vst_host_callback_t callback)
2260
2261
2262
2263
2264
2265#define VST_ENTRYPOINT_WINDOWS
2266 vst_effect_t* MAIN(vst_host_callback_t callback) { return VSTPluginMain(callback); }
2269
2270
2271
2272
2273
2274#define VST_ENTRYPOINT_MACOS
2275 vst_effect_t* main_macho(vst_host_callback_t callback) { return VSTPluginMain(callback); }
2278
2279
2280
2281
2282
2283#define VST_ENTRYPOINT_MACOS_POWERPC
2284 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_28
Crash the host if p_ptr isn't nullptr.
@ 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_27
Crash the host if p_ptr isn't nullptr.
@ VST_HOST_OPCODE_20
Retrieve the vendor name into the ptr buffer.
@ VST_HOST_OPCODE_2B
Notify host that a parameter is being edited.
@ VST_HOST_OPCODE_25
Check if the host supports a certain feature.
@ VST_HOST_OPCODE_23
User defined OP Code, for custom interaction.
@ VST_HOST_OPCODE_01
Retrieve the Hosts VST Version.
@ VST_HOST_OPCODE_AUTOMATE
@ VST_HOST_OPCODE_2C
Notify host that parameter is no longer being edited.
@ VST_HOST_OPCODE_0D
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 vendor version in return value.
@ VST_HOST_OPCODE_21
Retrieve the product 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.