Hopefully fixed timeout issues in outputs.

This commit is contained in:
Thulinma 2014-07-22 12:04:12 +02:00
parent 27bc1995e7
commit 809b18d029

View file

@ -431,7 +431,6 @@ namespace Mist {
}
/// Prepares all tracks from selectedTracks for seeking to the specified ms position.
/// \todo Make this actually seek, instead of always loading position zero.
void Output::seek(long long pos){
sought = true;
firstTime = Util::getMS() - pos;
@ -522,7 +521,9 @@ namespace Mist {
}
}
DEBUG_MSG(DLVL_MEDIUM, "MistOut client handler shutting down: %s, %s, %s", myConn.connected() ? "conn_active" : "conn_closed", wantRequest ? "want_request" : "no_want_request", parseData ? "parsing_data" : "not_parsing_data");
stats();
playerConn.finish();
statsPage.finish();
myConn.close();
return 0;
}