hls.js 1.5.14-0.canary.10439 → 1.5.14-0.canary.10440
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/hls.js +6 -3
- package/dist/hls.js.map +1 -1
- package/dist/hls.light.js +6 -3
- package/dist/hls.light.js.map +1 -1
- package/dist/hls.light.min.js +1 -1
- package/dist/hls.light.min.js.map +1 -1
- package/dist/hls.light.mjs +6 -3
- package/dist/hls.light.mjs.map +1 -1
- package/dist/hls.min.js +1 -1
- package/dist/hls.min.js.map +1 -1
- package/dist/hls.mjs +6 -3
- package/dist/hls.mjs.map +1 -1
- package/dist/hls.worker.js +1 -1
- package/package.json +1 -1
- package/src/controller/base-stream-controller.ts +4 -1
package/dist/hls.js
CHANGED
@@ -522,7 +522,7 @@
|
|
522
522
|
// Some browsers don't allow to use bind on console object anyway
|
523
523
|
// fallback to default if needed
|
524
524
|
try {
|
525
|
-
newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.14-0.canary.
|
525
|
+
newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.14-0.canary.10440");
|
526
526
|
} catch (e) {
|
527
527
|
/* log fn threw an exception. All logger methods are no-ops. */
|
528
528
|
return createLogger();
|
@@ -11313,7 +11313,10 @@
|
|
11313
11313
|
_proto.recoverWorkerError = function recoverWorkerError(data) {
|
11314
11314
|
if (data.event === 'demuxerWorker') {
|
11315
11315
|
this.fragmentTracker.removeAllFragments();
|
11316
|
-
this.
|
11316
|
+
if (this.transmuxer) {
|
11317
|
+
this.transmuxer.destroy();
|
11318
|
+
this.transmuxer = null;
|
11319
|
+
}
|
11317
11320
|
this.resetStartWhenNotLoaded(this.levelLastLoaded);
|
11318
11321
|
this.resetLoadingState();
|
11319
11322
|
}
|
@@ -17313,7 +17316,7 @@
|
|
17313
17316
|
return !remuxResult.audio && !remuxResult.video && !remuxResult.text && !remuxResult.id3 && !remuxResult.initSegment;
|
17314
17317
|
}
|
17315
17318
|
|
17316
|
-
var version = "1.5.14-0.canary.
|
17319
|
+
var version = "1.5.14-0.canary.10440";
|
17317
17320
|
|
17318
17321
|
// ensure the worker ends up in the bundle
|
17319
17322
|
// If the worker should not be included this gets aliased to empty.js
|