hls.js 1.5.8-0.canary.10165 → 1.5.8-0.canary.10168

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.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.8-0.canary.10165");
609
+ newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.8-0.canary.10168");
610
610
  } catch (e) {
611
611
  /* log fn threw an exception. All logger methods are no-ops. */
612
612
  return createLogger();
@@ -6584,19 +6584,6 @@
6584
6584
  tier.maxScore = Math.max(tier.maxScore, level.score);
6585
6585
  tier.fragmentError += level.fragmentError;
6586
6586
  tier.videoRanges[level.videoRange] = (tier.videoRanges[level.videoRange] || 0) + 1;
6587
- if (audioGroups) {
6588
- audioGroups.forEach(function (audioGroupId) {
6589
- if (!audioGroupId) {
6590
- return;
6591
- }
6592
- var audioGroup = audioTracksByGroup.groups[audioGroupId];
6593
- // Default audio is any group with DEFAULT=YES, or if missing then any group with AUTOSELECT=YES, or all variants
6594
- tier.hasDefaultAudio = tier.hasDefaultAudio || audioTracksByGroup.hasDefaultAudio ? audioGroup.hasDefault : audioGroup.hasAutoSelect || !audioTracksByGroup.hasDefaultAudio && !audioTracksByGroup.hasAutoSelectAudio;
6595
- Object.keys(audioGroup.channels).forEach(function (channels) {
6596
- tier.channels[channels] = (tier.channels[channels] || 0) + audioGroup.channels[channels];
6597
- });
6598
- });
6599
- }
6600
6587
  return tiers;
6601
6588
  }, {});
6602
6589
  }
@@ -21692,7 +21679,7 @@
21692
21679
  * Get the video-dev/hls.js package version.
21693
21680
  */
21694
21681
  function get() {
21695
- return "1.5.8-0.canary.10165";
21682
+ return "1.5.8-0.canary.10168";
21696
21683
  }
21697
21684
  }, {
21698
21685
  key: "Events",