// Binaural Frequency Shifter // Copyright 2009 Les Hall // This software is protected by the GNU General Public License // Frequency shift amount // Enter 1.0 for no shift, 2.0 for doubling the frequency, etc. // Do not enter 0.0 as this will cause a divide by zero error 1.05 => float upshift; 1.0 / upshift => float downshift; adc => PitShift ps_right => dac.right; adc => PitShift ps_left => dac.left; 1.0 => ps_right.mix => ps_left.mix; upshift => ps_right.shift; downshift => ps_left.shift; while (true) { second => now; }