Fix for list limit in HLS/CMAF outputs when using non-live
This commit is contained in:
parent
508506c241
commit
ed9910d587
2 changed files with 2 additions and 2 deletions
|
@ -284,7 +284,7 @@ namespace Mist{
|
||||||
requestTid,
|
requestTid,
|
||||||
M.biggestFragment(timingTid) / 1000,
|
M.biggestFragment(timingTid) / 1000,
|
||||||
atol(H.GetVar("iMsn").c_str()),
|
atol(H.GetVar("iMsn").c_str()),
|
||||||
config->getInteger("listlimit"),
|
M.getLive()? config->getInteger("listlimit") : 0,
|
||||||
urlPrefix,
|
urlPrefix,
|
||||||
systemBoot,
|
systemBoot,
|
||||||
bootMsOffset,
|
bootMsOffset,
|
||||||
|
|
|
@ -173,7 +173,7 @@ namespace Mist{
|
||||||
requestTid,
|
requestTid,
|
||||||
M.biggestFragment(timingTid) / 1000,
|
M.biggestFragment(timingTid) / 1000,
|
||||||
atol(H.GetVar("iMsn").c_str()),
|
atol(H.GetVar("iMsn").c_str()),
|
||||||
config->getInteger("listlimit"),
|
M.getLive()? config->getInteger("listlimit") : 0,
|
||||||
urlPrefix,
|
urlPrefix,
|
||||||
systemBoot,
|
systemBoot,
|
||||||
bootMsOffset,
|
bootMsOffset,
|
||||||
|
|
Loading…
Add table
Reference in a new issue