writing a VST plugin without the VST-SDK

DSP, Plugin and Host development discussion.
RELATED
PRODUCTS

Post

I like this license personally: http://sam.zoy.org/wtfpl/ 8)
noise and beats: Negutyv Xeiro do people actually click these?
gearlust: Roland JP-8000, too much/not enough eurorack
machinecode by: u-he, Bitwig, Fabfilter, NI, et al

Post

Hi,

for my Delphi ASIO & VST project I also don't use the official SDK (obviously as it is written in Pascal).

I am using a couple of structs (called records in Pascal) and the callbacks defined in these structs. Further than that there is only little in common with the original SDK.

Nearly everything is assigned on runtime and not hardcoded. This gives a huge flexibility when you want to write stereo->mono wrappers as you only need to limit the num of channels (which could also be stored in the registry or in an .xml file).

On the other hand more flexibility might lead to problems, whenever you exceed the limits of the original VST specifications. E.g. it is possible to add parameters at runtime, but only little VST hosts do support this "feature".

Kind regards,

Christian

PS: The project uses a dual license. Either a modified LGPL or the MPL can be used.

Post

Of course, whether what you do is legal or not if Steinberg wants to harass, they certainly could.

Post

I seem to recall that aciddose said he didn't use the SDK, but had written his own header files which interpret the same thing.. whether that would constitute a violation of terms, I'm not sure, but he doesn't redistribute his version AFAIK, so he may well be safe
Image

Post

much thanks for the replies so far. i know the inconveniencies in the GPL, but on the other hand, i don't really want to see derivative works commercially exploited. perhaps i'll roll my own license that is somehow similar to GPL but allows for the use of third party libraries that do not have to be distributed alongside with the code - as mystran suggested. but then ...maybe i'll just allow commercial use as the project is not supposed to become such a huge endeavor anyway. we'll see
My website: rs-met.com, My presences on: YouTube, GitHub, Facebook

Post

I released DspFilters under the MIT license precisely so it could be commercially exploited if desired.

Contrary to popular beliefs, not all of us commercial developers are devil worshippers and baby-eaters!

Post

there is a 'cleanroom' version of the VST headers apparently, you should be able to find out more via these links :

http://ardour.org/node/2443

http://www.joebutton.co.uk/fst/

probably worth cloning the fst git repo and seeing whats inside :)

p.s. i know nothing apart from this. i just remember reading about it at the time.

Post

thevinn wrote: not all of us commercial developers are devil worshippers and baby-eaters!
yes of course. i count myself among them too. i'll probably settle to some creative commons alike license - allowing for whatever use but requiring to attribute the original source. seems to be fair and liberal to me.
My website: rs-met.com, My presences on: YouTube, GitHub, Facebook

Post

I like Dutch Babies with powdered sugar.
Swing is the difference between a drum machine and a sex machine.

Post

marvotron wrote:there is a 'cleanroom' version of the VST headers apparently, you should be able to find out more via these links :

http://ardour.org/node/2443

http://www.joebutton.co.uk/fst/

probably worth cloning the fst git repo and seeing whats inside :)

p.s. i know nothing apart from this. i just remember reading about it at the time.
mmmhh interesting - but FST seems to still require the VST SDK nonetheless. generally, the whole ardour project is certainly worth to keep an eye on.
My website: rs-met.com, My presences on: YouTube, GitHub, Facebook

Post

mystran wrote:Namely, GPL allows you to combine GPL code with platform libraries, where the platform libraries need not be GPL (or compatible). Read the license about the details, but if you manage to convince yourself that VST is part of the platform, then you could release the rest of the source as GPL. The reason for this loophole ofcourse is to allow you to compile GPL on systems like Windows, OSX or Solaris, where neither the runtime libraries or system headers are GPL compatible.
I don't think it's too much of a stretch to do that: VST is a subplatform of whatever OS your host is running on, just as GDI is a subplatform of Windows.

Post

thevinn wrote:Contrary to popular beliefs, not all of us commercial developers are devil worshippers and baby-eaters!
Not necessarily both, but certainly one or the other: it's written into the union work rules.

Post

interesting...

what do you think about Uniq ID?
i think you should register the ID to the Steinberg database to avoid the ID conflict even if you don't use the VST SDK. is that allowable?

Post

Rock Hardbuns wrote:There's been talk about it before, and I seem to recall the license saying that you can't legally make a compatible frame work. In other words, as soon as you click that "agree" button on the download page you become "tainted".
Without addressing the basic misconception, I'd like to point out that licenses like the VST SDK we're talking about *also* have a certain "ideological purity" and "taint everything they come in contact with" which is the basic issue that leads to this discussion.

Post

g200kg wrote:interesting...

what do you think about Uniq ID?
i think you should register the ID to the Steinberg database to avoid the ID conflict even if you don't use the VST SDK. is that allowable?
I'll bite: is that ID actually useful? Seems like there are much more robust mechanisms available that a host can use to tell which VST is which.

Even if it is necessary for the ID to be 'unique', (1) its actual value isn't meaningful and (2) it only has to be unique on any given computer, not worldwide. Some sort of persistent DHCP-like mechanism would be ideal, but lacking that, a simple utility app that can scan the extant VSTs on a system at install time and return a non-colliding ID should be sufficient.

Post Reply

Return to “DSP and Plugin Development”