libcm is a C development framework with an emphasis on audio signal processing applications.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cmDspPgmKr.c 48KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868
  1. #include "cmPrefix.h"
  2. #include "cmGlobal.h"
  3. #include "cmFloatTypes.h"
  4. #include "cmRpt.h"
  5. #include "cmErr.h"
  6. #include "cmCtx.h"
  7. #include "cmMem.h"
  8. #include "cmMallocDebug.h"
  9. #include "cmLinkedHeap.h"
  10. #include "cmText.h"
  11. #include "cmFileSys.h"
  12. #include "cmSymTbl.h"
  13. #include "cmJson.h"
  14. #include "cmPrefs.h"
  15. #include "cmDspValue.h"
  16. #include "cmMsgProtocol.h"
  17. #include "cmThread.h"
  18. #include "cmUdpPort.h"
  19. #include "cmUdpNet.h"
  20. #include "cmAudioSys.h"
  21. #include "cmProcObj.h"
  22. #include "cmDspCtx.h"
  23. #include "cmDspClass.h"
  24. #include "cmDspSys.h"
  25. #include "cmDspPgm.h"
  26. #include "cmAudioFile.h"
  27. #include "cmProcObj.h"
  28. #include "cmProc.h"
  29. #include "cmProc3.h"
  30. #include "cmVectOpsTemplateMain.h"
  31. #include "cmVectOps.h"
  32. typedef struct
  33. {
  34. const cmChar_t* tlFn;
  35. const cmChar_t* tlPrefixPath;
  36. const cmChar_t* scFn;
  37. const cmChar_t* modFn;
  38. const cmChar_t* measFn;
  39. const cmChar_t* recordDir;
  40. const cmChar_t* midiDevice;
  41. const cmChar_t* midiOutPort;
  42. } krRsrc_t;
  43. cmDspRC_t krLoadRsrc(cmDspSysH_t h, cmErr_t* err, krRsrc_t* r)
  44. {
  45. cmDspRC_t rc;
  46. if((rc = cmDspSysLastRC(h)) != kOkDspRC )
  47. return rc;
  48. cmDspRsrcString(h,&r->tlFn, "timeLineFn", NULL);
  49. cmDspRsrcString(h,&r->tlPrefixPath,"tlPrefixPath", NULL);
  50. cmDspRsrcString(h,&r->scFn, "scoreFn", NULL);
  51. cmDspRsrcString(h,&r->modFn, "modFn", NULL);
  52. cmDspRsrcString(h,&r->measFn, "measFn", NULL);
  53. cmDspRsrcString(h,&r->recordDir, "recordDir", NULL);
  54. cmDspRsrcString(h,&r->midiDevice, "midiDevice", NULL);
  55. cmDspRsrcString(h,&r->midiOutPort, "midiOutPort", NULL);
  56. if((rc = cmDspSysLastRC(h)) != kOkDspRC )
  57. cmErrMsg(err,rc,"A KR DSP resource load failed.");
  58. return rc;
  59. }
  60. cmDspRC_t _cmDspSysPgm_TimeLine(cmDspSysH_t h, void** userPtrPtr )
  61. {
  62. cmDspRC_t rc = kOkDspRC;
  63. cmCtx_t* cmCtx = cmDspSysPgmCtx(h);
  64. cmErr_t err;
  65. krRsrc_t r;
  66. unsigned wtLoopCnt = 1; // 1=play once (-1=loop forever)
  67. unsigned wtInitMode = 0; // initial wt mode is 'silence'
  68. unsigned wtSmpCnt = floor(cmDspSysSampleRate(h)); // wt length == srate
  69. int krWndSmpCnt = 2048;
  70. int krHopFact = 4;
  71. unsigned xfadeChCnt = 2;
  72. double xfadeMs = 50;
  73. bool xfadeInitFl = true;
  74. double mixGain = 1.0;
  75. unsigned measRtChCnt = 4; // note: router channel 4 is not connected
  76. bool cmpBypassFl = false;
  77. double cmpInGain = 3.0;
  78. double cmpThreshDb = -40.0;
  79. double cmpRatio_num = 5.0;
  80. double cmpAtkMs = 20.0;
  81. double cmpRlsMs = 100.0;
  82. double cmpMakeup = 1.0;
  83. double cmpWndMaxMs = 1000.0;
  84. double cmpWndMs = 200.0;
  85. bool splitFragFl = true;
  86. double recdPlayInitAllocSecs = 10.0;
  87. double recdPlayMaxLaSecs = 2.0;
  88. double recdPlayCurLaSecs = 0.1;
  89. double recdPlayFadeRateDbPerSec = 4.0;
  90. double fragMixGain = splitFragFl ? 0.0 : mixGain;
  91. memset(&r,0,sizeof(r));
  92. cmErrSetup(&err,&cmCtx->rpt,"Kr Timeline");
  93. if( krLoadRsrc(h,&err,&r) != kOkDspRC )
  94. return rc;
  95. unsigned preGrpSymId = cmDspSysPresetRegisterGroup(h,"tl");
  96. unsigned compPreGrpSymId = cmDspSysPresetRegisterGroup(h,"tl_cmp");
  97. cmDspInst_t* ai0p = cmDspSysAllocInst(h,"AudioIn", NULL, 1, 0);
  98. cmDspInst_t* ai1p = cmDspSysAllocInst(h,"AudioIn", NULL, 1, 1);
  99. cmDspInst_t* tlp = cmDspSysAllocInst(h,"TimeLine", "tl", 2, r.tlFn, r.tlPrefixPath );
  100. cmDspInst_t* scp = cmDspSysAllocInst(h,"Score", "sc", 1, r.scFn );
  101. cmDspInst_t* php = cmDspSysAllocInst(h,"Phasor", NULL, 1, cmDspSysSampleRate(h) );
  102. cmDspInst_t* wtp = cmDspSysAllocInst(h,"WaveTable", NULL, 4, wtSmpCnt, wtInitMode, NULL, wtLoopCnt );
  103. cmDspInst_t* pts = cmDspSysAllocInst(h,"PortToSym", NULL, 2, "on", "off" );
  104. cmDspInst_t* mip = cmDspSysAllocInst(h,"MidiIn", NULL, 0 );
  105. cmDspInst_t* mfp = cmDspSysAllocInst(h,"MidiFilePlay",NULL, 0 );
  106. cmDspInst_t* nmp = cmDspSysAllocInst(h,"NanoMap", NULL, 0 );
  107. cmDspInst_t* mop = cmDspSysAllocInst(h,"MidiOut", NULL, 2, r.midiDevice,r.midiOutPort);
  108. cmDspInst_t* sfp = cmDspSysAllocInst(h,"ScFol", NULL, 1, r.scFn );
  109. cmDspInst_t* amp = cmDspSysAllocInst(h,"ActiveMeas", NULL, 1, 100 );
  110. cmDspInst_t* rpp = cmDspSysAllocInst(h,"RecdPlay", NULL, 4, 2, r.scFn, recdPlayInitAllocSecs, recdPlayMaxLaSecs, recdPlayCurLaSecs, recdPlayFadeRateDbPerSec );
  111. cmDspInst_t* modp = cmDspSysAllocInst(h,"ScMod", NULL, 2, r.modFn, "m1" );
  112. cmDspInst_t* asp = cmDspSysAllocInst(h,"AmSync", NULL, 0 );
  113. cmDspInst_t* achan0 = cmDspSysAllocInst(h, "AvailCh", NULL, 1, xfadeChCnt );
  114. cmDspInst_t* achan1 = cmDspSysAllocInst(h, "AvailCh", NULL, 1, xfadeChCnt );
  115. cmDspInst_t* even_sr_00 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 0.8, 1.1, 0.0, 1.0 );
  116. cmDspInst_t* even_rt_00 = cmDspSysAllocInst(h, "Router", NULL, 2, measRtChCnt, measRtChCnt-1 );
  117. cmDspInst_t* dyn_sr_00 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 0.0, 4.0, 0.01, 1.0 );
  118. cmDspInst_t* dyn_rt_00 = cmDspSysAllocInst(h, "Router", NULL, 2, measRtChCnt, measRtChCnt-1 );
  119. cmDspInst_t* tempo_sr_00 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 80.0, 120.0, 0.01, 1.0 );
  120. cmDspInst_t* tempo_rt_00 = cmDspSysAllocInst(h, "Router", NULL, 2, measRtChCnt, measRtChCnt-1 );
  121. cmDspInst_t* cost_sr_00 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 0.0, 1.0, 0.001, 1.0 );
  122. cmDspInst_t* cost_rt_00 = cmDspSysAllocInst(h, "Router", NULL, 2, measRtChCnt, measRtChCnt-1 );
  123. cmDspInst_t* thrh_sr_00 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 0.0, 1.0, 0.01, 100.0 );
  124. cmDspInst_t* upr_sr_00 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 0.0, 1.0, -1.0, 5.0 );
  125. cmDspInst_t* lwr_sr_00 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 0.0, 1.0, -5.0, 5.0 );
  126. cmDspInst_t* even_sr_10 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 0.8, 1.1, 0.0, 1.0 );
  127. cmDspInst_t* even_rt_10 = cmDspSysAllocInst(h, "Router", NULL, 2, measRtChCnt, measRtChCnt-1 );
  128. cmDspInst_t* dyn_sr_10 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 0.0, 4.0, 0.01, 1.0 );
  129. cmDspInst_t* dyn_rt_10 = cmDspSysAllocInst(h, "Router", NULL, 2, measRtChCnt, measRtChCnt-1 );
  130. cmDspInst_t* tempo_sr_10 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 80.0, 120.0, 0.01, 1.0 );
  131. cmDspInst_t* tempo_rt_10 = cmDspSysAllocInst(h, "Router", NULL, 2, measRtChCnt, measRtChCnt-1 );
  132. cmDspInst_t* cost_sr_10 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 0.0, 1.0, 0.001, 1.0 );
  133. cmDspInst_t* cost_rt_10 = cmDspSysAllocInst(h, "Router", NULL, 2, measRtChCnt, measRtChCnt-1 );
  134. cmDspInst_t* thrh_sr_10 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 0.0, 1.0, 0.01, 100.0 );
  135. cmDspInst_t* upr_sr_10 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 0.0, 1.0, -1.0, 5.0 );
  136. cmDspInst_t* lwr_sr_10 = cmDspSysAllocInst(h, "ScaleRange", NULL, 4, 0.0, 1.0, -5.0, 5.0 );
  137. unsigned paramRtChCnt = 2;
  138. cmDspInst_t* mod_rt_00 = cmDspSysAllocInst(h, "Router", NULL, 2, paramRtChCnt, paramRtChCnt-1 );
  139. cmDspInst_t* thr_rt_00 = cmDspSysAllocInst(h, "Router", NULL, 2, paramRtChCnt, paramRtChCnt-1 );
  140. cmDspInst_t* upr_rt_00 = cmDspSysAllocInst(h, "Router", NULL, 2, paramRtChCnt, paramRtChCnt-1 );
  141. cmDspInst_t* lwr_rt_00 = cmDspSysAllocInst(h, "Router", NULL, 2, paramRtChCnt, paramRtChCnt-1 );
  142. cmDspInst_t* mod_rt_10 = cmDspSysAllocInst(h, "Router", NULL, 2, paramRtChCnt, paramRtChCnt-1 );
  143. cmDspInst_t* thr_rt_10 = cmDspSysAllocInst(h, "Router", NULL, 2, paramRtChCnt, paramRtChCnt-1 );
  144. cmDspInst_t* upr_rt_10 = cmDspSysAllocInst(h, "Router", NULL, 2, paramRtChCnt, paramRtChCnt-1 );
  145. cmDspInst_t* lwr_rt_10 = cmDspSysAllocInst(h, "Router", NULL, 2, paramRtChCnt, paramRtChCnt-1 );
  146. cmDspInst_t* kr00 = cmDspSysAllocInst(h, "Kr", NULL, 2, krWndSmpCnt, krHopFact );
  147. cmDspInst_t* kr01 = cmDspSysAllocInst(h, "Kr", NULL, 2, krWndSmpCnt, krHopFact );
  148. cmDspInst_t* fad0 = cmDspSysAllocInst(h, "Xfader", NULL, 3, xfadeChCnt, xfadeMs, xfadeInitFl );
  149. cmDspInst_t* mix0 = cmDspSysAllocInst(h, "AMix", NULL, 4, xfadeChCnt+1, mixGain, mixGain, fragMixGain );
  150. cmDspInst_t* cmp0 = cmDspSysAllocInst(h,"Compressor", NULL, 8, cmpBypassFl, cmpThreshDb, cmpRatio_num, cmpAtkMs, cmpRlsMs, cmpMakeup, cmpWndMs, cmpWndMaxMs );
  151. cmDspInst_t* ao0p = cmDspSysAllocInst(h,"AudioOut", NULL, 1, 0 );
  152. cmDspInst_t* kr10 = cmDspSysAllocInst(h, "Kr", NULL, 2, krWndSmpCnt, krHopFact );
  153. cmDspInst_t* kr11 = cmDspSysAllocInst(h, "Kr", NULL, 2, krWndSmpCnt, krHopFact );
  154. cmDspInst_t* fad1 = cmDspSysAllocInst(h, "Xfader", NULL, 3, xfadeChCnt, xfadeMs, xfadeInitFl );
  155. cmDspInst_t* mix1 = cmDspSysAllocInst(h, "AMix", NULL, 4, xfadeChCnt+1, mixGain, mixGain, fragMixGain );
  156. cmDspInst_t* cmp1 = cmDspSysAllocInst(h,"Compressor", NULL, 8, cmpBypassFl, cmpThreshDb, cmpRatio_num, cmpAtkMs, cmpRlsMs, cmpMakeup, cmpWndMs, cmpWndMaxMs );
  157. cmDspInst_t* ao1p = cmDspSysAllocInst(h,"AudioOut", NULL, 1, 1 );
  158. cmDspInst_t* ao2p = NULL;
  159. cmDspInst_t* ao3p = NULL;
  160. if( splitFragFl )
  161. {
  162. ao2p = cmDspSysAllocInst(h,"AudioOut", NULL, 1, 2 );
  163. ao3p = cmDspSysAllocInst(h,"AudioOut", NULL, 1, 3 );
  164. }
  165. cmDspSysNewPage(h,"Controls");
  166. cmDspInst_t* liveb= cmDspSysAllocInst(h,"Button", "live", 2, kCheckDuiId, 0.0 );
  167. cmDspInst_t* simb = cmDspSysAllocInst(h,"Button", "simulate",2, kCheckDuiId, 0.0 );
  168. cmDspInst_t* ainb = cmDspSysAllocInst(h,"Button", "audio in",2, kCheckDuiId, 0.0 );
  169. cmDspInst_t* onb = cmDspSysAllocInst(h,"Button", "start", 2, kButtonDuiId, 1.0 );
  170. cmDspInst_t* offb = cmDspSysAllocInst(h,"Button", "stop", 2, kButtonDuiId, 1.0 );
  171. cmDspInst_t* prtb = cmDspSysAllocInst(h,"Button", "print", 2, kButtonDuiId, 1.0 );
  172. cmDspInst_t* qtb = cmDspSysAllocInst(h,"Button", "quiet", 2, kButtonDuiId, 1.0 );
  173. cmDspInst_t* prp = cmDspSysAllocInst(h,"Printer", NULL, 1, ">" );
  174. cmDspInst_t* prd = cmDspSysAllocInst(h,"Printer", NULL, 1, "DYN:" );
  175. cmDspInst_t* pre = cmDspSysAllocInst(h,"Printer", NULL, 1, "EVEN:" );
  176. cmDspInst_t* prt = cmDspSysAllocInst(h,"Printer", NULL, 1, "TEMPO:");
  177. cmDspInst_t* prc = cmDspSysAllocInst(h,"Printer", NULL, 1, "COST:");
  178. //cmDspInst_t* prv = cmDspSysAllocInst(h,"Printer", NULL, 1, "Value:");
  179. // Record <-> Live switches
  180. cmDspInst_t* tlRt = cmDspSysAllocInst(h,"Router", NULL, 2, 2, 0);
  181. cmDspInst_t* wtRt = cmDspSysAllocInst(h,"Router", NULL, 2, 2, 0);
  182. cmDspInst_t* mfpRt = cmDspSysAllocInst(h,"Router", NULL, 2, 2, 0);
  183. cmDspInst_t* amRt = cmDspSysAllocInst(h,"Router", NULL, 2, 2, 0);
  184. cmDspInst_t* au0Sw = cmDspSysAllocInst(h,"1ofN", NULL, 2, 2, 0);
  185. cmDspInst_t* au1Sw = cmDspSysAllocInst(h,"1ofN", NULL, 2, 2, 0);
  186. cmDspInst_t* siRt = cmDspSysAllocInst(h,"Router", NULL, 2, 2, 0);
  187. cmDspInst_t* d0Rt = cmDspSysAllocInst(h,"Router", NULL, 2, 2, 0);
  188. cmDspInst_t* d1Rt = cmDspSysAllocInst(h,"Router", NULL, 2, 2, 0);
  189. cmDspInst_t* stRt = cmDspSysAllocInst(h,"Router", NULL, 2, 2, 0);
  190. //--------------- Preset controls
  191. cmDspInst_t* preset = cmDspSysAllocInst( h, "Preset", NULL, 1, preGrpSymId );
  192. cmDspInst_t* presetLbl = cmDspSysAllocInst( h, "Text", "Preset", 1, "" );
  193. cmDspInst_t* storeBtn = cmDspSysAllocButton( h, "store", 0);
  194. cmDspInst_t* recallBtn = cmDspSysAllocButton( h, "recall", 0);
  195. cmDspSysInstallCb( h, presetLbl, "val", preset, "label",NULL);
  196. cmDspSysInstallCb( h, storeBtn, "sym", preset, "cmd", NULL );
  197. cmDspSysInstallCb( h, recallBtn, "sym", preset, "cmd", NULL );
  198. cmDspInst_t* prePath = cmDspSysAllocInst( h, "Fname", "prePath", 3, true,NULL,r.tlPrefixPath);
  199. cmDspSysNewColumn(h,0);
  200. //--------------- Recorded performance evaluation and Active Measurement related controls
  201. cmDspInst_t* clrBtn = cmDspSysAllocButton( h, "clear", 0);
  202. cmDspInst_t* prtBtn = cmDspSysAllocButton( h, "dump", 0);
  203. cmDspInst_t* mlst = cmDspSysAllocInst( h, "MsgList", NULL, 3, "meas", r.measFn, 2);
  204. cmDspInst_t* amCmd = cmDspSysAllocInst( h, "PortToSym", NULL, 2, "add", "rewind" );
  205. cmDspSysInstallCb( h, clrBtn, "sym", amp, "cmd", NULL );
  206. cmDspSysInstallCb( h, prtBtn, "sym", amp, "cmd", NULL );
  207. cmDspSysInstallCb( h, amCmd, "add", amp, "cmd", NULL );
  208. cmDspSysInstallCb( h, amCmd, "rewind", amp, "cmd", NULL );
  209. cmDspSysInstallCb( h, mlst, "loc", amp, "loc", NULL );
  210. cmDspSysInstallCb( h, mlst, "typeId", amp, "type",NULL );
  211. cmDspSysInstallCb( h, mlst, "val", amp, "val", NULL );
  212. cmDspSysInstallCb( h, mlst, "cost", amp, "cst", NULL );
  213. cmDspSysInstallCb( h, mlst, "typeId", amCmd, "add", NULL );
  214. cmDspSysInstallCb( h, sfp, "out", amRt, "f-in", NULL );
  215. cmDspSysInstallCb( h, amRt, "f-out-0",amp, "sfloc", NULL );
  216. // ***** delete this to prevent the score follower from driving the active-measure unit in 'live' mode
  217. cmDspSysInstallCb( h, amRt, "f-out-1",amp, "sfloc", NULL );
  218. // *****
  219. cmDspSysInstallCb( h, amp, "even", pre, "in", NULL );
  220. cmDspSysInstallCb( h, amp, "dyn", prd, "in", NULL );
  221. cmDspSysInstallCb( h, amp, "tempo", prt, "in", NULL );
  222. cmDspSysInstallCb( h, amp, "cost", prc, "in", NULL );
  223. cmDspSysNewColumn(h,0);
  224. double dfltOffset = 2.0; // 30.0;
  225. // ------ Spectral distortion controls 0
  226. cmDspInst_t* md00p = cmDspSysAllocScalarP( h,preGrpSymId,NULL, "Mode-00", 0.0, 4.0, 1.0, 1.0);
  227. cmDspInst_t* ws00p = cmDspSysAllocMsgListP(h,preGrpSymId,NULL, "wndSmpCnt-00", NULL, "wndSmpCnt", 2);
  228. cmDspInst_t* hf00p = cmDspSysAllocMsgListP(h,preGrpSymId,NULL, "hopFact-00", NULL, "hopFact", 2);
  229. cmDspInst_t* th00p = cmDspSysAllocScalarP( h,preGrpSymId,NULL, "threshold-00", 0.0, 100.0, 1.0, 60.0 );
  230. cmDspInst_t* us00p = cmDspSysAllocScalarP( h,preGrpSymId,NULL, "upr slope-00", 0.0, 10.0, 0.01, 0.0 );
  231. cmDspInst_t* ls00p = cmDspSysAllocScalarP( h,preGrpSymId,NULL, "lwr slope-00", 0.3, 10.0, 0.01, 2.0 );
  232. cmDspInst_t* of00p = cmDspSysAllocScalarP( h,preGrpSymId,NULL, "offset-00", 0.0, 100.0, 0.01, dfltOffset );
  233. cmDspInst_t* iv00p = cmDspSysAllocScalarP( h,preGrpSymId,NULL, "invert-00", 0.0, 1.0, 1.0, 0.0 );
  234. cmDspInst_t* wet00p = cmDspSysAllocScalarP(h,preGrpSymId,NULL, "wet-00", 0.0, 1.0,0.001, 1.0 );
  235. cmDspSysNewColumn(h,0);
  236. // ------ Spectral distortion controls 1
  237. cmDspInst_t* md10p = cmDspSysAllocScalarP( h,preGrpSymId,NULL, "Mode-10", 0.0, 4.0, 1.0, 1.0);
  238. cmDspInst_t* ws10p = cmDspSysAllocMsgListP(h,preGrpSymId,NULL, "wndSmpCnt-10", NULL, "wndSmpCnt", 2);
  239. cmDspInst_t* hf10p = cmDspSysAllocMsgListP(h,preGrpSymId,NULL, "hopFact-10", NULL, "hopFact", 2);
  240. cmDspInst_t* th10p = cmDspSysAllocScalarP( h,preGrpSymId,NULL, "threshold-10", 0.0, 100.0, 1.0, 60.0 );
  241. cmDspInst_t* us10p = cmDspSysAllocScalarP( h,preGrpSymId,NULL, "upr slope-10", 0.0, 10.0, 0.01, 0.0 );
  242. cmDspInst_t* ls10p = cmDspSysAllocScalarP( h,preGrpSymId,NULL, "lwr slope-10", 0.3, 10.0, 0.01, 2.0 );
  243. cmDspInst_t* of10p = cmDspSysAllocScalarP( h,preGrpSymId,NULL, "offset-10", 0.0, 100.0, 0.01, dfltOffset );
  244. cmDspInst_t* iv10p = cmDspSysAllocScalarP( h,preGrpSymId,NULL, "invert-10", 0.0, 1.0, 1.0, 0.0 );
  245. cmDspInst_t* wet10p = cmDspSysAllocScalarP( h,preGrpSymId,NULL, "wet-10", 0.0, 1.0,0.001, 1.0 );
  246. cmDspSysNewColumn(h,0);
  247. cmDspInst_t* igain0 = cmDspSysAllocInst(h,"Scalar", "In Gain-0", 5, kNumberDuiId, 0.0, 10.0,0.01, 1.0 );
  248. cmDspInst_t* igain1 = cmDspSysAllocInst(h,"Scalar", "In Gain-1", 5, kNumberDuiId, 0.0, 10.0,0.01, 1.0 );
  249. cmDspInst_t* lasecs = cmDspSysAllocInst(h,"Scalar", "LA Secs", 5, kNumberDuiId, 0.0, recdPlayMaxLaSecs,0.01, recdPlayCurLaSecs );
  250. cmDspInst_t* dbpsec = cmDspSysAllocInst(h,"Scalar", "Fade dBpSec", 5, kNumberDuiId, 0.0, 24.0, 0.01, recdPlayFadeRateDbPerSec);
  251. cmDspInst_t* ogain0 = cmDspSysAllocInst(h,"Scalar", "Out Gain-0", 5, kNumberDuiId, 0.0, 10.0,0.01, 3.0 );
  252. cmDspInst_t* ogain1 = cmDspSysAllocInst(h,"Scalar", "Out Gain-1", 5, kNumberDuiId, 0.0, 10.0,0.01, 3.0 );
  253. cmDspInst_t* ogain2 = cmDspSysAllocInst(h,"Scalar", "Out Gain-2", 5, kNumberDuiId, 0.0, 10.0,0.01, 3.0 );
  254. cmDspInst_t* ogain3 = cmDspSysAllocInst(h,"Scalar", "Out Gain-3", 5, kNumberDuiId, 0.0, 10.0,0.01, 3.0 );
  255. cmDspInst_t* xfadMs = cmDspSysAllocInst(h,"Scalar", "Xfade Ms", 5, kNumberDuiId, 0.0, 1000.0,0.01, 50.0 );
  256. // Audio file recording
  257. cmDspInst_t* recdGain= cmDspSysAllocInst(h,"Scalar", "Recd Gain", 5, kNumberDuiId, 0.0, 100.0,0.01, 1.5 );
  258. cmDspInst_t* recdChk = cmDspSysAllocInst(h,"Button", "Record", 2, kCheckDuiId, 0.0 );
  259. cmDspInst_t* recdPtS = cmDspSysAllocInst(h,"GateToSym", NULL, 2, cmSymTblRegisterStaticSymbol(cmDspSysSymbolTable(h),"open"),cmSymTblRegisterStaticSymbol(cmDspSysSymbolTable(h),"close"));
  260. cmDspInst_t* afop = cmDspSysAllocInst(h,"AudioFileOut",NULL, 2, r.recordDir,2);
  261. cmDspInst_t* mi0p = cmDspSysAllocInst(h,"AMeter","In 0", 0);
  262. cmDspInst_t* mi1p = cmDspSysAllocInst(h,"AMeter","In 1", 0);
  263. cmDspSysInstallCb(h, recdGain,"val", afop, "gain0", NULL );
  264. cmDspSysInstallCb(h, recdGain,"val", afop, "gain1", NULL );
  265. cmDspSysInstallCb(h, recdChk, "out", recdPtS, "on", NULL );
  266. cmDspSysInstallCb(h, recdChk, "out", recdPtS, "off", NULL );
  267. cmDspSysInstallCb(h, recdPtS, "out", afop, "sel", NULL );
  268. cmDspSysNewPage(h,"Sc/Rgn");
  269. // -------- Measurement Scale/Ranges controls 0
  270. cmDspInst_t* min_dyn_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min In Dyn 0", 0.0, 10.0, 1.0, 0.0);
  271. cmDspInst_t* max_dyn_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max In Dyn 0", 0.0, 10.0, 1.0, 4.0);
  272. cmDspInst_t* menu_dyn_0 = cmDspSysAllocMsgListP(h,preGrpSymId, NULL, "DynSel 0", NULL, "measMenu", measRtChCnt-1);
  273. cmDspInst_t* min_even_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min In Even 0", 0.0, 1.0, 0.001, 0.75);
  274. cmDspInst_t* max_even_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max In Even 0", 0.0, 3.0, 0.001, 1.0);
  275. cmDspInst_t* menu_even_0 = cmDspSysAllocMsgListP(h,preGrpSymId, NULL, "EvenSel 0", NULL, "measMenu", measRtChCnt-1);
  276. cmDspSysNewColumn(h,0);
  277. cmDspInst_t* min_tempo_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min In Tempo 0", 0.0, 200.0, 1.0, 80.0);
  278. cmDspInst_t* max_tempo_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max In Tempo 0", 0.0, 200.0, 1.0, 120.0);
  279. cmDspInst_t* menu_tempo_0 = cmDspSysAllocMsgListP(h,preGrpSymId, NULL, "TempoSel 0", NULL, "measMenu", measRtChCnt-1);
  280. cmDspInst_t* min_cost_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min In Cost 0", 0.0, 1.0, 0.01, 0.0);
  281. cmDspInst_t* max_cost_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max In Cost 0", 0.0, 1.0, 0.01, 1.0);
  282. cmDspInst_t* menu_cost_0 = cmDspSysAllocMsgListP(h,preGrpSymId, NULL, "CostSel 0", NULL, "measMenu", measRtChCnt-1);
  283. // -------- Parameter Scale/Ranges controls 0
  284. cmDspSysNewColumn(h,0);
  285. cmDspInst_t* min_thrh_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min Thresh 0", 0.0, 100.0, 1.0, 30.0);
  286. cmDspInst_t* max_thrh_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max Thresh 0", 0.0, 100.0, 1.0, 80.0);
  287. cmDspInst_t* min_upr_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min Upr 0", -1.0, 1.0, 0.001, -0.5);
  288. cmDspInst_t* max_upr_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max Upr 0", -1.0, 1.0, 0.001, 0.5);
  289. cmDspInst_t* min_lwr_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min Lwr 0", 0.0, -1.0, 5.0, 1.0);
  290. cmDspInst_t* max_lwr_0 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max Lwr 0", 0.0, -1.0, 5.0, 3.0);
  291. // -------- Measurement Scale/Ranges controls 0
  292. cmDspSysNewColumn(h,0);
  293. cmDspInst_t* min_dyn_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min In Dyn 1", 0.0, 10.0, 1.0, 0.0);
  294. cmDspInst_t* max_dyn_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max In Dyn 1", 0.0, 10.0, 1.0, 4.0);
  295. cmDspInst_t* menu_dyn_1 = cmDspSysAllocMsgListP(h,preGrpSymId, NULL, "DynSel 1", NULL, "measMenu", measRtChCnt-1);
  296. cmDspInst_t* min_even_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min In Even 1", 0.0, 1.0, 0.001, 0.75);
  297. cmDspInst_t* max_even_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max In Even 1", 0.0, 3.0, 0.001, 1.0);
  298. cmDspInst_t* menu_even_1 = cmDspSysAllocMsgListP(h,preGrpSymId, NULL, "EvenSel 1", NULL, "measMenu", measRtChCnt-1);
  299. cmDspSysNewColumn(h,0);
  300. cmDspInst_t* min_tempo_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min In Tempo 1", 0.0, 200.0, 1.0, 80.0);
  301. cmDspInst_t* max_tempo_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max In Tempo 1", 0.0, 200.0, 1.0, 120.0);
  302. cmDspInst_t* menu_tempo_1 = cmDspSysAllocMsgListP(h,preGrpSymId, NULL, "TempoSel 1", NULL, "measMenu", measRtChCnt-1);
  303. cmDspInst_t* min_cost_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min In Cost 1", 0.0, 1.0, 0.01, 0.0);
  304. cmDspInst_t* max_cost_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max In Cost 1", 0.0, 1.0, 0.01, 1.0);
  305. cmDspInst_t* menu_cost_1 = cmDspSysAllocMsgListP(h,preGrpSymId, NULL, "CostSel 1", NULL, "measMenu", measRtChCnt-1);
  306. // -------- Parameter Scale/Ranges controls 0
  307. cmDspSysNewColumn(h,0);
  308. cmDspInst_t* min_thrh_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min Thresh 1", 0.0, 100.0, 1.0, 30.0);
  309. cmDspInst_t* max_thrh_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max Thresh 1", 0.0, 100.0, 1.0, 80.0);
  310. cmDspInst_t* min_upr_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min Upr 1", -1.0, 1.0, 0.001, -0.5);
  311. cmDspInst_t* max_upr_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max Upr 1", -1.0, 1.0, 0.001, 0.5);
  312. cmDspInst_t* min_lwr_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Min Lwr 1", 0.0, -1.0, 5.0, 1.0);
  313. cmDspInst_t* max_lwr_1 = cmDspSysAllocScalarP( h,preGrpSymId, NULL, "Max Lwr 1", 0.0, -1.0, 5.0, 3.0);
  314. if((rc = cmDspSysLastRC(h)) != kOkDspRC )
  315. return rc;
  316. cmDspSysConnectAudio(h, php, "out", wtp, "phs" ); // phs -> wt
  317. cmDspSysConnectAudio(h, wtp, "out", au0Sw, "a-in-0" ); // wt -> sw
  318. cmDspSysConnectAudio(h, ai0p, "out", au0Sw, "a-in-1" ); // ain -> sw
  319. cmDspSysConnectAudio(h, ai0p, "out", mi0p, "in" );
  320. cmDspSysConnectAudio(h, au0Sw,"a-out", rpp, "in-0"); // sw -> rcdply
  321. cmDspSysConnectAudio(h, au0Sw,"a-out", kr00, "in" ); // sw -> kr
  322. cmDspSysConnectAudio(h, kr00, "out", fad0, "in-0"); // kr -> fad
  323. cmDspSysConnectAudio(h, fad0, "out-0", mix0, "in-0"); // fad -> mix
  324. cmDspSysConnectAudio(h, au0Sw,"a-out", kr01, "in" ); // sw -> kr
  325. cmDspSysConnectAudio(h, kr01, "out", fad0, "in-1"); // kr -> fad
  326. cmDspSysConnectAudio(h, fad0, "out-1", mix0, "in-1"); // fad -> mix
  327. cmDspSysConnectAudio(h, rpp, "out-0", mix0, "in-2");
  328. cmDspSysConnectAudio(h, mix0, "out", cmp0, "in"); // mix -> cmp
  329. cmDspSysConnectAudio(h, cmp0, "out", ao0p, "in" ); // cmp -> aout
  330. cmDspSysConnectAudio(h, wtp, "out", au1Sw, "a-in-0" ); // wt -> kr
  331. cmDspSysConnectAudio(h, ai1p, "out", au1Sw, "a-in-1" );
  332. cmDspSysConnectAudio(h, ai1p, "out", mi1p, "in" );
  333. cmDspSysConnectAudio(h, au1Sw,"a-out", rpp, "in-1"); // sw -> rcdply
  334. cmDspSysConnectAudio(h, au1Sw,"a-out", kr10, "in" );
  335. cmDspSysConnectAudio(h, kr10, "out", fad1, "in-0");
  336. cmDspSysConnectAudio(h, fad1, "out-0", mix1, "in-0");
  337. cmDspSysConnectAudio(h, au1Sw,"a-out", kr11, "in" ); // wt -> kr
  338. cmDspSysConnectAudio(h, kr11, "out", fad1, "in-1");
  339. cmDspSysConnectAudio(h, fad1, "out-1", mix1, "in-1");
  340. cmDspSysConnectAudio(h, rpp, "out-0", mix1, "in-2");
  341. cmDspSysConnectAudio(h, mix1, "out", cmp1, "in");
  342. cmDspSysConnectAudio(h, cmp1, "out", ao1p, "in" ); // comp -> aout
  343. cmDspSysConnectAudio(h, cmp0, "out", afop, "in0" ); // comp -> audio_file_out
  344. cmDspSysConnectAudio(h, cmp1, "out", afop, "in1" );
  345. if( splitFragFl )
  346. {
  347. cmDspSysConnectAudio(h, rpp, "out-0", ao2p, "in" );
  348. cmDspSysConnectAudio(h, rpp, "out-1", ao3p, "in" );
  349. }
  350. // wave-table to time-line cursor
  351. cmDspSysInstallCb( h, wtp, "fidx",tlp, "curs", NULL);
  352. cmDspSysInstallCb(h, prePath, "out", tlp, "path", NULL );
  353. // 'live' button -> live router selector switch
  354. cmDspSysInstallCb(h, liveb, "out", wtRt, "sel", NULL );
  355. cmDspSysInstallCb(h, liveb, "out", tlRt, "sel", NULL );
  356. cmDspSysInstallCb(h, liveb, "out", mfpRt,"sel", NULL );
  357. cmDspSysInstallCb(h, liveb, "out", amRt, "sel", NULL );
  358. cmDspSysInstallCb(h, liveb, "out", au0Sw, "chidx", NULL );
  359. cmDspSysInstallCb(h, liveb, "out", au1Sw, "chidx", NULL );
  360. // 'simulate' button -> simulate router selector switch
  361. cmDspSysInstallCb(h, simb, "out", ainb, "in", NULL );
  362. cmDspSysInstallCb(h, ainb, "out", au0Sw, "chidx", NULL );
  363. cmDspSysInstallCb(h, ainb, "out", au1Sw, "chidx", NULL );
  364. cmDspSysInstallCb(h, simb, "out", siRt, "sel", NULL );
  365. cmDspSysInstallCb(h, simb, "out", d1Rt, "sel", NULL );
  366. cmDspSysInstallCb(h, simb, "out", d0Rt, "sel", NULL );
  367. cmDspSysInstallCb(h, simb, "out", stRt, "sel", NULL );
  368. // start connections
  369. cmDspSysInstallCb(h, onb, "sym", tlRt, "s-in", NULL );
  370. cmDspSysInstallCb(h, tlRt, "s-out-0",tlp, "reset", NULL );
  371. cmDspSysInstallCb(h, onb, "sym", scp, "send", NULL );
  372. cmDspSysInstallCb(h, onb, "sym", mfpRt,"s-in", NULL );
  373. cmDspSysInstallCb(h, mfpRt,"s-out-0",mfp, "sel", NULL );
  374. cmDspSysInstallCb(h, onb, "sym", pts, "on", NULL );
  375. cmDspSysInstallCb(h, pts, "on", wtRt, "s-in", NULL );
  376. cmDspSysInstallCb(h, wtRt,"s-out-0", wtp, "cmd", NULL );
  377. cmDspSysInstallCb(h, pts, "on", modp, "cmd", NULL );
  378. cmDspSysInstallCb(h, pts, "on", rpp, "cmd", NULL );
  379. cmDspSysInstallCb(h, onb, "sym", amCmd, "rewind",NULL );
  380. cmDspSysInstallCb(h, onb, "out", achan0,"reset", NULL );
  381. cmDspSysInstallCb(h, onb, "out", achan1,"reset", NULL );
  382. // stop connections
  383. cmDspSysInstallCb(h, wtp, "done",offb,"in", NULL ); // 'done' from WT simulates pressing Stop btn.
  384. cmDspSysInstallCb(h, tlp, "mfn", pts, "off", NULL ); // Prevents WT start on new audio file from TL.
  385. cmDspSysInstallCb(h, offb, "sym", mfp, "sel", NULL );
  386. cmDspSysInstallCb(h, offb, "sym", pts, "off", NULL );
  387. cmDspSysInstallCb(h, pts, "off", wtp, "cmd", NULL );
  388. cmDspSysInstallCb(h, pts, "off", modp,"cmd", NULL );
  389. cmDspSysInstallCb(h, offb, "sym", mop, "reset", NULL );
  390. // time-line to wave-table selection
  391. cmDspSysInstallCb(h, tlp, "absi", wtp, "beg", NULL );
  392. cmDspSysInstallCb(h, tlp, "aesi", wtp, "end", NULL );
  393. cmDspSysInstallCb(h, tlp, "afn", wtp, "fn", NULL );
  394. // time-line to MIDI file player selection
  395. cmDspSysInstallCb(h, tlp, "mbsi", mfp, "bsi", NULL );
  396. cmDspSysInstallCb(h, tlp, "mesi", mfp, "esi", NULL );
  397. cmDspSysInstallCb(h, tlp, "mfn", mfp, "fn", NULL );
  398. // score to score follower - to set initial search location
  399. cmDspSysInstallCb(h, scp, "sel", sfp, "index", NULL );
  400. cmDspSysInstallCb(h, scp, "sel", modp,"reset", NULL );
  401. //cmDspSysInstallCb(h, reload,"out", modp, "reload", NULL );
  402. // MIDI file player to score follower
  403. cmDspSysInstallCb(h, mfp, "smpidx", siRt, "f-in",NULL );
  404. cmDspSysInstallCb(h, siRt, "f-out-0", sfp, "smpidx",NULL );
  405. // leave siRt.f-out-1 unconnected because it should be ignored in 'simulate mode'
  406. cmDspSysInstallCb(h, mfp, "d1", d1Rt, "f-in", NULL );
  407. cmDspSysInstallCb(h, d1Rt, "f-out-0", sfp, "d1", NULL );
  408. cmDspSysInstallCb(h, d1Rt, "f-out-1", nmp, "d1", NULL );
  409. cmDspSysInstallCb(h, nmp, "d1", mop, "d1", NULL );
  410. cmDspSysInstallCb(h, mfp, "d0", d0Rt, "f-in", NULL );
  411. cmDspSysInstallCb(h, d0Rt, "f-out-0", sfp, "d0", NULL );
  412. cmDspSysInstallCb(h, d0Rt, "f-out-1", nmp, "d0", NULL );
  413. cmDspSysInstallCb(h, nmp, "d0", mop, "d0", NULL );
  414. cmDspSysInstallCb(h, mfp, "status", stRt, "f-in", NULL );
  415. cmDspSysInstallCb(h, stRt, "f-out-0", sfp, "status",NULL );
  416. cmDspSysInstallCb(h, stRt, "f-out-1", nmp, "status",NULL );
  417. cmDspSysInstallCb(h, nmp, "status", mop, "status",NULL );
  418. // MIDI input port
  419. cmDspSysInstallCb(h, mip, "smpidx", sfp, "smpidx", NULL );
  420. cmDspSysInstallCb(h, mip, "d1", sfp, "d1", NULL );
  421. cmDspSysInstallCb(h, mip, "d0", sfp, "d0", NULL );
  422. cmDspSysInstallCb(h, mip, "status", sfp, "status", NULL );
  423. // score follower to recd_play,modulator and printers
  424. cmDspSysInstallCb(h, sfp, "out", rpp, "index", NULL );
  425. cmDspSysInstallCb(h, sfp, "out", modp, "index", NULL );
  426. cmDspSysInstallCb(h, sfp, "recent", prp, "in", NULL ); // report 'recent' but only act on 'max' loc index
  427. cmDspSysInstallCb(h, prtb, "sym", sfp, "cmd", NULL );
  428. cmDspSysInstallCb(h, qtb, "sym", sfp, "cmd", NULL );
  429. // audio-midi sync connections
  430. cmDspSysInstallCb(h, tlp, "albl", asp, "afn", NULL );
  431. cmDspSysInstallCb(h, tlp, "mlbl", asp, "mfn", NULL );
  432. cmDspSysInstallCb(h, wtp, "fidx", asp, "asmp",NULL );
  433. cmDspSysInstallCb(h, mfp, "id", asp, "mid", NULL );
  434. cmDspSysInstallCb(h, offb,"sym", asp, "sel", NULL );
  435. //cmDspSysInstallCb(h, tlp, "absi", prp, "in", NULL );
  436. cmDspSysInstallCb(h, ws00p, "out", kr00, "wndn", NULL ); // wndSmpCnt->kr
  437. cmDspSysInstallCb(h, hf00p, "out", kr00, "hopf", NULL ); // hopFact->kr
  438. cmDspSysInstallCb(h, of00p, "val", kr00, "offs", NULL ); // offset->kr
  439. cmDspSysInstallCb(h, iv00p, "val", kr00, "invt", NULL ); // invert->kr
  440. cmDspSysInstallCb(h, wet00p, "val", kr00, "wet", NULL ); // wet->kr
  441. cmDspSysInstallCb(h, ws00p, "out", kr01, "wndn", NULL ); // wndSmpCnt->kr
  442. cmDspSysInstallCb(h, hf00p, "out", kr01, "hopf", NULL ); // hopFact->kr
  443. cmDspSysInstallCb(h, of00p, "val", kr01, "offs", NULL ); // offset->kr
  444. cmDspSysInstallCb(h, iv00p, "val", kr01, "invt", NULL ); // invert->kr
  445. cmDspSysInstallCb(h, wet00p, "val", kr01, "wet", NULL ); // wet->kr
  446. cmDspSysInstallCb(h, ws10p, "out", kr10, "wndn", NULL ); // wndSmpCnt->kr
  447. cmDspSysInstallCb(h, hf10p, "out", kr10, "hopf", NULL ); // hopFact->kr
  448. cmDspSysInstallCb(h, of10p, "val", kr10, "offs", NULL ); // offset->kr
  449. cmDspSysInstallCb(h, iv10p, "val", kr10, "invt", NULL ); // invert->kr
  450. cmDspSysInstallCb(h, wet10p, "val", kr10, "wet", NULL ); // wet->kr
  451. cmDspSysInstallCb(h, ws10p, "out", kr11, "wndn", NULL ); // wndSmpCnt->kr
  452. cmDspSysInstallCb(h, hf10p, "out", kr11, "hopf", NULL ); // hopFact->kr
  453. cmDspSysInstallCb(h, of10p, "val", kr11, "offs", NULL ); // offset->kr
  454. cmDspSysInstallCb(h, iv10p, "val", kr11, "invt", NULL ); // invert->kr
  455. cmDspSysInstallCb(h, wet10p, "val", kr11, "wet", NULL ); // wet->kr
  456. cmDspSysInstallCb( h, lasecs, "val", rpp, "curla", NULL ); // recd/play control
  457. cmDspSysInstallCb( h, dbpsec, "val", rpp, "frate", NULL );
  458. cmDspSysInstallCb(h, igain0, "val", ai0p, "gain", NULL ); // input gain control
  459. cmDspSysInstallCb(h, igain1, "val", ai1p, "gain", NULL );
  460. cmDspSysInstallCb(h, ogain0, "val", ao0p, "gain", NULL ); // output gain control
  461. cmDspSysInstallCb(h, ogain1, "val", ao1p, "gain", NULL );
  462. cmDspSysInstallCb(h, ogain2, "val", ao2p, "gain", NULL );
  463. cmDspSysInstallCb(h, ogain3, "val", ao3p, "gain", NULL );
  464. cmDspSysInstallCb(h, xfadMs, "val", fad0, "ms", NULL );
  465. cmDspSysInstallCb(h, xfadMs, "val", fad1, "ms", NULL );
  466. // Printer connections
  467. cmDspSysInstallCb(h, tlp, "afn", prp, "in", NULL );
  468. cmDspSysInstallCb(h, tlp, "mfn", prp, "in", NULL );
  469. cmDspSysInstallCb(h, tlp, "sel", prp, "in", NULL );
  470. cmDspSysInstallCb(h, modp, "mod0", md00p, "val", NULL );
  471. cmDspSysInstallCb(h, modp, "thr0", th00p, "val", NULL );
  472. cmDspSysInstallCb(h, modp, "upr0", us00p, "val", NULL );
  473. cmDspSysInstallCb(h, modp, "lwr0", ls00p, "val", NULL );
  474. cmDspSysInstallCb(h, modp, "mint0", min_thrh_0, "val", NULL );
  475. cmDspSysInstallCb(h, modp, "maxt0", max_thrh_0, "val", NULL );
  476. cmDspSysInstallCb(h, modp, "minu0", min_upr_0, "val", NULL );
  477. cmDspSysInstallCb(h, modp, "maxu0", max_upr_0, "val", NULL );
  478. cmDspSysInstallCb(h, modp, "minl0", min_lwr_0, "val", NULL );
  479. cmDspSysInstallCb(h, modp, "maxl0", max_lwr_0, "val", NULL );
  480. cmDspSysInstallCb(h, modp, "mod1", md10p, "val", NULL );
  481. cmDspSysInstallCb(h, modp, "thr1", th10p, "val", NULL );
  482. cmDspSysInstallCb(h, modp, "upr1", us10p, "val", NULL );
  483. cmDspSysInstallCb(h, modp, "lwr1", ls10p, "val", NULL );
  484. cmDspSysInstallCb(h, modp, "mint1", min_thrh_1, "val", NULL );
  485. cmDspSysInstallCb(h, modp, "maxt1", max_thrh_1, "val", NULL );
  486. cmDspSysInstallCb(h, modp, "minu1", min_upr_1, "val", NULL );
  487. cmDspSysInstallCb(h, modp, "maxu1", max_upr_1, "val", NULL );
  488. cmDspSysInstallCb(h, modp, "minl1", min_lwr_1, "val", NULL );
  489. cmDspSysInstallCb(h, modp, "maxl1", max_lwr_1, "val", NULL );
  490. cmDspSysInstallCb(h, modp, "xfad", xfadMs, "val", NULL );
  491. // =========================================================================
  492. // Cross fade connections for measurments
  493. //
  494. // active measure loc to xfad channel trigger
  495. cmDspSysInstallCb( h, amp, "scloc", achan0, "trig", NULL );
  496. cmDspSysInstallCb( h, amp, "scloc", achan1, "trig", NULL );
  497. //cmDspSysInstallCb( h, modp, "post", achan0, "trig", NULL );
  498. //cmDspSysInstallCb( h, modp, "post", achan1, "trig", NULL );
  499. // xfade router channel selection
  500. cmDspSysInstallCb( h, achan0, "ch", mod_rt_00, "sel", NULL );
  501. cmDspSysInstallCb( h, achan0, "ch", thr_rt_00, "sel", NULL );
  502. cmDspSysInstallCb( h, achan0, "ch", upr_rt_00, "sel", NULL );
  503. cmDspSysInstallCb( h, achan0, "ch", lwr_rt_00, "sel", NULL );
  504. cmDspSysInstallCb( h, achan1, "ch", mod_rt_10, "sel", NULL );
  505. cmDspSysInstallCb( h, achan1, "ch", thr_rt_10, "sel", NULL );
  506. cmDspSysInstallCb( h, achan1, "ch", upr_rt_10, "sel", NULL );
  507. cmDspSysInstallCb( h, achan1, "ch", lwr_rt_10, "sel", NULL );
  508. // active measure to meas->param mapping routers
  509. cmDspSysInstallCb(h, amp, "even", even_sr_00, "val_in", NULL );
  510. cmDspSysInstallCb(h, amp, "even", even_sr_10, "val_in", NULL );
  511. cmDspSysInstallCb(h, amp, "dyn", dyn_sr_00, "val_in", NULL );
  512. cmDspSysInstallCb(h, amp, "dyn", dyn_sr_10, "val_in", NULL );
  513. cmDspSysInstallCb(h, amp, "tempo", tempo_sr_00,"val_in", NULL );
  514. cmDspSysInstallCb(h, amp, "tempo", tempo_sr_10,"val_in", NULL );
  515. cmDspSysInstallCb(h, amp, "cost", cost_sr_00, "val_in", NULL );
  516. cmDspSysInstallCb(h, amp, "cost", cost_sr_10, "val_in", NULL );
  517. // active-channel to cross-fade connections
  518. cmDspSysInstallCb(h, achan0, "reset", fad0, "reset", NULL);
  519. cmDspSysInstallCb(h, achan0, "gate-0", fad0, "gate-0", NULL );
  520. cmDspSysInstallCb(h, achan0, "gate-1", fad0, "gate-1", NULL );
  521. cmDspSysInstallCb(h, fad0, "state-0", achan0, "dis-0", NULL );
  522. cmDspSysInstallCb(h, fad0, "state-1", achan0, "dis-1", NULL );
  523. cmDspSysInstallCb(h, achan1, "reset", fad1, "reset", NULL);
  524. cmDspSysInstallCb(h, achan1, "gate-0", fad1, "gate-0", NULL );
  525. cmDspSysInstallCb(h, achan1, "gate-1", fad1, "gate-1", NULL );
  526. cmDspSysInstallCb(h, fad1, "state-0", achan1, "dis-0", NULL );
  527. cmDspSysInstallCb(h, fad1, "state-1", achan1, "dis-1", NULL );
  528. // =========================================================================
  529. // Scale Range Connections 00
  530. //
  531. // DYN -> scaleRange -> Router -> var scaleRange
  532. cmDspSysInstallCb(h, min_dyn_0, "val", dyn_sr_00, "min_in", NULL );
  533. cmDspSysInstallCb(h, max_dyn_0, "val", dyn_sr_00, "max_in", NULL );
  534. cmDspSysInstallCb(h, dyn_sr_00, "val_out", dyn_rt_00, "f-in", NULL );
  535. cmDspSysInstallCb(h, menu_dyn_0, "out", dyn_rt_00, "sel", NULL );
  536. cmDspSysInstallCb(h, dyn_rt_00, "f-out-0", thrh_sr_00, "val_in", NULL );
  537. cmDspSysInstallCb(h, dyn_rt_00, "f-out-1", upr_sr_00, "val_in", NULL );
  538. cmDspSysInstallCb(h, dyn_rt_00, "f-out-2", lwr_sr_00, "val_in", NULL );
  539. // EVEN -> scaleRange -> Router -> var scaleRange
  540. cmDspSysInstallCb(h, min_even_0, "val", even_sr_00, "min_in", NULL );
  541. cmDspSysInstallCb(h, max_even_0, "val", even_sr_00, "max_in", NULL );
  542. cmDspSysInstallCb(h, even_sr_00, "val_out", even_rt_00, "f-in", NULL );
  543. cmDspSysInstallCb(h, menu_even_0, "out", even_rt_00, "sel", NULL );
  544. cmDspSysInstallCb(h, even_rt_00, "f-out-0", thrh_sr_00, "val_in", NULL );
  545. cmDspSysInstallCb(h, even_rt_00, "f-out-1", upr_sr_00, "val_in", NULL );
  546. cmDspSysInstallCb(h, even_rt_00, "f-out-2", lwr_sr_00, "val_in", NULL );
  547. // TEMPO -> scaleRange -> Router -> var scaleRange
  548. cmDspSysInstallCb(h, min_tempo_0, "val", tempo_sr_00, "min_in", NULL );
  549. cmDspSysInstallCb(h, max_tempo_0, "val", tempo_sr_00, "max_in", NULL );
  550. cmDspSysInstallCb(h, tempo_sr_00, "val_out", tempo_rt_00, "f-in", NULL );
  551. cmDspSysInstallCb(h, menu_tempo_0, "out", tempo_rt_00, "sel", NULL );
  552. cmDspSysInstallCb(h, tempo_rt_00, "f-out-0", thrh_sr_00, "val_in", NULL );
  553. cmDspSysInstallCb(h, tempo_rt_00, "f-out-1", upr_sr_00, "val_in", NULL );
  554. cmDspSysInstallCb(h, tempo_rt_00, "f-out-2", lwr_sr_00, "val_in", NULL );
  555. // COST -> scaleRange -> Router -> var scaleRange
  556. cmDspSysInstallCb(h, min_cost_0, "val", cost_sr_00, "min_in", NULL );
  557. cmDspSysInstallCb(h, max_cost_0, "val", cost_sr_00, "max_in", NULL );
  558. cmDspSysInstallCb(h, cost_sr_00, "val_out", cost_rt_00, "f-in", NULL );
  559. cmDspSysInstallCb(h, menu_cost_0, "out", cost_rt_00, "sel", NULL );
  560. cmDspSysInstallCb(h, cost_rt_00, "f-out-0", thrh_sr_00, "val_in", NULL );
  561. cmDspSysInstallCb(h, cost_rt_00, "f-out-1", upr_sr_00, "val_in", NULL );
  562. cmDspSysInstallCb(h, cost_rt_00, "f-out-2", lwr_sr_00, "val_in", NULL );
  563. // MODE -> FX
  564. cmDspSysInstallCb(h, md00p, "val", mod_rt_00, "f-in", NULL );
  565. cmDspSysInstallCb(h, mod_rt_00, "f-out-0", kr00, "mode", NULL ); // mode->kr
  566. cmDspSysInstallCb(h, mod_rt_00, "f-out-1", kr01, "mode", NULL ); // mode->kr
  567. // THRESH scaleRange -> FX
  568. cmDspSysInstallCb(h, min_thrh_0, "val", thrh_sr_00, "min_out", NULL );
  569. cmDspSysInstallCb(h, max_thrh_0, "val", thrh_sr_00, "max_out", NULL );
  570. cmDspSysInstallCb(h, thrh_sr_00, "val_out", th00p, "val", NULL );
  571. cmDspSysInstallCb(h, th00p, "val", thr_rt_00, "f-in", NULL );
  572. cmDspSysInstallCb(h, thr_rt_00, "f-out-0", kr00, "thrh", NULL ); // thresh->kr
  573. cmDspSysInstallCb(h, thr_rt_00, "f-out-1", kr01, "thrh", NULL ); // thresh->kr
  574. // UPR scaleRange -> FX
  575. cmDspSysInstallCb(h, min_upr_0, "val", upr_sr_00, "min_out", NULL );
  576. cmDspSysInstallCb(h, max_upr_0, "val", upr_sr_00, "max_out", NULL );
  577. cmDspSysInstallCb(h, upr_sr_00, "val_out", us00p, "val", NULL );
  578. cmDspSysInstallCb(h, us00p, "val", upr_rt_00, "f-in", NULL );
  579. cmDspSysInstallCb(h, upr_rt_00, "f-out-0", kr00, "uprs", NULL ); // uprSlope->kr
  580. cmDspSysInstallCb(h, upr_rt_00, "f-out-1", kr01, "uprs", NULL ); // uprSlope->kr
  581. // LWR scaleRange -> FX
  582. cmDspSysInstallCb(h, min_lwr_0, "val", lwr_sr_00, "min_out", NULL );
  583. cmDspSysInstallCb(h, max_lwr_0, "val", lwr_sr_00, "max_out", NULL );
  584. cmDspSysInstallCb(h, lwr_sr_00, "val_out", ls00p, "val", NULL );
  585. cmDspSysInstallCb(h, ls00p, "val", lwr_rt_00, "f-in", NULL );
  586. cmDspSysInstallCb(h, lwr_rt_00, "f-out-0", kr00, "lwrs", NULL ); // lwrSlope->kr
  587. cmDspSysInstallCb(h, lwr_rt_00, "f-out-1", kr01, "lwrs", NULL ); // lwrSlope->kr
  588. // =========================================================================
  589. // Scale Range Connections 10
  590. //
  591. // DYN -> scaleRange -> Router -> var scaleRange
  592. cmDspSysInstallCb(h, min_dyn_1, "val", dyn_sr_10, "min_in", NULL );
  593. cmDspSysInstallCb(h, max_dyn_1, "val", dyn_sr_10, "max_in", NULL );
  594. cmDspSysInstallCb(h, dyn_sr_10, "val_out", dyn_rt_10, "f-in", NULL );
  595. cmDspSysInstallCb(h, menu_dyn_1, "out", dyn_rt_10, "sel", NULL );
  596. cmDspSysInstallCb(h, dyn_rt_10, "f-out-0", thrh_sr_10, "val_in", NULL );
  597. cmDspSysInstallCb(h, dyn_rt_10, "f-out-1", upr_sr_10, "val_in", NULL );
  598. cmDspSysInstallCb(h, dyn_rt_10, "f-out-2", lwr_sr_10, "val_in", NULL );
  599. // EVEN -> scaleRange -> Router -> var scaleRange
  600. cmDspSysInstallCb(h, min_even_1, "val", even_sr_10, "min_in", NULL );
  601. cmDspSysInstallCb(h, max_even_1, "val", even_sr_10, "max_in", NULL );
  602. cmDspSysInstallCb(h, even_sr_10, "val_out", even_rt_10, "f-in", NULL );
  603. cmDspSysInstallCb(h, menu_even_1, "out", even_rt_10, "sel", NULL );
  604. cmDspSysInstallCb(h, even_rt_10, "f-out-0", thrh_sr_10, "val_in", NULL );
  605. cmDspSysInstallCb(h, even_rt_10, "f-out-1", upr_sr_10, "val_in", NULL );
  606. cmDspSysInstallCb(h, even_rt_10, "f-out-2", lwr_sr_10, "val_in", NULL );
  607. // TEMPO -> scaleRange -> Router -> var scaleRange
  608. cmDspSysInstallCb(h, min_tempo_1, "val", tempo_sr_10, "min_in", NULL );
  609. cmDspSysInstallCb(h, max_tempo_1, "val", tempo_sr_10, "max_in", NULL );
  610. cmDspSysInstallCb(h, tempo_sr_10, "val_out", tempo_rt_10, "f-in", NULL );
  611. cmDspSysInstallCb(h, menu_tempo_1, "out", tempo_rt_10, "sel", NULL );
  612. cmDspSysInstallCb(h, tempo_rt_10, "f-out-0", thrh_sr_10, "val_in", NULL );
  613. cmDspSysInstallCb(h, tempo_rt_10, "f-out-1", upr_sr_10, "val_in", NULL );
  614. cmDspSysInstallCb(h, tempo_rt_10, "f-out-2", lwr_sr_10, "val_in", NULL );
  615. // COST -> scaleRange -> Router -> var scaleRange
  616. cmDspSysInstallCb(h, min_cost_1, "val", cost_sr_10, "min_in", NULL );
  617. cmDspSysInstallCb(h, max_cost_1, "val", cost_sr_10, "max_in", NULL );
  618. cmDspSysInstallCb(h, cost_sr_10, "val_out", cost_rt_10, "f-in", NULL );
  619. cmDspSysInstallCb(h, menu_cost_1, "out", cost_rt_10, "sel", NULL );
  620. cmDspSysInstallCb(h, cost_rt_10, "f-out-0", thrh_sr_10, "val_in", NULL );
  621. cmDspSysInstallCb(h, cost_rt_10, "f-out-1", upr_sr_10, "val_in", NULL );
  622. cmDspSysInstallCb(h, cost_rt_10, "f-out-2", lwr_sr_10, "val_in", NULL );
  623. // MODE -> FX
  624. cmDspSysInstallCb(h, md10p, "val", mod_rt_10, "f-in", NULL );
  625. cmDspSysInstallCb(h, mod_rt_10, "f-out-0", kr10, "mode", NULL ); // mode->kr
  626. cmDspSysInstallCb(h, mod_rt_10, "f-out-1", kr11, "mode", NULL ); // mode->kr
  627. // THRESH scaleRange -> FX
  628. cmDspSysInstallCb(h, min_thrh_1, "val", thrh_sr_10, "min_out", NULL );
  629. cmDspSysInstallCb(h, max_thrh_1, "val", thrh_sr_10, "max_out", NULL );
  630. cmDspSysInstallCb(h, thrh_sr_10, "val_out", th10p, "val", NULL );
  631. cmDspSysInstallCb(h, th10p, "val", thr_rt_10, "f-in", NULL );
  632. cmDspSysInstallCb(h, thr_rt_10, "f-out-0", kr10, "thrh", NULL ); // thresh->kr
  633. cmDspSysInstallCb(h, thr_rt_10, "f-out-1", kr11, "thrh", NULL ); // thresh->kr
  634. // UPR scaleRange -> FX
  635. cmDspSysInstallCb(h, min_upr_1, "val", upr_sr_10, "min_out", NULL );
  636. cmDspSysInstallCb(h, max_upr_1, "val", upr_sr_10, "max_out", NULL );
  637. cmDspSysInstallCb(h, upr_sr_10, "val_out", us10p, "val", NULL );
  638. cmDspSysInstallCb(h, us10p, "val", upr_rt_10, "f-in", NULL );
  639. cmDspSysInstallCb(h, upr_rt_10, "f-out-0", kr10, "uprs", NULL ); // uprSlope->kr
  640. cmDspSysInstallCb(h, upr_rt_10, "f-out-1", kr11, "uprs", NULL ); // uprSlope->kr
  641. // LWR scaleRange -> FX
  642. cmDspSysInstallCb(h, min_lwr_1, "val", lwr_sr_10, "min_out", NULL );
  643. cmDspSysInstallCb(h, max_lwr_1, "val", lwr_sr_10, "max_out", NULL );
  644. cmDspSysInstallCb(h, lwr_sr_10, "val_out", ls10p, "val", NULL );
  645. cmDspSysInstallCb(h, ls10p, "val", lwr_rt_10, "f-in", NULL );
  646. cmDspSysInstallCb(h, lwr_rt_10, "f-out-0", kr10, "lwrs", NULL ); // lwrSlope->kr
  647. cmDspSysInstallCb(h, lwr_rt_10, "f-out-1", kr11, "lwrs", NULL ); // lwrSlope->kr
  648. cmDspSysNewPage(h,"Compressor");
  649. cmDspInst_t* cmp0_byp = cmDspSysAllocCheckP( h, compPreGrpSymId, NULL, "Bypass0", 1.0 );
  650. cmDspInst_t* cmp0_igain = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "In Gain0", 0.0, 10.0, 0.1, cmpInGain );
  651. cmDspInst_t* cmp0_thr = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "ThreshDb0", -100.0, 0.0, 0.1, cmpThreshDb);
  652. cmDspInst_t* cmp0_rat = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "Ratio0", 0.1, 100, 0.1, cmpRatio_num);
  653. cmDspInst_t* cmp0_atk = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "Atk Ms0", 0.0, 1000.0, 0.1, cmpAtkMs);
  654. cmDspInst_t* cmp0_rls = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "Rls Ms0", 0.0, 1000.0, 0.1, cmpRlsMs);
  655. cmDspInst_t* cmp0_mkup = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "Makeup0", 0.0, 10.0, 0.01, cmpMakeup);
  656. cmDspInst_t* cmp0_wnd = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "Wnd Ms0", 1.0, cmpWndMaxMs, 1.0, cmpWndMs );
  657. cmDspInst_t* cmp0_mtr = cmDspSysAllocInst(h,"Meter","Env0", 3, 0.0, 0.0, 1.0);
  658. cmDspSysInstallCb(h, cmp0_byp, "out", cmp0, "bypass", NULL );
  659. cmDspSysInstallCb(h, cmp0_igain,"val", cmp0, "igain", NULL );
  660. cmDspSysInstallCb(h, cmp0_thr, "val", cmp0, "thr", NULL );
  661. cmDspSysInstallCb(h, cmp0_rat, "val", cmp0, "ratio", NULL );
  662. cmDspSysInstallCb(h, cmp0_atk, "val", cmp0, "atk", NULL );
  663. cmDspSysInstallCb(h, cmp0_rls, "val", cmp0, "rls", NULL );
  664. cmDspSysInstallCb(h, cmp0_mkup, "val", cmp0, "ogain", NULL );
  665. cmDspSysInstallCb(h, cmp0_wnd, "val", cmp0, "wnd", NULL );
  666. cmDspSysInstallCb(h, cmp0, "env", cmp0_mtr, "in", NULL );
  667. cmDspSysNewColumn(h,0);
  668. cmDspInst_t* cmp1_byp = cmDspSysAllocCheckP( h, compPreGrpSymId, NULL, "Bypass1", 1.0 );
  669. cmDspInst_t* cmp1_igain = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "In Gain1", 0.0, 10.0, 0.1, cmpInGain);
  670. cmDspInst_t* cmp1_thr = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "ThreshDb1", -100.0, 0.0, 0.1, cmpThreshDb);
  671. cmDspInst_t* cmp1_rat = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "Ratio1", 0.1, 100, 0.1, cmpRatio_num);
  672. cmDspInst_t* cmp1_atk = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "Atk Ms1", 0.0, 1000.0, 0.1, cmpAtkMs);
  673. cmDspInst_t* cmp1_rls = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "Rls Ms1", 0.0, 1000.0, 0.1, cmpRlsMs);
  674. cmDspInst_t* cmp1_mkup = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "Makeup1", 0.0, 10.0, 0.01, cmpMakeup);
  675. cmDspInst_t* cmp1_wnd = cmDspSysAllocScalarP( h, compPreGrpSymId, NULL, "Wnd Ms1", 1.0, cmpWndMaxMs, 1.0, cmpWndMs );
  676. cmDspInst_t* cmp1_mtr = cmDspSysAllocInst(h,"Meter","Env1", 3, 0.0, 0.0, 1.0);
  677. cmDspSysInstallCb(h, cmp1_byp, "out", cmp1, "bypass", NULL );
  678. cmDspSysInstallCb(h, cmp1_igain,"val", cmp1, "igain", NULL );
  679. cmDspSysInstallCb(h, cmp1_thr, "val", cmp1, "thr", NULL );
  680. cmDspSysInstallCb(h, cmp1_rat, "val", cmp1, "ratio", NULL );
  681. cmDspSysInstallCb(h, cmp1_atk, "val", cmp1, "atk", NULL );
  682. cmDspSysInstallCb(h, cmp1_rls, "val", cmp1, "rls", NULL );
  683. cmDspSysInstallCb(h, cmp1_mkup, "val", cmp1, "ogain", NULL );
  684. cmDspSysInstallCb(h, cmp1_wnd, "val", cmp1, "wnd", NULL );
  685. cmDspSysInstallCb(h, cmp1, "env", cmp1_mtr, "in", NULL );
  686. //--------------- Compressor Preset controls
  687. cmDspSysNewColumn(h,0);
  688. cmDspInst_t* comp_preset = cmDspSysAllocInst( h, "Preset", NULL, 1, compPreGrpSymId );
  689. cmDspInst_t* comp_presetLbl = cmDspSysAllocInst( h, "Text", "Comp_Preset", 1, "" );
  690. cmDspInst_t* comp_storeBtn = cmDspSysAllocButton( h, "comp_store", 0);
  691. cmDspInst_t* comp_recallBtn = cmDspSysAllocButton( h, "comp_recall", 0);
  692. cmDspInst_t* comp_pts = cmDspSysAllocInst( h, "PortToSym", NULL, 2, "store", "recall");
  693. cmDspSysInstallCb( h, comp_presetLbl, "val", comp_preset, "label",NULL);
  694. cmDspSysInstallCb( h, comp_storeBtn, "out", comp_pts, "store", NULL );
  695. cmDspSysInstallCb( h, comp_recallBtn, "out", comp_pts, "recall", NULL );
  696. cmDspSysInstallCb( h, comp_pts, "store", comp_preset, "cmd", NULL );
  697. cmDspSysInstallCb( h, comp_pts, "recall", comp_preset, "cmd", NULL );
  698. return rc;
  699. }
  700. cmDspRC_t _cmDspSysPgm_KrLive(cmDspSysH_t h, void** userPtrPtr )
  701. {
  702. cmDspRC_t rc = kOkDspRC;
  703. return rc;
  704. }