Livepeer transcoding support

This commit is contained in:
Thulinma 2019-12-29 00:59:01 +01:00
parent 753da9bd3f
commit de4890ac20
12 changed files with 647 additions and 16 deletions

View file

@ -44,6 +44,7 @@ namespace Mist{
option["help"] = "Do not start input if not already started";
option["value"].append(0);
cfg->addOption("noinput", option);
config = cfg;
}
Output::Output(Socket::Connection &conn) : myConn(conn){
@ -1262,7 +1263,8 @@ namespace Mist{
}
stats();
}
if (!myConn){Util::logExitReason("remote connection closed");}
if (!config->is_active){Util::logExitReason("set inactive");}
if (!myConn){Util::logExitReason("connection closed");}
INFO_MSG("Client handler shutting down, exit reason: %s", Util::exitReason);
onFinish();