2023-04-11 16:02:09 +00:00
|
|
|
// From https://github.com/ThaUnknown/rvfc-polyfill
|
|
|
|
|
2023-09-27 16:18:10 +00:00
|
|
|
if (HTMLVideoElement && !('requestVideoFrameCallback' in HTMLVideoElement.prototype) && 'getVideoPlaybackQuality' in HTMLVideoElement.prototype)
|
2023-04-11 16:02:09 +00:00
|
|
|
{
|
|
|
|
HTMLVideoElement.prototype._rvfcpolyfillmap = {}
|
|
|
|
HTMLVideoElement.prototype.requestVideoFrameCallback = function (callback) {
|
|
|
|
const handle = performance.now()
|
|
|
|
const quality = this.getVideoPlaybackQuality()
|
|
|
|
const baseline = this.mozPresentedFrames || this.mozPaintedFrames || quality.totalVideoFrames - quality.droppedVideoFrames
|
|
|
|
|
|
|
|
const check = (old, now) => {
|
|
|
|
const newquality = this.getVideoPlaybackQuality()
|
|
|
|
const presentedFrames = this.mozPresentedFrames || this.mozPaintedFrames || newquality.totalVideoFrames - newquality.droppedVideoFrames
|
|
|
|
if (presentedFrames > baseline) {
|
|
|
|
const processingDuration = this.mozFrameDelay || (newquality.totalFrameDelay - quality.totalFrameDelay) || 0
|
|
|
|
const timediff = now - old // HighRes diff
|
|
|
|
callback(now, {
|
|
|
|
presentationTime: now + processingDuration * 1000,
|
|
|
|
expectedDisplayTime: now + timediff,
|
|
|
|
width: this.videoWidth,
|
|
|
|
height: this.videoHeight,
|
|
|
|
mediaTime: Math.max(0, this.currentTime || 0) + timediff / 1000,
|
|
|
|
presentedFrames,
|
|
|
|
processingDuration
|
|
|
|
})
|
|
|
|
delete this._rvfcpolyfillmap[handle]
|
|
|
|
} else {
|
|
|
|
this._rvfcpolyfillmap[handle] = requestAnimationFrame(newer => check(now, newer))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this._rvfcpolyfillmap[handle] = requestAnimationFrame(newer => check(handle, newer))
|
|
|
|
return handle
|
|
|
|
}
|
|
|
|
|
|
|
|
HTMLVideoElement.prototype.cancelVideoFrameCallback = function (handle) {
|
|
|
|
cancelAnimationFrame(this._rvfcpolyfillmap[handle])
|
|
|
|
delete this._rvfcpolyfillmap[handle]
|
|
|
|
}
|
|
|
|
}
|