Skip to content

Commit

Permalink
Set stable buffer time equal to live delay for low latency streams
Browse files Browse the repository at this point in the history
  • Loading branch information
dsilhavy committed May 28, 2021
1 parent 215fc3d commit b957652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/streaming/models/MediaPlayerModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function MediaPlayerModel() {

function getStableBufferTime() {
if (settings.get().streaming.lowLatencyEnabled) {
return getLiveDelay() * 0.6;
return getLiveDelay();
}

const stableBufferTime = settings.get().streaming.buffer.stableBufferTime;
Expand Down

0 comments on commit b957652

Please sign in to comment.