summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-09-03 17:04:15 +0000
committerCarl Hetherington <carl@carlh.net>2010-09-03 17:04:15 +0000
commitad547e53fc168410b22628a8cb125e8d4da4b293 (patch)
tree397d2edeb9f3f8389260e564aff197e920014bf1 /libs
parent5b90aab4d8837316fc5835083999747c56f24d58 (diff)
Don't add standard processors twice to routes from 2.X sessions. Fixes #3434.
git-svn-id: svn://localhost/ardour2/branches/3.0@7740 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/route.cc17
1 files changed, 0 insertions, 17 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 72db9a3914..533edc84fd 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -2110,23 +2110,6 @@ Route::_set_state_2X (const XMLNode& node, int version)
}
}
- /* add standard processors */
-
- //_meter.reset (new PeakMeter (_session));
- //add_processor (_meter, PreFader);
-
- if (is_monitor()) {
- /* where we listen to tracks */
- _intreturn.reset (new InternalReturn (_session));
- add_processor (_intreturn, PreFader);
-
- _monitor_control.reset (new MonitorProcessor (_session));
- add_processor (_monitor_control, PostFader);
- }
-
- _main_outs.reset (new Delivery (_session, _output, _mute_master, _name, Delivery::Main));
- add_processor (_main_outs, PostFader);
-
/* IOs */
nlist = node.children ();