Make send automation work (#4734).

git-svn-id: svn://localhost/ardour2/branches/3.0@12650 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington
2012-06-11 10:42:30 +00:00
parent 8f371cd60d
commit c40437430a
13 changed files with 56 additions and 11 deletions

View File

@@ -134,6 +134,17 @@ ProcessThread::gain_automation_buffer()
return g;
}
gain_t*
ProcessThread::send_gain_automation_buffer()
{
ThreadBuffers* tb = _private_thread_buffers->get();
assert (tb);
gain_t* g = tb->send_gain_automation_buffer;
assert (g);
return g;
}
pan_t**
ProcessThread::pan_automation_buffer()
{