13
0

Don't count jack[2] xruns during freewheel export for now

Pending further investigation after the 6.7 release.
This commit is contained in:
Robin Gareus 2021-05-17 04:44:53 +02:00
parent 0e0327b1cd
commit 98721b1267
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -1808,7 +1808,13 @@ Session::xrun_recovery ()
}
else if (exporting ()) {
assert (realtime_export ());
++_export_xruns;
/* apparently JACK2 can cause xruns during freewheeling
* (and not just one when switching from/to freewheeling):
* https://discourse.ardour.org/t/there-have-been-dropouts-during-realtime-export/105930
*/
if (realtime_export ()) {
++_export_xruns;
}
}
}