hls.js 1.5.5-0.canary.9977 → 1.5.5-0.canary.9978

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
@@ -556,7 +556,7 @@
556
556
  // Some browsers don't allow to use bind on console object anyway
557
557
  // fallback to default if needed
558
558
  try {
559
- newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.5-0.canary.9977");
559
+ newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.5.5-0.canary.9978");
560
560
  } catch (e) {
561
561
  /* log fn threw an exception. All logger methods are no-ops. */
562
562
  return createLogger();
@@ -13277,7 +13277,9 @@
13277
13277
  this.videoParser = new AvcVideoParser();
13278
13278
  break;
13279
13279
  case 'hevc':
13280
- this.videoParser = new HevcVideoParser();
13280
+ {
13281
+ this.videoParser = new HevcVideoParser();
13282
+ }
13281
13283
  break;
13282
13284
  }
13283
13285
  }
@@ -13452,7 +13454,9 @@
13452
13454
  this.videoParser = new AvcVideoParser();
13453
13455
  break;
13454
13456
  case 'hevc':
13455
- this.videoParser = new HevcVideoParser();
13457
+ {
13458
+ this.videoParser = new HevcVideoParser();
13459
+ }
13456
13460
  break;
13457
13461
  }
13458
13462
  }
@@ -13792,10 +13796,12 @@
13792
13796
  break;
13793
13797
  case 0x24:
13794
13798
  // ITU-T Rec. H.265 and ISO/IEC 23008-2 (HEVC)
13795
- if (result.videoPid === -1) {
13796
- result.videoPid = pid;
13797
- result.segmentVideoCodec = 'hevc';
13798
- logger.log('HEVC in M2TS found');
13799
+ {
13800
+ if (result.videoPid === -1) {
13801
+ result.videoPid = pid;
13802
+ result.segmentVideoCodec = 'hevc';
13803
+ logger.log('HEVC in M2TS found');
13804
+ }
13799
13805
  }
13800
13806
  break;
13801
13807
  }
@@ -30017,7 +30023,7 @@
30017
30023
  * Get the video-dev/hls.js package version.
30018
30024
  */
30019
30025
  function get() {
30020
- return "1.5.5-0.canary.9977";
30026
+ return "1.5.5-0.canary.9978";
30021
30027
  }
30022
30028
  }, {
30023
30029
  key: "Events",