mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-15 16:06:41 +03:00
52f18df21b
This change allows polyfills to be installed individually e.g. shaka.polyfill.MediaCapabilities.install() instead of shaka.polyfill.installAll() Related to #2625
110 lines
3.1 KiB
JavaScript
110 lines
3.1 KiB
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
goog.provide('shaka.polyfill.VTTCue');
|
|
|
|
goog.require('shaka.log');
|
|
goog.require('shaka.polyfill');
|
|
|
|
|
|
/**
|
|
* @summary A polyfill to provide VTTCue.
|
|
* @export
|
|
*/
|
|
shaka.polyfill.VTTCue = class {
|
|
/**
|
|
* Install the polyfill if needed.
|
|
* @export
|
|
*/
|
|
static install() {
|
|
if (window.VTTCue) {
|
|
shaka.log.info('Using native VTTCue.');
|
|
return;
|
|
}
|
|
|
|
if (!window.TextTrackCue) {
|
|
shaka.log.error('VTTCue not available.');
|
|
return;
|
|
}
|
|
|
|
/** @type {?function(number, number, string):!TextTrackCue} */
|
|
let replacement = null;
|
|
const constructorLength = TextTrackCue.length;
|
|
if (constructorLength == 3) {
|
|
shaka.log.info('Using VTTCue polyfill from 3 argument TextTrackCue.');
|
|
replacement = shaka.polyfill.VTTCue.from3ArgsTextTrackCue_;
|
|
} else if (constructorLength == 6) {
|
|
shaka.log.info('Using VTTCue polyfill from 6 argument TextTrackCue.');
|
|
replacement = shaka.polyfill.VTTCue.from6ArgsTextTrackCue_;
|
|
} else if (shaka.polyfill.VTTCue.canUse3ArgsTextTrackCue_()) {
|
|
shaka.log.info('Using VTTCue polyfill from 3 argument TextTrackCue.');
|
|
replacement = shaka.polyfill.VTTCue.from3ArgsTextTrackCue_;
|
|
}
|
|
|
|
if (!replacement) {
|
|
shaka.log.error('No recognized signature for TextTrackCue found!');
|
|
return;
|
|
}
|
|
|
|
// The polyfilled VTTCue must be callable with "new", but the static methods
|
|
// in this class cannot be called that way on legacy Edge. So we must wrap
|
|
// the replacement in a plain function.
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
window['VTTCue'] = function(start, end, text) {
|
|
return replacement(start, end, text);
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Draft spec TextTrackCue with 3 constructor arguments.
|
|
* @see {@link https://bit.ly/2IdyKbA W3C Working Draft 25 October 2012}.
|
|
*
|
|
* @param {number} startTime
|
|
* @param {number} endTime
|
|
* @param {string} text
|
|
* @return {!TextTrackCue}
|
|
* @private
|
|
*/
|
|
static from3ArgsTextTrackCue_(startTime, endTime, text) {
|
|
return new window.TextTrackCue(startTime, endTime, text);
|
|
}
|
|
|
|
/**
|
|
* Draft spec TextTrackCue with 6 constructor arguments (5th & 6th are
|
|
* optional).
|
|
* @see {@link https://bit.ly/2KaGSP2 W3C Working Draft 29 March 2012}.
|
|
*
|
|
* @param {number} startTime
|
|
* @param {number} endTime
|
|
* @param {string} text
|
|
* @return {!TextTrackCue}
|
|
* @private
|
|
*/
|
|
static from6ArgsTextTrackCue_(startTime, endTime, text) {
|
|
const id = startTime + '-' + endTime + '-' + text;
|
|
// Quoting the access to the TextTrackCue object to satisfy the compiler.
|
|
return new window['TextTrackCue'](id, startTime, endTime, text);
|
|
}
|
|
|
|
/**
|
|
* Edge returns TextTrackCue.length = 0, although it accepts 3
|
|
* constructor arguments.
|
|
*
|
|
* @return {boolean}
|
|
* @private
|
|
*/
|
|
static canUse3ArgsTextTrackCue_() {
|
|
try {
|
|
return !!shaka.polyfill.VTTCue.from3ArgsTextTrackCue_(1, 2, '');
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
shaka.polyfill.register(shaka.polyfill.VTTCue.install);
|