BASS_VST_AEFFECT bit flags.
Namespace: Un4seen.Bass.AddOn.Vst
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.18.0
Syntax
Members
| Member name | Value | Description | |
|---|---|---|---|
| effFlagsHasEditor | 1 | If set, is expected to react to editor messages. | |
| effFlagsHasClip | 2 | Return > 1. in getVu() if clipped. | |
| effFlagsHasVu | 4 | Return vu value in getVu(); > 1. means clipped. | |
| effFlagsCanMono | 8 | If numInputs == 2, makes sense to be used for mono in. | |
| effFlagsCanReplacing | 16 | Supports in place output (processReplacing() exsists). | |
| effFlagsProgramChunks | 32 | Program data are handled in formatless chunks. | |
| effFlagsIsSynth | 256 | Plug-in is a synth (VSTi), Host may assign mixer channels for its outputs. | |
| effFlagsNoSoundInStop | 512 | Plug-in does not produce sound when input is all silence. | |
| effFlagsExtIsAsync | 1024 | Plug-in is asynchronious. | |
| effFlagsExtHasBuffer | 2048 | Plug-in has a buffer. | |
| effFlagsCanDoubleReplacing | 4096 | Plug-in supports double precision processing. |
See Also