hls.js 1.6.0-beta.1.0.canary.10759 → 1.6.0-beta.1.0.canary.10763

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.mjs CHANGED
@@ -400,7 +400,7 @@ function enableLogs(debugConfig, context, id) {
400
400
  // Some browsers don't allow to use bind on console object anyway
401
401
  // fallback to default if needed
402
402
  try {
403
- newLogger.log(`Debug logs enabled for "${context}" in hls.js version ${"1.6.0-beta.1.0.canary.10759"}`);
403
+ newLogger.log(`Debug logs enabled for "${context}" in hls.js version ${"1.6.0-beta.1.0.canary.10763"}`);
404
404
  } catch (e) {
405
405
  /* log fn threw an exception. All logger methods are no-ops. */
406
406
  return createLogger();
@@ -2222,18 +2222,14 @@ function retryForHttpStatus(httpStatus) {
2222
2222
 
2223
2223
  var NetworkErrorAction = {
2224
2224
  DoNothing: 0,
2225
- SendEndCallback: 1,
2226
2225
  SendAlternateToPenaltyBox: 2,
2227
2226
  RemoveAlternatePermanently: 3,
2228
- InsertDiscontinuity: 4,
2229
2227
  RetryRequest: 5
2230
2228
  };
2231
2229
  var ErrorActionFlags = {
2232
2230
  None: 0,
2233
2231
  MoveAllAlternatesMatchingHost: 1,
2234
- MoveAllAlternatesMatchingHDCP: 2,
2235
- SwitchToSDR: 4
2236
- }; // Reserved for future use
2232
+ MoveAllAlternatesMatchingHDCP: 2}; // Reserved for future use
2237
2233
  class ErrorController extends Logger {
2238
2234
  constructor(hls) {
2239
2235
  super('error-controller', hls.logger);
@@ -6506,7 +6502,6 @@ function keySystemFormatToKeySystemDomain(format) {
6506
6502
  var KeySystemIds = {
6507
6503
  CENC: "1077efecc0b24d02ace33c1e52e2fb4b",
6508
6504
  CLEARKEY: "e2719d58a985b3c9781ab030af78d30e",
6509
- FAIRPLAY: "94ce86fb07ff4f43adb893d2fa968ca2",
6510
6505
  PLAYREADY: "9a04f07998404286ab92e65be0885f95",
6511
6506
  WIDEVINE: "edef8ba979d64acea3c827dcd51d21ed"
6512
6507
  };
@@ -9774,7 +9769,7 @@ var eventemitter3 = {exports: {}};
9774
9769
  var eventemitter3Exports = eventemitter3.exports;
9775
9770
  var EventEmitter = /*@__PURE__*/getDefaultExportFromCjs(eventemitter3Exports);
9776
9771
 
9777
- const version = "1.6.0-beta.1.0.canary.10759";
9772
+ const version = "1.6.0-beta.1.0.canary.10763";
9778
9773
 
9779
9774
  // ensure the worker ends up in the bundle
9780
9775
  // If the worker should not be included this gets aliased to empty.js
@@ -19261,23 +19256,10 @@ const CmObjectType = {
19261
19256
  * init segment
19262
19257
  */
19263
19258
  INIT: 'i',
19264
- /**
19265
- * caption or subtitle
19266
- */
19267
- CAPTION: 'c',
19268
19259
  /**
19269
19260
  * ISOBMFF timed text track
19270
19261
  */
19271
- TIMED_TEXT: 'tt',
19272
- /**
19273
- * cryptographic key, license or certificate.
19274
- */
19275
- KEY: 'k',
19276
- /**
19277
- * other
19278
- */
19279
- OTHER: 'o'
19280
- };
19262
+ TIMED_TEXT: 'tt'};
19281
19263
 
19282
19264
  /**
19283
19265
  * Common Media Client Data Object Type
@@ -19296,23 +19278,10 @@ const CmcdObjectType = CmObjectType;
19296
19278
  * @internal
19297
19279
  */
19298
19280
  const CmStreamingFormat = {
19299
- /**
19300
- * MPEG DASH
19301
- */
19302
- DASH: 'd',
19303
19281
  /**
19304
19282
  * HTTP Live Streaming (HLS)
19305
19283
  */
19306
- HLS: 'h',
19307
- /**
19308
- * Smooth Streaming
19309
- */
19310
- SMOOTH: 's',
19311
- /**
19312
- * Other
19313
- */
19314
- OTHER: 'o'
19315
- };
19284
+ HLS: 'h'};
19316
19285
 
19317
19286
  /**
19318
19287
  * Common Media Client Data Streaming Format
@@ -28044,9 +28013,7 @@ class TimelineController {
28044
28013
  if (canReuseVttTextTrack(textTrack, {
28045
28014
  name: label,
28046
28015
  lang: language,
28047
- characteristics: 'transcribes-spoken-dialog,describes-music-and-sound',
28048
- attrs: {}
28049
- })) {
28016
+ characteristics: 'transcribes-spoken-dialog,describes-music-and-sound'})) {
28050
28017
  return textTrack;
28051
28018
  }
28052
28019
  }