Mercurial > hg > ambi-plugin
annotate Source/SoundFieldMain.cpp @ 2:93bfd9ede8e2
New and Working!
author | martinm_home <martin.morrell@eecs.qmul.ac.uk> |
---|---|
date | Thu, 06 Sep 2012 11:33:45 +0100 |
parents | 2fa9c10568d1 |
children |
rev | line source |
---|---|
martin@0 | 1 //------------------------------------------------------------------------------------------------------- |
martin@0 | 2 // VST Plug-Ins SDK |
martin@0 | 3 // Version 2.4 $Date: 2006/11/13 09:08:27 $ |
martin@0 | 4 // |
martin@0 | 5 // Category : VST 2.x SDK Samples |
martin@0 | 6 // Filename : adelaymain.cpp |
martin@0 | 7 // Created by : Steinberg Media Technologies |
martin@0 | 8 // Description : Simple Delay plugin (Mono->Stereo) |
martin@0 | 9 // |
martin@0 | 10 // © 2006, Steinberg Media Technologies, All Rights Reserved |
martin@0 | 11 //------------------------------------------------------------------------------------------------------- |
martin@0 | 12 |
martin@0 | 13 #ifndef __SoundField__ |
martin@0 | 14 #include "SoundField.h" |
martin@0 | 15 #endif |
martin@0 | 16 |
martin@0 | 17 //------------------------------------------------------------------------------------------------------- |
martin@0 | 18 AudioEffect* createEffectInstance (audioMasterCallback audioMaster) //Start a new instance of our effect |
martin@0 | 19 { |
martin@0 | 20 return new SoundField (audioMaster); |
martin@0 | 21 } |
martin@0 | 22 |