Skip to content

Commit

Permalink
Add dist files for 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dsilhavy committed Nov 29, 2021
1 parent 4723070 commit 6b64a61
Show file tree
Hide file tree
Showing 21 changed files with 2,675 additions and 1,922 deletions.
2,076 changes: 1,151 additions & 925 deletions dist/dash.all.debug.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dash.all.debug.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/dash.all.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dash.all.min.js.map

Large diffs are not rendered by default.

302 changes: 184 additions & 118 deletions dist/dash.mediaplayer.debug.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dash.mediaplayer.debug.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/dash.mediaplayer.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dash.mediaplayer.min.js.map

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/dash.mss.debug.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/dash.mss.debug.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dash.mss.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dash.mss.min.js.map

Large diffs are not rendered by default.

51 changes: 30 additions & 21 deletions dist/dash.offline.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -6628,6 +6628,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
* enableSeekFix: false
* },
* utcSynchronization: {
* enabled: true,
* useManifestDateHeaderTimeSource: true,
* backgroundAttempts: 2,
* timeBetweenSyncAttempts: 30,
Expand Down Expand Up @@ -6898,7 +6899,8 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope

/**
* @typedef {Object} UtcSynchronizationSettings
*
* @property {boolean} [enabled=true]
* Enables or disables the UTC clock synchronization
* @property {boolean} [useManifestDateHeaderTimeSource=true]
* Allows you to enable the use of the Date Header, if exposed with CORS, as a timing source for live edge detection.
*
Expand Down Expand Up @@ -7041,6 +7043,8 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
* Set the value for the ProtectionController and MediaKeys life cycle.
*
* If true, the ProtectionController and then created MediaKeys and MediaKeySessions will be preserved during the MediaPlayer lifetime.
* @property {boolean} ignoreEmeEncryptedEvent
* If set to true the player will ignore "encrypted" and "needkey" events thrown by the EME.
*/

/**
Expand Down Expand Up @@ -7295,7 +7299,8 @@ function Settings() {
applyServiceDescription: true
},
protection: {
keepProtectionMediaKeys: false
keepProtectionMediaKeys: false,
ignoreEmeEncryptedEvent: false
},
buffer: {
enableSeekDecorrelationFix: false,
Expand All @@ -7321,6 +7326,7 @@ function Settings() {
enableSeekFix: false
},
utcSynchronization: {
enabled: true,
useManifestDateHeaderTimeSource: true,
backgroundAttempts: 2,
timeBetweenSyncAttempts: 30,
Expand Down Expand Up @@ -17226,17 +17232,17 @@ var MediaPlayerEvents = /*#__PURE__*/function (_EventsBase) {

_this.METRIC_UPDATED = 'metricUpdated';
/**
* Triggered at the stream end of a period.
* @event MediaPlayerEvents#PERIOD_SWITCH_COMPLETED
* Triggered when a new stream (period) starts.
* @event MediaPlayerEvents#PERIOD_SWITCH_STARTED
*/

_this.PERIOD_SWITCH_COMPLETED = 'periodSwitchCompleted';
_this.PERIOD_SWITCH_STARTED = 'periodSwitchStarted';
/**
* Triggered when a new stream (period) starts.
* @event MediaPlayerEvents#STREAM_SWITCH_STARTED
* Triggered at the stream end of a period.
* @event MediaPlayerEvents#PERIOD_SWITCH_COMPLETED
*/

_this.STREAM_SWITCH_STARTED = 'streamSwitchStarted';
_this.PERIOD_SWITCH_COMPLETED = 'periodSwitchCompleted';
/**
* Triggered when an ABR up /down switch is initiated; either by user in manual mode or auto mode via ABR rules.
* @event MediaPlayerEvents#QUALITY_CHANGE_REQUESTED
Expand Down Expand Up @@ -20310,19 +20316,22 @@ function URLLoader(cfg) {
schemeLoaderFactory = Object(_streaming_net_SchemeLoaderFactory__WEBPACK_IMPORTED_MODULE_1__["default"])(context).getInstance();

function load(config) {
var loaderFactory = schemeLoaderFactory.getLoader(config && config.request ? config.request.url : null);
loader = loaderFactory(context).create({
errHandler: cfg.errHandler,
mediaPlayerModel: cfg.mediaPlayerModel,
requestModifier: cfg.requestModifier,
dashMetrics: cfg.dashMetrics,
boxParser: cfg.boxParser ? cfg.boxParser : null,
constants: cfg.constants ? cfg.constants : null,
dashConstants: cfg.dashConstants ? cfg.dashConstants : null,
urlUtils: cfg.urlUtils ? cfg.urlUtils : null,
requestTimeout: !isNaN(cfg.requestTimeout) ? cfg.requestTimeout : 0,
errors: cfg.errors
});
if (!loader) {
var loaderFactory = schemeLoaderFactory.getLoader(config && config.request ? config.request.url : null);
loader = loaderFactory(context).create({
errHandler: cfg.errHandler,
mediaPlayerModel: cfg.mediaPlayerModel,
requestModifier: cfg.requestModifier,
dashMetrics: cfg.dashMetrics,
boxParser: cfg.boxParser ? cfg.boxParser : null,
constants: cfg.constants ? cfg.constants : null,
dashConstants: cfg.dashConstants ? cfg.dashConstants : null,
urlUtils: cfg.urlUtils ? cfg.urlUtils : null,
requestTimeout: !isNaN(cfg.requestTimeout) ? cfg.requestTimeout : 0,
errors: cfg.errors
});
}

loader.load(config);
}

Expand Down
2 changes: 1 addition & 1 deletion dist/dash.offline.debug.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dash.offline.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dash.offline.min.js.map

Large diffs are not rendered by default.

0 comments on commit 6b64a61

Please sign in to comment.