annotate Source/ClassicAmbiDecMain.cpp @ 12:87dc3d84c120

Addressed the load program defaults over user settings 'feature'. Removed isChild on objects that are added before the frame creation since a)they're always there and b) doesn't write to all displays present.
author martinm_home <martin.morrell@eecs.qmul.ac.uk>
date Thu, 27 Sep 2012 23:29:16 +0100
parents
children
rev   line source
martin@12 1
martin@12 2 #ifndef __ClassicAmbiDec__
martin@12 3 #include "ClassicAmbiDec.h"
martin@12 4 #endif
martin@12 5
martin@12 6 //-------------------------------------------------------------------------------------------------------
martin@12 7 AudioEffect* createEffectInstance (audioMasterCallback audioMaster) //Start a new instance of our effect
martin@12 8 {
martin@12 9 return new ClassicAmbiDec (audioMaster);
martin@12 10 }
martin@12 11