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
164
165
168
169
170
176
177
178
184
185
186
192
193
194
200
201
202
208
209
210
216
217
218
227
228
229
232
233
234
235
236
237
241
242
243
244
245
246
247
251
252
253
254
255
256
257
261
262
263
267
268
269
273
274
275
276
280
281
282
283
287
288
289
290
294
295
296
297
301
302
303
304
308
309
310
311
312
313
317
318
319
320
321
327
328
329
330
401
402
403
404
408
409
410
411
415
416
417
418
424
425
426
427
431
432
433
434
435
436
444
445
446
450
454
458
462
466
467
468
472
473
474
478
479
480
499
503
504
505
510
511
512
519
523
524
528
529
533
544
545
546
547
560
561
562
563
564
565
566
567
568
571
577
578
579
590
591
592
595
596
597
598
599
600
601
609
610
611
617
618
619
620
621
627
628
629
649
650
651
652
653
654
655
656
657
658
659
660
674
675
676
677
678
679
680
681
682
690
691
692
693
694
695
696
697
698
699
731
732
733
734
735
736
737
738
739
740
752
753
754
760
761
762
768
769
770
776
777
785
786
787
788
798
799
800
801
802
803
809
810
811
812
824
825
826
827
828
836
837
838
839
840
841
842
858
859
860
861
862
863
864
865
866
874
875
876
877
878
879
880
881
882
883
898
899
900
901
902
905
906
907
908
909
910
911
912
916
917
918
919
920
921
922
923
924
925
929
930
931
932
933
934
938
939
940
941
945
946
947
951
952
953
968} vst_host_supports = {
987
988
989
990
991
992
993
1001
1002
1003
1007
1008
1009
1010
1011#define VST_DEFAULT_SAMPLE_RATE 44100.0f
1014
1015
1016
1017
1018#define VST_DEFAULT_BLOCK_SIZE 1024
1021
1022
1023
1024
1029
1030
1031
1032
1038
1039
1040
1041
1047
1048
1049
1050
1051
1057
1058
1059
1060
1066
1067
1068
1069
1075
1076
1077
1078
1086
1087
1088
1089
1090
1096
1097
1098
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1186
1187
1188
1189
1190
1191
1192
1198 VST_EFFECT_CATEGORY_MAX,
1201 _VST_EFFECT_CATEGORY_PAD = 0xFFFFFFFFul,
1205
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1235
1236
1237
1238
1239
1245
1246
1247
1248
1249
1258
1259
1260
1261
1267
1268
1269
1270
1271
1280
1281
1282
1283
1284
1285
1292
1293
1296
1297
1298
1306
1307
1308
1309
1310
1316
1317
1318
1326
1327
1328
1336
1337
1338
1346
1347
1348
1356
1357
1358
1359
1360
1370
1371
1372
1373
1374
1386
1387
1388
1389
1390
1400
1401
1402
1406
1407
1408
1416
1417
1418
1426
1427
1428
1429
1430
1431
1432
1442
1443
1444
1445
1446
1456
1457
1458
1459
1467
1468
1469
1477
1478
1479
1480
1481
1482
1483
1484
1485
1493
1494
1495
1496
1497
1498
1499
1500
1501
1509
1510
1511
1512
1513
1514
1515
1516
1517
1525
1526
1527
1533
1534
1535
1536
1537
1538
1539
1543
1544
1545
1546
1547
1548
1549
1553
1554
1555
1556
1557
1563
1564
1565
1566
1567
1568
1569
1570
1571
1577
1578
1579
1580
1581
1582
1583
1584
1585
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1612
1613
1614
1615
1616
1626
1627
1628
1629
1630
1631
1639
1640
1641
1642
1646
1647
1648
1649
1653
1654
1655
1656
1660
1661
1662
1663
1667
1668
1669
1670
1674
1675
1676
1677
1678
1679
1685
1686
1687
1688
1689
1690
1696
1697
1698
1699
1707
1708
1709
1710
1714
1715
1716
1717
1721
1722
1723
1724
1728
1729
1730
1731
1735
1736
1737
1738
1742
1743
1744
1745
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1765
1766
1767
1771
1772
1773
1774
1775
1776
1782
1783
1784
1785
1786
1787
1797
1798
1799
1800
1801
1802
1803
1809
1810
1811
1812
1820
1821
1822
1823
1831
1832
1833
1834
1842
1843
1844
1845
1846
1847
1853
1854
1855
1856
1857
1858
1864
1865
1866
1867
1868
1876
1877
1878
1879
1880
1881
1887
1888
1889
1890
1891
1895
1896
1897
1898
1899
1903
1904
1905
1906
1907
1908
1916
1917
1918
1919
1923
1924
1925
1926
1927
1937
1938
1939
1940
1941
1942
1943
1949
1950
1951
1952
1953
1954
1955
1961
1962
1963
1964
1968
1969
1970
1971
1975
1976
1977
1978
1982
1983
1984
1985
1989
1990
1991
1992
1996
1997
1998
1999
2003
2004
2005
2006
2007
2013
2014
2015
2016
2017
2027
2028
2029
2030
2031
2032
2038
2039
2040
2041
2042
2043
2044
2045
2051
2052
2053
2054
2060
2061
2062
2063
2069
2070
2071
2072
2076
2077
2078
2079
2080
2081
2085
2086
2087
2088
2089
2090
2091
2097
2098
2099
2100
2101
2102
2103
2113
2114
2115
2116
2120
2121
2122
2123
2127
2128
2129
2130
2134 VST_EFFECT_OPCODE_MAX,
2137 _VST_EFFECT_OPCODE_PAD = 0xFFFFFFFFul,
2141
2142
2143
2144
2145
2148
2149
2150
2151
2152
2153
2154
2182} vst_effect_supports = {
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2224
2225
2226
2227
2228
2229
2230
2231
2235
2236
2237
2238
2239
2243
2244
2245
2246
2247
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2277
2280
2281
2282
2283
2284
2288
2289
2290
2294
2295
2296
2297
2301
2302
2306
2307
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2326
2327
2328
2329
2333
2334
2335
2336
2337
2338
2342
2343
2344
2345
2346
2350
2351
2352
2359
2360
2361
2362
2363
2364
2371
2372
2373
2374
2375
2376
2377
2381
2382
2383
2384
2388
2389
2390
2391
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2408
2409
2410
2418
2419
2420
2428
2429
2430
2438
2439
2440
2441
2442
2443#define VST_ENTRYPOINT
2444 vst_effect_t* VSTPluginMain(vst_host_callback_t callback)
2447
2448
2449
2450
2451
2452#define VST_ENTRYPOINT_WINDOWS
2453 vst_effect_t* MAIN(vst_host_callback_t callback) { return VSTPluginMain(callback); }
2456
2457
2458
2459
2460
2461#define VST_ENTRYPOINT_MACOS
2462 vst_effect_t* main_macho(vst_host_callback_t callback) { return VSTPluginMain(callback); }
2465
2466
2467
2468
2469
2470#define VST_ENTRYPOINT_MACOS_POWERPC
2471 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.
vst_event_t ** events
An array of pointers to valid vst_event_t structures.
int32_t count
Number of events stored in vst_events_t::events.
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
Host can send events to plug-in.
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 * sizeWindow
Can we request that the host changes the editor window size?
const char * receiveVstEvents
Host can receive events from plug-in.
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_CURRENT_EFFECT_ID
@ VST_HOST_OPCODE_PARAM_START_EDIT
@ VST_HOST_OPCODE_PARAM_STOP_EDIT
@ VST_HOST_OPCODE_EDITOR_RESIZE
@ VST_HOST_OPCODE_2F
When queried by the plug-in shortly after VST_EFFECT_OPCODE_PROGRAM_LOAD it often crashes compatible ...
@ VST_HOST_OPCODE_IO_MODIFIED
@ VST_HOST_OPCODE_KEEPALIVE_OR_IDLE
@ VST_HOST_OPCODE_OUTPUT_GET_SPEAKER_ARRANGEMENT
@ VST_HOST_OPCODE_INPUT_GET_SPEAKER_ARRANGEMENT
@ VST_HOST_OPCODE_2B
Notify host that a parameter is being edited.
@ VST_HOST_OPCODE_PARAM_LOCK
@ 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_1E
Retrieve the hosts output speaker arrangement.
@ VST_HOST_OPCODE_29
Retrieve the directory of the effect that emitted this.
@ 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_10
Request that the host changes the size of the containing window.
@ 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
Refresh everything related to the effect that emitted this event.
@ VST_HOST_OPCODE_02
Get the currently selected effect id in container plug-ins.
@ VST_HOST_OPCODE_GET_OUTPUT_SPEAKER_ARRANGEMENT
@ 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_GET_INPUT_SPEAKER_ARRANGEMENT
@ VST_HOST_OPCODE_21
Retrieve the vendor name into the ptr buffer.
@ VST_HOST_OPCODE_VST_VERSION
@ VST_HOST_OPCODE_GET_EFFECT_DIRECTORY
@ VST_HOST_OPCODE_PARAM_UNLOCK
@ VST_HOST_OPCODE_SUPPORTS
@ VST_HOST_OPCODE_PARAM_UPDATE
@ VST_HOST_OPCODE_30
Retrieve the hosts input speaker arrangement.
@ VST_HOST_OPCODE_REFRESH
@ VST_HOST_OPCODE_09
Send events from plug-in to host.
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
Send events from host to plug-in.
@ 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_EVENT
@ 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.