From 88e06a563498768ce68394f78996616590150c72 Mon Sep 17 00:00:00 2001 From: Daniel Silhavy Date: Tue, 20 Jul 2021 22:14:22 +0200 Subject: [PATCH] Remove mpd.timeShiftBufferDepth !== Number.POSITIVE_INFINITY restriction from calculation of AST --- src/dash/utils/TimelineConverter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dash/utils/TimelineConverter.js b/src/dash/utils/TimelineConverter.js index 0848d07384..2389f88672 100644 --- a/src/dash/utils/TimelineConverter.js +++ b/src/dash/utils/TimelineConverter.js @@ -83,7 +83,7 @@ function TimelineConverter() { availabilityTime = mpd.availabilityEndTime; } } else { - if (isDynamic && mpd.timeShiftBufferDepth !== Number.POSITIVE_INFINITY) { + if (isDynamic) { // SAST = Period@start + seg@presentationStartTime + seg@duration // ASAST = SAST - ATO const availabilityTimeOffset = representation.availabilityTimeOffset;