|
|
|
|
@ -1,9 +1,9 @@
|
|
|
|
|
"use strict";
|
|
|
|
|
(self["webpackChunk"] = self["webpackChunk"] || []).push([[9029],{
|
|
|
|
|
(self["webpackChunk"] = self["webpackChunk"] || []).push([[76980],{
|
|
|
|
|
|
|
|
|
|
/***/ 9029:
|
|
|
|
|
/***/ 76980:
|
|
|
|
|
/*!*********************************************************!*\
|
|
|
|
|
!*** ./node_modules/_hls.js@1.4.13@hls.js/dist/hls.mjs ***!
|
|
|
|
|
!*** ./node_modules/_hls.js@1.4.14@hls.js/dist/hls.mjs ***!
|
|
|
|
|
\*********************************************************/
|
|
|
|
|
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
|
|
|
|
|
|
|
|
@ -421,7 +421,7 @@ function enableLogs(debugConfig, id) {
|
|
|
|
|
// Some browsers don't allow to use bind on console object anyway
|
|
|
|
|
// fallback to default if needed
|
|
|
|
|
try {
|
|
|
|
|
exportedLogger.log(`Debug logs enabled for "${id}" in hls.js version ${"1.4.13"}`);
|
|
|
|
|
exportedLogger.log(`Debug logs enabled for "${id}" in hls.js version ${"1.4.14"}`);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
exportedLogger = fakeLogger;
|
|
|
|
|
}
|
|
|
|
|
@ -1511,6 +1511,11 @@ const utf8ArrayToStr = (array, exitOnNull = false) => {
|
|
|
|
|
};
|
|
|
|
|
let decoder;
|
|
|
|
|
function getTextDecoder() {
|
|
|
|
|
// On Play Station 4, TextDecoder is defined but partially implemented.
|
|
|
|
|
// Manual decoding option is preferable
|
|
|
|
|
if (navigator.userAgent.includes('PlayStation 4')) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (!decoder && typeof self.TextDecoder !== 'undefined') {
|
|
|
|
|
decoder = new self.TextDecoder('utf-8');
|
|
|
|
|
}
|
|
|
|
|
@ -25093,7 +25098,7 @@ class Hls {
|
|
|
|
|
* Get the video-dev/hls.js package version.
|
|
|
|
|
*/
|
|
|
|
|
static get version() {
|
|
|
|
|
return "1.4.13";
|
|
|
|
|
return "1.4.14";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|