Skip to content

Commit

Permalink
fix(DASH): Set delay to 0 for LL streams (#6406)
Browse files Browse the repository at this point in the history
  • Loading branch information
avelad committed Apr 5, 2024
1 parent ea740ba commit b7b2fc9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/dash/dash_parser.js
Expand Up @@ -648,6 +648,9 @@ shaka.dash.DashParser = class {
// best latency
if (this.lowLatencyMode_) {
minBufferTime = 0;
const presentationDelay = suggestedPresentationDelay != null ?
suggestedPresentationDelay : this.config_.defaultPresentationDelay;
presentationTimeline.setDelay(presentationDelay);
}

// These steps are not done on manifest update.
Expand Down

0 comments on commit b7b2fc9

Please sign in to comment.