hls.js 1.5.9-0.canary.10220 → 1.5.9-0.canary.10223
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 +27 -12
- package/dist/hls.js.d.ts +1 -0
- package/dist/hls.js.map +1 -1
- package/dist/hls.light.js +3 -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 +3 -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 +33 -12
- package/dist/hls.mjs.map +1 -1
- package/dist/hls.worker.js +1 -1
- package/package.json +2 -2
- package/src/controller/cmcd-controller.ts +26 -10
- package/src/hls.ts +1 -1
package/dist/hls.light.js
CHANGED
@@ -606,7 +606,7 @@
|
|
606
606
|
// Some browsers don't allow to use bind on console object anyway
|
607
607
|
// fallback to default if needed
|
608
608
|
try {
|
609
|
-
newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.9-0.canary.
|
609
|
+
newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.9-0.canary.10223");
|
610
610
|
} catch (e) {
|
611
611
|
/* log fn threw an exception. All logger methods are no-ops. */
|
612
612
|
return createLogger();
|
@@ -20897,7 +20897,7 @@
|
|
20897
20897
|
var playListLoader = new PlaylistLoader(this);
|
20898
20898
|
var id3TrackController = new ID3TrackController(this);
|
20899
20899
|
var ConfigContentSteeringController = config.contentSteeringController;
|
20900
|
-
//
|
20900
|
+
// ContentSteeringController is defined before LevelController to receive Multivariant Playlist events first
|
20901
20901
|
var contentSteering = ConfigContentSteeringController ? new ConfigContentSteeringController(this) : null;
|
20902
20902
|
var levelController = this.levelController = new LevelController(this, contentSteering);
|
20903
20903
|
var keyLoader = new KeyLoader(this.config);
|
@@ -21715,7 +21715,7 @@
|
|
21715
21715
|
* Get the video-dev/hls.js package version.
|
21716
21716
|
*/
|
21717
21717
|
function get() {
|
21718
|
-
return "1.5.9-0.canary.
|
21718
|
+
return "1.5.9-0.canary.10223";
|
21719
21719
|
}
|
21720
21720
|
}, {
|
21721
21721
|
key: "Events",
|