Fixed track switching mid-stream, improved clarity of related debug messages

This commit is contained in:
Thulinma 2020-10-16 16:47:06 +02:00
parent e7d802836a
commit 6276d03522
2 changed files with 7 additions and 3 deletions

View file

@ -445,6 +445,7 @@ namespace Mist{
}
//Find elements in new selection but not in old selection
diffs.clear();
std::set_difference(newSelects.begin(), newSelects.end(), oldSelects.begin(), oldSelects.end(), std::inserter(diffs, diffs.end()));
if (diffs.size()){MEDIUM_MSG("Adding %zu tracks", diffs.size());}
for (std::set<size_t>::iterator it = diffs.begin(); it != diffs.end(); it++){
@ -1236,7 +1237,10 @@ namespace Mist{
if (amount > 1000){amount = 1000;}
Util::sleep(amount);
//Make sure we stay responsive to requests and stats while waiting
if (wantRequest){requestHandler();}
if (wantRequest){
requestHandler();
if (!realTime){break;}
}
stats();
}
}