mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 11:18:46 +08:00
fix: 🐛 (xgplayer-hls)修复hls最后一帧不渲染,并且播放到最后一直loading的问题
This commit is contained in:
parent
c808a821c1
commit
96ad40e9e1
@ -470,8 +470,10 @@ export class Hls extends EventEmitter {
|
|||||||
*/
|
*/
|
||||||
_loadSegment = async () => {
|
_loadSegment = async () => {
|
||||||
if (this._segmentProcessing || !this.media) return
|
if (this._segmentProcessing || !this.media) return
|
||||||
const { nextSegment } = this._playlist
|
const { nextSegment, lastSegment } = this._playlist
|
||||||
const { config } = this
|
const { config } = this
|
||||||
|
// 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)
|
||||||
|
|
||||||
if (!nextSegment) return
|
if (!nextSegment) return
|
||||||
|
|
||||||
@ -480,7 +482,7 @@ export class Hls extends EventEmitter {
|
|||||||
if (this.media.paused && !this.media.currentTime) {
|
if (this.media.paused && !this.media.currentTime) {
|
||||||
bInfo = this.bufferInfo(bInfo.nextStart || 0.5)
|
bInfo = this.bufferInfo(bInfo.nextStart || 0.5)
|
||||||
}
|
}
|
||||||
const bufferThroughout = Math.abs(bInfo.end - this.media.duration) < 0.1
|
const bufferThroughout = Math.abs(bInfo.end - this.media.duration) < maxBufferThroughout
|
||||||
if (bInfo.remaining >= config.preloadTime || bufferThroughout) {
|
if (bInfo.remaining >= config.preloadTime || bufferThroughout) {
|
||||||
this._tryEos()
|
this._tryEos()
|
||||||
return
|
return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user