13
0

Update diskstream statistics when rolling. Should fix #3067.

git-svn-id: svn://localhost/ardour2/branches/3.0@7096 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-05-11 23:22:15 +00:00
parent ac3265d7f4
commit d60ca669a0

View File

@ -359,6 +359,8 @@ Session::process_with_events (nframes_t nframes)
return;
}
get_track_statistics ();
nframes -= this_nframes;
if (frames_moved < 0) {
@ -706,6 +708,8 @@ Session::follow_slave_silently (nframes_t nframes, float slave_speed)
silent_process_routes (nframes, need_butler);
get_track_statistics ();
if (need_butler) {
_butler->summon ();
}
@ -795,6 +799,8 @@ Session::process_without_events (nframes_t nframes)
return;
}
get_track_statistics ();
if (frames_moved < 0) {
decrement_transport_position (-frames_moved);
} else {