Re: [LAD] panning thoughts

From: Eric Kampman <erickampman@email-addr-hidden>
Date: Fri Nov 12 2010 - 17:11:29 EET

On Nov 12, 2010, at 1:18 AM, fons@email-addr-hidden wrote:
>
> If you are concerned about the CPU use, consider this:
>
> panning value x = [-1..+1]
>
> L_gain = (1 - x) * (0.7 + 0.2 * x)
> R_gain = (1 + x) * (0.7 - 0.2 * x)
>
> which will be -3.1 dB at the center. You can modify this
> modyfying the 0.7 and 0.2 constants, for example
>
> L_gain = (1 - x) * (0.65 + 0.15 * x)
> R_gain = (1 + x) * (0.65 - 0.15 * x)
>
> will produce -3.75 dB, and
>
> L_gain = (1 - x) * (0.6 + 0.1 * x)
> R_gain = (1 + x) * (0.6 - 0.1 * x)
>
> will produce -4.4 dB, etc.

Thanks! I thought a bit about quadratics but didn't pursue it.

_______________________________________________
Linux-audio-dev mailing list
Linux-audio-dev@email-addr-hidden
http://lists.linuxaudio.org/listinfo/linux-audio-dev
Received on Fri Nov 12 20:15:01 2010

This archive was generated by hypermail 2.1.8 : Fri Nov 12 2010 - 20:15:01 EET