mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 21:56:30 +01:00
SMFSource: enhanced debugging output to reveal more of the problem
git-svn-id: svn://localhost/ardour2/branches/3.0@4976 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
ad2757c84f
commit
ece2bacb2c
1 changed files with 1 additions and 1 deletions
|
|
@ -186,7 +186,7 @@ SMFSource::write_unlocked (MidiRingBuffer<nframes_t>& source, sframes_t position
|
|||
|
||||
while (true) {
|
||||
bool ret = source.peek_time(&event_time);
|
||||
g_debug ("event_time: %u, last_write_end: %lu, duration: %u", event_time, _last_write_end, duration);
|
||||
g_debug ("position: %lu, event_time: %u, last_write_end: %lu, duration: %u", position, event_time, _last_write_end, duration);
|
||||
if (!ret || event_time > _last_write_end + duration) {
|
||||
if (!ret) g_debug ("peek failed");
|
||||
if (event_time > _last_write_end + duration) g_debug ("event_time: %u > last_write_end: %lu + duration: %u", event_time, _last_write_end, duration);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue