Skip to content

Commit

Permalink
Fix gap jump over waiting for data stall when buffer length is larger…
Browse files Browse the repository at this point in the history
… than maxBufferHole but less than one second
  • Loading branch information
robwalch committed Mar 3, 2023
1 parent 37dab07 commit dd6b109
Showing 1 changed file with 16 additions and 19 deletions.
35 changes: 16 additions & 19 deletions src/controller/gap-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,9 @@ export default class GapController {
const maxStartGapJump = isLive
? level!.details!.targetduration * 2
: MAX_START_GAP_JUMP;
if (
startJump > 0 &&
(startJump <= maxStartGapJump ||
this.fragmentTracker.getPartialFragment(0))
) {
this._trySkipBufferHole(null);
const partialOrGap = this.fragmentTracker.getPartialFragment(currentTime);
if (startJump > 0 && (startJump <= maxStartGapJump || partialOrGap)) {
this._trySkipBufferHole(partialOrGap);
return;
}
}
Expand Down Expand Up @@ -187,7 +184,7 @@ export default class GapController {
// This method isn't limited by the size of the gap between buffered ranges
const targetTime = this._trySkipBufferHole(partial);
// we return here in this case, meaning
// the branch below only executes when we don't handle a partial fragment
// the branch below only executes when we haven't seeked to a new position
if (targetTime || !this.media) {
return;
}
Expand Down Expand Up @@ -248,27 +245,28 @@ export default class GapController {
if (media === null) {
return 0;
}
const currentTime = media.currentTime;
let lastEndTime = 0;

// Check if currentTime is between unbuffered regions of partial fragments
const buffered = BufferHelper.getBuffered(media);
for (let i = 0; i < buffered.length; i++) {
const startTime = buffered.start(i);
if (
currentTime + config.maxBufferHole >= lastEndTime &&
currentTime < startTime
) {
const currentTime = media.currentTime;
const bufferInfo = BufferHelper.bufferInfo(media, currentTime, 0);
const startTime =
currentTime < bufferInfo.start ? bufferInfo.start : bufferInfo.nextStart;
if (startTime) {
const bufferStarved = bufferInfo.len <= config.maxBufferHole;
const waiting =
bufferInfo.len > 0 && bufferInfo.len < 1 && media.readyState < 3;
if (currentTime < startTime && (bufferStarved || waiting)) {
const targetTime = Math.max(
startTime + SKIP_BUFFER_RANGE_START,
media.currentTime + SKIP_BUFFER_HOLE_STEP_SECONDS
currentTime + SKIP_BUFFER_HOLE_STEP_SECONDS
);
logger.warn(
`skipping hole, adjusting currentTime from ${currentTime} to ${targetTime}`
);
this.moved = true;
this.stalled = null;
media.currentTime = targetTime;
if (partial) {
if (partial && !partial.gap) {
const error = new Error(
`fragment loaded with buffer holes, seeking from ${currentTime} to ${targetTime}`
);
Expand All @@ -283,7 +281,6 @@ export default class GapController {
}
return targetTime;
}
lastEndTime = buffered.end(i);
}
return 0;
}
Expand Down

0 comments on commit dd6b109

Please sign in to comment.