mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 21:56:30 +01:00
initial pass at session-renaming functionality
git-svn-id: svn://localhost/ardour2/branches/3.0@9876 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
2d83ffc45a
commit
a5efa9a500
13 changed files with 263 additions and 21 deletions
|
|
@ -265,6 +265,7 @@ framecnt_t
|
|||
MidiSource::midi_write (MidiRingBuffer<framepos_t>& source, framepos_t source_start, framecnt_t duration)
|
||||
{
|
||||
Glib::Mutex::Lock lm (_lock);
|
||||
cerr << "MidiSource calling write unlocked\n";
|
||||
const framecnt_t ret = write_unlocked (source, source_start, duration);
|
||||
_last_write_end += duration;
|
||||
return ret;
|
||||
|
|
@ -310,7 +311,7 @@ void
|
|||
MidiSource::mark_streaming_write_completed ()
|
||||
{
|
||||
if (_model) {
|
||||
_model->end_write(false);
|
||||
_model->end_write (false);
|
||||
}
|
||||
|
||||
_writing = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue