From fc9f79625797b8e20479ab65f99ec43eed4e442d Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 22 Jan 2022 00:31:54 +0100 Subject: [PATCH] Revert "Process-lock is required when changing processors" This reverts commit 0a213e71b3e6b97536022a05f3210f06530bbf91. which needs a better solution to prevent deadlock in case the lock is already taken. --- libs/ardour/track.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/ardour/track.cc b/libs/ardour/track.cc index 44ee92ee39..0eaabbb365 100644 --- a/libs/ardour/track.cc +++ b/libs/ardour/track.cc @@ -106,7 +106,6 @@ Track::init () */ if (!is_auditioner()) { - Glib::Threads::Mutex::Lock lm (AudioEngine::instance()->process_lock ()); boost::shared_ptr tb (new TriggerBox (_session, data_type ())); tb->set_owner (this); add_processor (tb, _polarity);