Change default stereo panner to equal power balance

The stereo-width panner is not generally useful. In order to
change the azimuth, width has to be reduced, which usually leads
to comb-filter artifacts.

Equal power stereo, also matches the default mono to stereo panner
better than the stereo-width panner.

Last but not least, control surfaces only have an azimuth control
knob, without an easy way to reduce width, this leaves
the panner insensitive.
This commit is contained in:
Robin Gareus 2020-03-15 21:39:53 +01:00
parent dbd4b9d07d
commit a7a781971e
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
6 changed files with 56 additions and 37 deletions

View file

@ -67,7 +67,7 @@ static PanPluginDescriptor _descriptor = {
"http://ardour.org/plugin/panner_1in2out",
"http://ardour.org/plugin/panner_1in2out#ui",
1, 2,
10000,
20,
Panner1in2out::factory
};

View file

@ -65,7 +65,7 @@ static PanPluginDescriptor _descriptor = {
"http://ardour.org/plugin/panner_2in2out",
"http://ardour.org/plugin/panner_2in2out#ui",
2, 2,
10000,
20,
Panner2in2out::factory
};

View file

@ -64,7 +64,7 @@ static PanPluginDescriptor _descriptor = {
"http://ardour.org/plugin/panner_balance",
"http://ardour.org/plugin/panner_balance#ui",
2, 2,
2000,
25,
Pannerbalance::factory
};

View file

@ -55,7 +55,7 @@ static PanPluginDescriptor _descriptor = {
"http://ardour.org/plugin/panner_vbap",
"http://ardour.org/plugin/panner_vbap#ui",
-1, -1,
1000,
10,
VBAPanner::factory
};