Skip to content
This repository was archived by the owner on Oct 20, 2022. It is now read-only.

Commit 4f0a433

Browse files
committed
StreamController: set manifest.startOver property if set in input stream
1 parent 777a1fb commit 4f0a433

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

app/js/streaming/StreamController.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,12 @@ MediaPlayer.dependencies.StreamController = function() {
269269
return false;
270270
}
271271

272+
// Specific use case of "start-over" or "session DVR" live streams
273+
// We set this information in the manifest, to be used by MssFragmentController for DVR window updating
274+
if (source.startOver) {
275+
manifest.startOver = true;
276+
}
277+
272278
this.debug.info("[StreamController] composeStreams");
273279

274280
if (this.capabilities.supportsEncryptedMedia()) {

0 commit comments

Comments
 (0)