wdl-ol
wdl-ol copied to clipboard
Enhanced version of Cockos' iPlug - A simple-to-use C++ framework for developing cross platform audio plugins and targeting multiple plugin APIs with the same code. VST / VST3 / Audiounit / RTAS / AAX...
For plugins without presets, `IPlugVST3::initialize` causes issues, because it calls `RestorePreset(0)` which causes the plugin to use some random/unititialized parameters. Also, presets do not appear (at least in Reaper), unless...
When changing the audio driver settings in the standalone preferences on windows, the .exe will often hang when switching from DS to ASIO
I'm trying to use the `duplicate.py` script on Windows 10 to perform a plugin duplication, and while this runs fine for the most part, it hits a point where things...
When IText mColor alpha is not 255 any significantly different from zero orientation ( >20) causes texts to be distorted or not being drawn at all.
If you do: ``` python duplicate.py IPlugEffect ABC Test cd ABC nano ABC/ABC.cpp # just add SetLatency(8192); ./makedist-mac.command ``` Launch Reaper64 (for example): the VST3 crashes Reaper. VST and AU...
I found this error on Windows 64-bit when working through the tutorial (the MIDI synthesis bit), in the file WDL/IPlug/IPlugVST3.cpp line 278. This occurred when running the VST3 in the...
Lines 278 and 279 at IPlugVST3 might cause an access violation if the 'inputs' or 'outputs' arrays are empty (for example in a VST instrument). I've encountered this error in...
If the gui wasn't created, GetGUI()->reisize() crash protools To fix: IGraphics.cpp::IGraphics::IGraphics(IPlugBase\* pPlug, int w, int h, int refreshFPS) add ``` #ifdef AAX_API mAAXViewContainer = 0; #endif ``` on IPlugAAX.cpp ```...
It is because the line IDI_ICON1 ICON DISCARDABLE "resources\PluginName.ico" in "PluginName.rc" I'm guessing the \T gets treated as an escape character or something. Changing it to /T works. for example:...
When using a parameter initialized as integer and IKnobMultiControl, this does not work properly on RTAS (and AAX). Only tested on Protools 7 for windows. VST seems to work correctly....