I was having this thought that if you have two kickdrums and you want to make their stereoimage a bit wider with panning, not much just slightly, like to 10 o clock and 2 o clock. The first thing I thought that will be a problem is that I would still need/want to have the bass-region in the center to avoid larger phase problems. With Live-PA this is easy because of the crossfaders that (usually) have the subbasses mono, but what in your opinion is the smartest choise to do this in DAW-world? I mean is there a plugin that would have a frequency crossfader slider so that it would make everything below x Hz mono and leave the panning above as is? I know it even wouldn't be that hard to make, it would require something like this (in pseudocode)
Code:
function monocrossover(inputsignal, crossover)
{
signal1[L] = highpass(inputsignal[L], crossover);
signal2[L] = highpass(inputsignal[L], crossover);
signal1[R] = lowpass(inputsignal[R], crossover);
signal2[R] = lowpass(inputsignal[R], crossover);
signal3 = (signal1[L] + signal1[L]) / 2;
final[L] = signal3 + signal2[L];
final[R] = signal3 + signal2[R];
return (final);
}
//function call
signal = monocrossover(signal, 110);