hls.js 1.5.7-0.canary.10014 → 1.5.7-0.canary.10015

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
@@ -644,7 +644,7 @@
644
644
  // Some browsers don't allow to use bind on console object anyway
645
645
  // fallback to default if needed
646
646
  try {
647
- newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.7-0.canary.10014");
647
+ newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.7-0.canary.10015");
648
648
  } catch (e) {
649
649
  /* log fn threw an exception. All logger methods are no-ops. */
650
650
  return createLogger();
@@ -2149,7 +2149,9 @@
2149
2149
  }
2150
2150
  function skipBERInteger(bytes, i) {
2151
2151
  var limit = i + 5;
2152
- while (bytes[i++] & 0x80 && i < limit) {}
2152
+ while (bytes[i++] & 0x80 && i < limit) {
2153
+ /* do nothing */
2154
+ }
2153
2155
  return i;
2154
2156
  }
2155
2157
  function toHex(x) {
@@ -30100,7 +30102,7 @@
30100
30102
  * Get the video-dev/hls.js package version.
30101
30103
  */
30102
30104
  function get() {
30103
- return "1.5.7-0.canary.10014";
30105
+ return "1.5.7-0.canary.10015";
30104
30106
  }
30105
30107
  }, {
30106
30108
  key: "Events",