L: convert WTL stereo panner
This commit is contained in:
parent
8c9f0badbb
commit
5ec4792bf8
@ -34,6 +34,7 @@
|
||||
|
||||
#include "ardour/debug.h"
|
||||
#include "ardour/panner_manager.h"
|
||||
#include "ardour/profile.h"
|
||||
|
||||
#include "ardour/search_paths.h"
|
||||
|
||||
@ -190,7 +191,7 @@ PannerManager::select_panner (ChanCount in, ChanCount out, std::string const uri
|
||||
PanPluginDescriptor const& d ((*p)->descriptor);
|
||||
|
||||
/* backward compat */
|
||||
if (Stateful::loading_state_version < 6000 && d.panner_uri == "http://ardour.org/plugin/panner_2in2out") {
|
||||
if (Stateful::loading_state_version < 6000 && d.panner_uri == "http://ardour.org/plugin/panner_2in2out" && !Profile->get_livetrax ()) {
|
||||
if (d.in == nin && d.out == nout) {
|
||||
priority = 9999;
|
||||
rv = *p;
|
||||
|
@ -127,7 +127,7 @@ PannerShell::configure_io (ChanCount in, ChanCount out)
|
||||
fatal << _("No panner found: check that panners are being discovered correctly during startup.") << endmsg;
|
||||
abort(); /*NOTREACHED*/
|
||||
}
|
||||
if (Stateful::loading_state_version < 6000 && pi->descriptor.in == 2) {
|
||||
if (Stateful::loading_state_version < 6000 && pi->descriptor.in == 2 && !Profile->get_livetrax ()) {
|
||||
_user_selected_panner_uri = pi->descriptor.panner_uri;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user