Scheduled Pushes

Change-Id: I3d3a75f4a45d96e6a7849b14634caedd0899ac69
This commit is contained in:
Marco van Dijk 2022-07-14 18:31:19 +02:00 committed by Thulinma
parent c66d236e58
commit ea25d4b74b
6 changed files with 306 additions and 82 deletions

View file

@ -1005,7 +1005,8 @@ namespace Mist{
}
}
if (targetParams.count("recstart") && atoll(targetParams["recstart"].c_str()) != 0){
uint64_t startRec = atoll(targetParams["recstart"].c_str());
int64_t startRec = atoll(targetParams["recstart"].c_str());
if (startRec < 0){startRec = 0;}
if (startRec > endTime()){
if (!M.getLive()){
onFail("Recording start past end of non-live source", true);
@ -1014,7 +1015,7 @@ namespace Mist{
}
if (startRec < startTime()){
startRec = startTime();
WARN_MSG("Record begin at %llu ms not available, starting at %" PRIu64
WARN_MSG("Record begin at %lld ms not available, starting at %" PRIu64
" ms instead", atoll(targetParams["recstart"].c_str()), startRec);
targetParams["recstart"] = JSON::Value(startRec).asString();
}