Skip to content

Commit 1af8091

Browse files
Dan SparacioDan Sparacio
authored andcommitted
Merge pull request Dash-Industry-Forum#1330 from AkamaiDASH/development
Fix for regression of FF and Multiperiods test stream startup
2 parents 9b01817 + 4d75cd8 commit 1af8091

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/streaming/controllers/PlaybackController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ function PlaybackController() {
435435
let bufferedStart = Math.max(ranges.start(0), streamInfo.start);
436436
let earliestTime = commonEarliestTime[streamInfo.id] === undefined ? bufferedStart : Math.max(commonEarliestTime[streamInfo.id], bufferedStart);
437437
if (earliestTime === commonEarliestTime[streamInfo.id]) return;
438-
if (!isDynamic && !streamInfo.isFirst && getStreamStartTime(true) < earliestTime) {
438+
if (!isDynamic && getStreamStartTime(true) < earliestTime) {
439439
seek(earliestTime);
440440
}
441441
commonEarliestTime[streamInfo.id] = earliestTime;

0 commit comments

Comments
 (0)