summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-04-10 15:25:27 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-04-10 15:25:27 +0000
commit760db6493b61824ae8a583154b4a3bcacbba56cc (patch)
tree922a4f02c4c724a87755eda065e4666f37466880 /gtk2_ardour
parentfcff349ba55fd77f106e2dde96c34bce3e99609b (diff)
call ProcessThread::init() to correctly setup per-thread process buffers for use during freeze() operations
git-svn-id: svn://localhost/ardour2/branches/3.0@11867 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/editor_ops.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc
index 92d4ed63f5..ee78056b7f 100644
--- a/gtk2_ardour/editor_ops.cc
+++ b/gtk2_ardour/editor_ops.cc
@@ -3389,6 +3389,8 @@ Editor::_freeze_thread (void* arg)
void*
Editor::freeze_thread ()
{
+ /* create per-thread buffers for process() calls */
+ ProcessThread::init ();
/* create event pool because we may need to talk to the session */
SessionEvent::create_per_thread_pool ("freeze events", 64);
/* create per-thread buffers for process() tree to use */