mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
fix: 🐛 (xgplayer-hls) 修复播放到结尾一直loading的问题
This commit is contained in:
parent
4c1e758bed
commit
fc0c5b8d65
@ -472,8 +472,13 @@ export class Hls extends EventEmitter {
|
||||
if (this._segmentProcessing || !this.media) return
|
||||
const { nextSegment, lastSegment } = this._playlist
|
||||
const { config } = this
|
||||
const minFrameDuration = 0.016
|
||||
// Constrain in the range of 0.016 ~ 0.1, 0.016 is the duration of 1 frame at 60fps
|
||||
const maxBufferThroughout = Math.min(Math.max(lastSegment?.duration || 0, 0.016), 0.1)
|
||||
// “minFrameDuration / 2” is to handle the media buffer precision deviation problem
|
||||
const maxBufferThroughout = Math.min(
|
||||
Math.max(lastSegment?.duration - minFrameDuration / 2 || 0, minFrameDuration),
|
||||
0.1
|
||||
)
|
||||
|
||||
if (!nextSegment) return
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user