hls.js 1.5.12-0.canary.10363 → 1.5.12-0.canary.10364

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 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.12-0.canary.10363");
525
+ newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.12-0.canary.10364");
526
526
  } catch (e) {
527
527
  /* log fn threw an exception. All logger methods are no-ops. */
528
528
  return createLogger();
@@ -8107,7 +8107,7 @@
8107
8107
  // skip candidates which change codec-family or video-range,
8108
8108
  // and which decrease or increase frame-rate for up and down-switch respectfully
8109
8109
  if (currentCodecSet && levelInfo.codecSet !== currentCodecSet || currentVideoRange && levelInfo.videoRange !== currentVideoRange || upSwitch && currentFrameRate > levelInfo.frameRate || !upSwitch && currentFrameRate > 0 && currentFrameRate < levelInfo.frameRate || levelInfo.supportedResult && !((_levelInfo$supportedR = levelInfo.supportedResult.decodingInfoResults) != null && _levelInfo$supportedR[0].smooth)) {
8110
- if (firstSelection && i !== minStartIndex) {
8110
+ if (!firstSelection || i !== minStartIndex) {
8111
8111
  levelsSkipped.push(i);
8112
8112
  return 0; // continue
8113
8113
  }
@@ -30677,7 +30677,7 @@
30677
30677
  * Get the video-dev/hls.js package version.
30678
30678
  */
30679
30679
  function get() {
30680
- return "1.5.12-0.canary.10363";
30680
+ return "1.5.12-0.canary.10364";
30681
30681
  }
30682
30682
  }, {
30683
30683
  key: "Events",