olilarkin / wdl-ol

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 (Native) formats supported. NOTE: THIS IS OBSOLETE, PLEASE SEE IPLUG2:
https://github.com/iplug2
935 stars 186 forks source link

Wrong plugin recognition in different DAWs #42

Closed kbiakov closed 9 years ago

kbiakov commented 9 years ago

Faced with the following problem. I added the following line to file resource.h:

define PLUG_CHANNEL_IO "0-1 0-2"

Thus, audioplagin has no audio inputs and has either one (mono) or a pair of (stereo) audio outputs. Cockos REAPER recognize the plugin as VST instrument, but FL Studio see this as VST effect, not instrument. The project compiles into VST2 format in VC++ 2010 on Windows 7 SP1.

Please could you tell what could be the problem and how to solve it?

olilarkin commented 9 years ago

does setting #define PLUG_IS_INST 1 fix your problem?

kbiakov commented 9 years ago

Yes, it solves the problem. Thanks!