View Single Post
Old 08-16-2013, 01:48 PM   #19
DeBased
Human being with feelings
 
DeBased's Avatar
 
Join Date: Jun 2010
Location: UK
Posts: 412
Default

edit: No I was wrong (but it would make more sense to me like that):

pdc.. examples sammples are wrong:

Code:
pdc_bot_ch=0; pdc_top_ch=2; // delays the first two channels (spl0/spl1).
pdc_bot_ch=2; pdc_top_ch=5; // delays channels spl2,spl3, and spl4.
pdc_top_ch is inclusive, so should be one less:

Code:
pdc_bot_ch=0; pdc_top_ch=1; // delays the first two channels (spl0/spl1).
pdc_bot_ch=2; pdc_top_ch=4; // delays channels spl2,spl3, and spl4.
__________________
Reaper5, Win10Pro, Ryzen 5950x/64GB, RME UFX/BabyFace Pro, Behringer X-Touch
- my true 'global' (project-tab independent) Send/Receive FX
- my Behringer X-touch mods + XCtrl mode for CSI (coloured scribble strips!)

Last edited by DeBased; 08-17-2013 at 03:19 AM. Reason: was wrong
DeBased is offline   Reply With Quote