Browse Source

cmDspPgm.c : Changed _cmDspSysPgm_Stereo_Through() to support Focusrite interface.

master
kevin 3 years ago
parent
commit
a5b38e78af
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/dsp/cmDspPgm.c

+ 2
- 2
src/dsp/cmDspPgm.c View File

@@ -386,8 +386,8 @@ cmDspRC_t _cmDspSysPgm_Stereo_Through( cmDspSysH_t h, void** userPtrPtr )
386 386
   cmDspInst_t* ai1p = cmDspSysAllocInst(h,"AudioIn", NULL,   1, 3 );
387 387
    
388 388
   // MOTU Traveler: Use channels 2&3 (out plugs:3&4) because 0&1 do not show up on plugs 1&2.
389
-  cmDspInst_t* ao0p = cmDspSysAllocInst(h,"AudioOut",NULL,   1, 2 );
390
-  cmDspInst_t* ao1p = cmDspSysAllocInst(h,"AudioOut",NULL,   1, 3 );
389
+  cmDspInst_t* ao0p = cmDspSysAllocInst(h,"AudioOut",NULL,   1, 0 );
390
+  cmDspInst_t* ao1p = cmDspSysAllocInst(h,"AudioOut",NULL,   1, 1 );
391 391
 
392 392
   cmDspInst_t* im0p = cmDspSysAllocInst(h,"AMeter","In 0",  0);
393 393
   cmDspInst_t* im1p = cmDspSysAllocInst(h,"AMeter","In 1", 0);

Loading…
Cancel
Save