diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index db73f2e2c03..796d56d05fb 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -27,6 +27,5 @@ npm run test
- Use [EditorConfig](http://editorconfig.org/) or at least stay consistent to the file formats defined in the `.editorconfig` file.
- Develop in a topic branch, not master
- - Don't commit the updated `dist/hls.js` file in your PR. We'll take care of generating an updated build right before releasing a new tagged version.
Thanks! :heart: :heart: :heart:
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 95cbdc623ee..9bde35e7c2c 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -9,6 +9,5 @@
### Checklist
- [ ] changes have been done against master branch, and PR does not conflict
-- [ ] no commits have been done in dist folder (we will take care of updating it)
- [ ] new unit / functional tests have been added (whenever applicable)
- [ ] API or design changes are documented in API.md
diff --git a/.gitignore b/.gitignore
index c36c5cc951e..3dfa2d61594 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,5 +14,5 @@ coverage/
.idea/*
-# Build reports
-dist/bundle-analyzer-report.*
+# Build
+/dist
diff --git a/.travis.yml b/.travis.yml
index 65742f7e4f5..2a2296ea17d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,48 +7,64 @@ sudo: required
# before_install: if [ "${TRAVIS_MODE}" != "funcTests" ]; then unset SAUCE_USERNAME && unset SAUCE_ACCESS_KEY; fi
script: ./scripts/travis.sh
after_script: if [ "${TRAVIS_MODE}" = "funcTests" ]; then echo -n "travis_fold:start:sauce_logs\nSauce connect log:\n" && cat /home/travis/sauce-connect.log && echo -n "\ntravis_fold:end:sauce_logs\n"; fi
-after_success: npm run coverage
env:
global:
- SAUCE_USERNAME=mangui
stages:
- - required
- - optional
+ - buildAndTest
+ - releaseCanary
+ - release
+ - testFuncRequired
+ - testFuncOptional
jobs:
# stage: optional is allowed to be failure
fast_finish: true
allow_failures:
- - stage: optional
+ - stage: testFuncOptional
include:
+ # https://docs.travis-ci.com/user/build-stages/deploy-github-releases/
+ - stage: release
+ if: tag IS present
+ env: TRAVIS_MODE=release
+ deploy:
+ provider: releases
+ api_key:
+ secure: "kR9xHKhWfOv6vwxz1d//PpC22VDupnPI59L9czLkpLoIdzm5rm3eV7he4XPlQfbSrV1UBgURARgF+yekmeqUZk9vqfo4F5oa+6KiBxAdnI9PjsjYRSXitdq4a6kpIR854nxUIOlDXR5AbD2MgNaKsQHiaNlngdR/870OhiwqRJVwQOLKVUADw1QWECXe/DXrQiFbMunxBrTyutbrGuI8cT7wzqFn+aPkI/3liiw8PTr93GrtxZ/bFxI899KzMSHHMXB+eDDMtxPFD+VApruD7h6f+1C0psJeOV8/PkzrRkbPELPBKKaPH9TvVOPUf2OSRHVna828wnLHwseae0rgtuk7+ZJmB9XZKX9FUBDT4/Gv/AkE+m/cwnoqaatAMJYR+yiQqsosjBLDAaTUOPHu3wBdAaR5uL5fGsSsKe3sUfSQHrv86vReNl9ETU06apmyWtsIbyhMtv98j9I+hNVjKZUI30g1ee6LgjlDlBavMk8KAbLbyBTcJlNAexj8Rppdqg+AdW7rYW+S6SgfTyyYQKTLeFwmDjfrkqzHJnk78sV18+xPLI1hbzBGp/bXaW23sLDBLLV5Sxifr8flUMkUdH28zsLCHUQ7C4GKQ19el2NZgIxSsnxRA8vGZof7OXasR4HJVjv/PSx+DN6Fi1PV1SiNBcwgPCGIIxBF7TUPxJk="
+ file_glob: true
+ file: dist/*
+ draft: true
+ skip_cleanup: true
+ on:
+ tags: true
# publish canary package if on master
- - stage: required
+ - stage: releaseCanary
if: branch = master AND type != pull_request
env: TRAVIS_MODE=releaseCanary
# Required tests
- - stage: required
+ - stage: buildAndTest
env: TRAVIS_MODE=build
- - stage: required
+ - stage: buildAndTest
env: TRAVIS_MODE=unitTests
- - stage: required
+ - stage: testFuncRequired
env: TRAVIS_MODE=funcTests UA=chrome OS="Windows 10"
# Optional Func tests
- - stage: optional
+ - stage: testFuncOptional
env: TRAVIS_MODE=funcTests UA=firefox OS="Windows 10"
- - stage: optional
+ - stage: testFuncOptional
env: TRAVIS_MODE=funcTests UA=chrome OS="Windows 7"
- - stage: optional
+ - stage: testFuncOptional
env: TRAVIS_MODE=funcTests UA=firefox OS="Windows 7"
- # - stage: optional
+ # - stage: testFuncOptional
# env: TRAVIS_MODE=funcTests UA=MicrosoftEdge OS="Windows 10"
- - stage: optional
+ - stage: testFuncOptional
env: TRAVIS_MODE=funcTests UA="internet explorer" OS="Windows 8.1" UA_VERSION="11.0"
- - stage: optional
+ - stage: testFuncOptional
env: TRAVIS_MODE=funcTests UA="internet explorer" OS="Windows 10"
- - stage: optional
+ - stage: testFuncOptional
env: TRAVIS_MODE=funcTests UA=chrome OS="OS X 10.11"
- # - stage: optional
+ # - stage: testFuncOptional
# env: TRAVIS_MODE=funcTests UA=firefox OS="OS X 10.11"
- - stage: optional
+ - stage: testFuncOptional
env: TRAVIS_MODE=funcTests UA=safari OS="OS X 10.11" UA_VERSION="9.0"
addons:
sauce_connect: true
diff --git a/README.md b/README.md
index 70fab5f51f0..511063b8fe7 100644
--- a/README.md
+++ b/README.md
@@ -38,7 +38,10 @@ hls.js is written in [ECMAScript6], and transpiled in ECMAScript5 using [Babel].
[https://video-dev.github.io/hls.js/demo](https://video-dev.github.io/hls.js/demo)
### Canary
-[https://video-dev.github.io/hls.js/demo?canary=true](https://video-dev.github.io/hls.js/demo?canary=true)
+[https://video-dev.github.io/hls.js/demo?version=canary](https://video-dev.github.io/hls.js/demo?version=canary)
+
+### Local
+[https://video-dev.github.io/hls.js/demo?version=local](https://video-dev.github.io/hls.js/demo?version=local)
## Getting Started
diff --git a/demo/index.html b/demo/index.html
index 051f6179c7a..410ac3e59b1 100644
--- a/demo/index.html
+++ b/demo/index.html
@@ -301,10 +301,26 @@
Buffer & Statistics
document.body.appendChild(s);
}
- // load compiled lib dist, or latest canary from jsdelivr (?canary=true)
- var src = window.location.search.substring(1).split('&').indexOf('canary=true') >= 0
- ? 'https://cdn.jsdelivr.net/npm/hls.js@canary'
- : '../dist/hls.js';
+ var LOCAL_SRC = '../dist/hls.js';
+ var LATEST_SRC = 'https://cdn.jsdelivr.net/npm/hls.js@latest';
+
+ var queryParts = window.location.search.substring(1).split('&');
+ var src = null;
+ if (queryParts.indexOf('version=latest') >= 0) {
+ src = LATEST_SRC;
+ } else if (queryParts.indexOf('version=canary') >= 0 || queryParts.indexOf('canary=true') >= 0) {
+ src = 'https://cdn.jsdelivr.net/npm/hls.js@canary';
+ } else if (queryParts.indexOf('version=local') >= 0) {
+ src = LOCAL_SRC;
+ }
+ if (!src) {
+ if (window.location.port) {
+ // we are not on port 80/443. Probably running locally. default to local
+ src = LOCAL_SRC;
+ } else {
+ src = LATEST_SRC;
+ }
+ }
loadScript(src, function() {
// load compiled demo main
diff --git a/dist/hls-demo.js b/dist/hls-demo.js
deleted file mode 100644
index f40ab9a46e0..00000000000
--- a/dist/hls-demo.js
+++ /dev/null
@@ -1,1528 +0,0 @@
-(function webpackUniversalModuleDefinition(root, factory) {
- if(typeof exports === 'object' && typeof module === 'object')
- module.exports = factory();
- else if(typeof define === 'function' && define.amd)
- define([], factory);
- else if(typeof exports === 'object')
- exports["HlsDemo"] = factory();
- else
- root["HlsDemo"] = factory();
-})(this, function() {
-return /******/ (function(modules) { // webpackBootstrap
-/******/ // The module cache
-/******/ var installedModules = {};
-/******/
-/******/ // The require function
-/******/ function __webpack_require__(moduleId) {
-/******/
-/******/ // Check if module is in cache
-/******/ if(installedModules[moduleId]) {
-/******/ return installedModules[moduleId].exports;
-/******/ }
-/******/ // Create a new module (and put it into the cache)
-/******/ var module = installedModules[moduleId] = {
-/******/ i: moduleId,
-/******/ l: false,
-/******/ exports: {}
-/******/ };
-/******/
-/******/ // Execute the module function
-/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
-/******/
-/******/ // Flag the module as loaded
-/******/ module.l = true;
-/******/
-/******/ // Return the exports of the module
-/******/ return module.exports;
-/******/ }
-/******/
-/******/
-/******/ // expose the modules object (__webpack_modules__)
-/******/ __webpack_require__.m = modules;
-/******/
-/******/ // expose the module cache
-/******/ __webpack_require__.c = installedModules;
-/******/
-/******/ // define getter function for harmony exports
-/******/ __webpack_require__.d = function(exports, name, getter) {
-/******/ if(!__webpack_require__.o(exports, name)) {
-/******/ Object.defineProperty(exports, name, {
-/******/ configurable: false,
-/******/ enumerable: true,
-/******/ get: getter
-/******/ });
-/******/ }
-/******/ };
-/******/
-/******/ // getDefaultExport function for compatibility with non-harmony modules
-/******/ __webpack_require__.n = function(module) {
-/******/ var getter = module && module.__esModule ?
-/******/ function getDefault() { return module['default']; } :
-/******/ function getModuleExports() { return module; };
-/******/ __webpack_require__.d(getter, 'a', getter);
-/******/ return getter;
-/******/ };
-/******/
-/******/ // Object.prototype.hasOwnProperty.call
-/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
-/******/
-/******/ // __webpack_public_path__
-/******/ __webpack_require__.p = "/dist/";
-/******/
-/******/ // Load entry module and return exports
-/******/ return __webpack_require__(__webpack_require__.s = 0);
-/******/ })
-/************************************************************************/
-/******/ ([
-/* 0 */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
-/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__demo_utils__ = __webpack_require__(1);
-var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
-
-var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
-
-
-
-var testStreams = __webpack_require__(2);
-var defaultTestStreamUrl = testStreams['bbb'].url;
-var sourceURL = decodeURIComponent(getURLParam('src', defaultTestStreamUrl));
-
-var demoConfig = getURLParam('demoConfig', null);
-if (demoConfig) {
- demoConfig = JSON.parse(atob(demoConfig));
-} else {
- demoConfig = {};
-}
-
-var enableStreaming = getDemoConfigPropOrDefault('enableStreaming', true);
-var autoRecoverError = getDemoConfigPropOrDefault('autoRecoverError', true);
-var enableWorker = getDemoConfigPropOrDefault('enableWorker', true);
-var levelCapping = getDemoConfigPropOrDefault('levelCapping', -1);
-var limitMetrics = getDemoConfigPropOrDefault('limitMetrics', -1);
-var defaultAudioCodec = getDemoConfigPropOrDefault('defaultAudioCodec', undefined);
-var widevineLicenseUrl = getDemoConfigPropOrDefault('widevineLicenseURL', undefined);
-var dumpfMP4 = getDemoConfigPropOrDefault('dumpfMP4', false);
-
-var bufferingIdx = -1;
-var selectedTestStream = null;
-var video = $('#video')[0];
-var startTime = Date.now();
-
-var lastSeekingIdx = void 0;
-var lastStartPosition = void 0;
-var lastDuration = void 0;
-var lastAudioTrackSwitchingIdx = void 0;
-var hls = void 0;
-var url = void 0;
-var events = void 0;
-var stats = void 0;
-var tracks = void 0;
-var fmp4Data = void 0;
-
-$(document).ready(function () {
- Object.keys(testStreams).forEach(function (key) {
- var stream = testStreams[key];
- var option = new Option(stream.description, key);
- $('#streamSelect').append(option);
- });
-
- $('#streamSelect').change(function () {
- selectedTestStream = testStreams[$('#streamSelect').val()];
- var streamUrl = selectedTestStream.url;
- $('#streamURL').val(streamUrl);
- loadSelectedStream();
- });
-
- $('#streamURL').change(function () {
- selectedTestStream = null;
- loadSelectedStream();
- });
-
- $('#videoSize').change(function () {
- $('#video').width($('#videoSize').val());
- $('#bufferedCanvas').width($('#videoSize').val());
- });
-
- $('#enableStreaming').click(function () {
- enableStreaming = this.checked;
- loadSelectedStream();
- });
-
- $('#autoRecoverError').click(function () {
- autoRecoverError = this.checked;
- onDemoConfigChanged();
- });
-
- $('#enableWorker').click(function () {
- enableWorker = this.checked;
- onDemoConfigChanged();
- });
-
- $('#dumpfMP4').click(function () {
- dumpfMP4 = this.checked;
- onDemoConfigChanged();
- });
-
- $('#limitMetrics').change(function () {
- limitMetrics = this.value;
- onDemoConfigChanged();
- });
-
- $('#levelCapping').change(function () {
- levelCapping = this.value;
- onDemoConfigChanged();
- });
-
- $('#defaultAudioCodec').change(function () {
- defaultAudioCodec = this.value;
- onDemoConfigChanged();
- });
-
- $('#limitMetrics').val(limitMetrics);
- $('#enableStreaming').prop('checked', enableStreaming);
- $('#autoRecoverError').prop('checked', autoRecoverError);
- $('#enableWorker').prop('checked', enableWorker);
- $('#dumpfMP4').prop('checked', dumpfMP4);
- $('#levelCapping').val(levelCapping);
- $('#defaultAudioCodec').val(defaultAudioCodec || 'undefined');
-
- $('h2').append(' v' + Hls.version + '');
- $('#currentVersion').html('Hls version:' + Hls.version);
-
- $('#streamURL').val(sourceURL);
-
- video.volume = 0.05;
-
- hideAllTabs();
-
- $('#metricsButtonWindow').toggle(windowSliding);
- $('#metricsButtonFixed').toggle(!windowSliding);
-
- loadSelectedStream();
-});
-
-function setupGlobals() {
- window.events = events = {
- url: url,
- t0: performance.now(),
- load: [],
- buffer: [],
- video: [],
- level: [],
- bitrate: []
- };
-
- // actual values, only on window
- window.recoverDecodingErrorDate = null;
- window.recoverSwapAudioCodecDate = null;
-
- window.fmp4Data = fmp4Data = {
- 'audio': [],
- 'video': []
- };
-
- window.onClickBufferedRange = onClickBufferedRange;
-
- window.updateLevelInfo = updateLevelInfo;
- window.onDemoConfigChanged = onDemoConfigChanged;
- window.createfMP4 = createfMP4;
- window.goToMetricsPermaLink = goToMetricsPermaLink;
- window.toggleTab = toggleTab;
- window.onDemoConfigChanged = onDemoConfigChanged;
-}
-
-function trimArray(target, limit) {
- if (limit < 0) {
- return;
- }
-
- while (target.length > limit) {
- target.shift();
- }
-}
-
-function trimEventHistory() {
- var x = limitMetrics;
-
- if (x < 0) {
- return;
- }
-
- trimArray(events.load, x);
- trimArray(events.buffer, x);
- trimArray(events.video, x);
- trimArray(events.level, x);
- trimArray(events.bitrate, x);
-}
-
-function loadSelectedStream() {
-
- if (!Hls.isSupported()) {
- handleUnsupported();
- return;
- }
-
- url = $('#streamURL').val();
-
- setupGlobals();
- hideCanvas();
-
- if (hls) {
- hls.destroy();
- if (hls.bufferTimer) {
- clearInterval(hls.bufferTimer);
- hls.bufferTimer = undefined;
- }
- hls = null;
- }
-
- if (!enableStreaming) {
- logStatus('Streaming disabled');
- return;
- }
-
- logStatus('Loading ' + url);
-
- if (widevineLicenseUrl) {
- widevineLicenseUrl = unescape(widevineLicenseUrl);
- }
-
- var hlsConfig = {
- debug: true,
- enableWorker: enableWorker,
- defaultAudioCodec: defaultAudioCodec,
- widevineLicenseUrl: widevineLicenseUrl
- };
-
- if (selectedTestStream && selectedTestStream.config) {
- _extends(hlsConfig, selectedTestStream.config);
- }
-
- if (hlsConfig.widevineLicenseUrl) {
- $('#widevineLicenseUrl').val(hlsConfig.widevineLicenseUrl);
- }
-
- widevineLicenseUrl = hlsConfig.widevineLicenseUrl = $('#widevineLicenseUrl').val();
-
- if (hlsConfig.widevineLicenseUrl) {
- hlsConfig.emeEnabled = true;
- }
-
- onDemoConfigChanged();
- console.log('Using Hls.js config:', hlsConfig);
-
- window.hls = hls = new Hls(hlsConfig);
-
- logStatus('Loading manifest and attaching video element...');
-
- hls.loadSource(url);
- hls.autoLevelCapping = levelCapping;
- hls.attachMedia(video);
-
- hls.on(Hls.Events.MEDIA_ATTACHED, function () {
- logStatus('Media element attached');
- bufferingIdx = -1;
- events.video.push({
- time: performance.now() - events.t0,
- type: 'Media attached'
- });
- trimEventHistory();
- });
-
- hls.on(Hls.Events.MEDIA_DETACHED, function () {
- logStatus('Media element detached');
- bufferingIdx = -1;
- tracks = [];
- events.video.push({
- time: performance.now() - events.t0,
- type: 'Media detached'
- });
- trimEventHistory();
- });
-
- hls.on(Hls.Events.FRAG_PARSING_INIT_SEGMENT, function (event, data) {
- showCanvas();
- var event = {
- time: performance.now() - events.t0,
- type: data.id + ' init segment'
- };
- events.video.push(event);
- trimEventHistory();
- });
-
- hls.on(Hls.Events.FRAG_PARSING_METADATA, function (event, data) {
- //console.log("Id3 samples ", data.samples);
- });
-
- hls.on(Hls.Events.LEVEL_SWITCHING, function (event, data) {
- events.level.push({
- time: performance.now() - events.t0,
- id: data.level,
- bitrate: Math.round(hls.levels[data.level].bitrate / 1000)
- });
- trimEventHistory();
- updateLevelInfo();
- });
-
- hls.on(Hls.Events.MANIFEST_PARSED, function (event, data) {
- var event = {
- type: 'manifest',
- name: '',
- start: 0,
- end: data.levels.length,
- time: data.stats.trequest - events.t0,
- latency: data.stats.tfirst - data.stats.trequest,
- load: data.stats.tload - data.stats.tfirst,
- duration: data.stats.tload - data.stats.tfirst
- };
- events.load.push(event);
- trimEventHistory();
- refreshCanvas();
- });
-
- hls.on(Hls.Events.MANIFEST_PARSED, function (event, data) {
- logStatus('No of quality levels found: ' + hls.levels.length);
- logStatus('Manifest successfully loaded');
- stats = {
- levelNb: data.levels.length,
- levelParsed: 0
- };
- trimEventHistory();
- updateLevelInfo();
- });
-
- hls.on(Hls.Events.AUDIO_TRACKS_UPDATED, function (event, data) {
- logStatus('No of audio tracks found: ' + data.audioTracks.length);
- updateAudioTrackInfo();
- });
-
- hls.on(Hls.Events.AUDIO_TRACK_SWITCHING, function (event, data) {
- logStatus('Audio track switching...');
- updateAudioTrackInfo();
- var event = {
- time: performance.now() - events.t0,
- type: 'audio switching',
- name: '@' + data.id
- };
- events.video.push(event);
- trimEventHistory();
- lastAudioTrackSwitchingIdx = events.video.length - 1;
- });
-
- hls.on(Hls.Events.AUDIO_TRACK_SWITCHED, function (event, data) {
- logStatus('Audio track switched');
- updateAudioTrackInfo();
- var event = {
- time: performance.now() - events.t0,
- type: 'audio switched',
- name: '@' + data.id
- };
- if (lastAudioTrackSwitchingIdx !== undefined) {
- events.video[lastAudioTrackSwitchingIdx].duration = event.time - events.video[lastAudioTrackSwitchingIdx].time;
- lastAudioTrackSwitchingIdx = undefined;
- }
- events.video.push(event);
- trimEventHistory();
- });
-
- hls.on(Hls.Events.LEVEL_LOADED, function (event, data) {
- events.isLive = data.details.live;
- var event = {
- type: 'level',
- id: data.level,
- start: data.details.startSN,
- end: data.details.endSN,
- time: data.stats.trequest - events.t0,
- latency: data.stats.tfirst - data.stats.trequest,
- load: data.stats.tload - data.stats.tfirst,
- parsing: data.stats.tparsed - data.stats.tload,
- duration: data.stats.tload - data.stats.tfirst
- };
- var parsingDuration = data.stats.tparsed - data.stats.tload;
- if (stats.levelParsed) {
- this.sumLevelParsingMs += parsingDuration;
- } else {
- this.sumLevelParsingMs = parsingDuration;
- }
-
- stats.levelParsed++;
- stats.levelParsingUs = Math.round(1000 * this.sumLevelParsingMs / stats.levelParsed);
-
- //console.log('parsing level duration :' + stats.levelParsingUs + 'us,count:' + stats.levelParsed);
-
- events.load.push(event);
- trimEventHistory();
- refreshCanvas();
- });
-
- hls.on(Hls.Events.AUDIO_TRACK_LOADED, function (event, data) {
- events.isLive = data.details.live;
- var event = {
- type: 'audio track',
- id: data.id,
- start: data.details.startSN,
- end: data.details.endSN,
- time: data.stats.trequest - events.t0,
- latency: data.stats.tfirst - data.stats.trequest,
- load: data.stats.tload - data.stats.tfirst,
- parsing: data.stats.tparsed - data.stats.tload,
- duration: data.stats.tload - data.stats.tfirst
- };
- events.load.push(event);
- trimEventHistory();
- refreshCanvas();
- });
-
- hls.on(Hls.Events.FRAG_BUFFERED, function (event, data) {
- var event = {
- type: data.frag.type + ' fragment',
- id: data.frag.level,
- id2: data.frag.sn,
- time: data.stats.trequest - events.t0,
- latency: data.stats.tfirst - data.stats.trequest,
- load: data.stats.tload - data.stats.tfirst,
- parsing: data.stats.tparsed - data.stats.tload,
- buffer: data.stats.tbuffered - data.stats.tparsed,
- duration: data.stats.tbuffered - data.stats.tfirst,
- bw: Math.round(8 * data.stats.total / (data.stats.tbuffered - data.stats.trequest)),
- size: data.stats.total
- };
- events.load.push(event);
- events.bitrate.push({
- time: performance.now() - events.t0,
- bitrate: event.bw,
- duration: data.frag.duration,
- level: event.id
- });
- if (hls.bufferTimer === undefined) {
- events.buffer.push({
- time: 0,
- buffer: 0,
- pos: 0
- });
- hls.bufferTimer = window.setInterval(checkBuffer, 100);
- }
- trimEventHistory();
- refreshCanvas();
- updateLevelInfo();
-
- var latency = data.stats.tfirst - data.stats.trequest,
- parsing = data.stats.tparsed - data.stats.tload,
- process = data.stats.tbuffered - data.stats.trequest,
- bitrate = Math.round(8 * data.stats.length / (data.stats.tbuffered - data.stats.tfirst));
- if (stats.fragBuffered) {
- stats.fragMinLatency = Math.min(stats.fragMinLatency, latency);
- stats.fragMaxLatency = Math.max(stats.fragMaxLatency, latency);
- stats.fragMinProcess = Math.min(stats.fragMinProcess, process);
- stats.fragMaxProcess = Math.max(stats.fragMaxProcess, process);
- stats.fragMinKbps = Math.min(stats.fragMinKbps, bitrate);
- stats.fragMaxKbps = Math.max(stats.fragMaxKbps, bitrate);
- stats.autoLevelCappingMin = Math.min(stats.autoLevelCappingMin, hls.autoLevelCapping);
- stats.autoLevelCappingMax = Math.max(stats.autoLevelCappingMax, hls.autoLevelCapping);
- stats.fragBuffered++;
- } else {
- stats.fragMinLatency = stats.fragMaxLatency = latency;
- stats.fragMinProcess = stats.fragMaxProcess = process;
- stats.fragMinKbps = stats.fragMaxKbps = bitrate;
- stats.fragBuffered = 1;
- stats.fragBufferedBytes = 0;
- stats.autoLevelCappingMin = stats.autoLevelCappingMax = hls.autoLevelCapping;
- this.sumLatency = 0;
- this.sumKbps = 0;
- this.sumProcess = 0;
- this.sumParsing = 0;
- }
- stats.fraglastLatency = latency;
- this.sumLatency += latency;
- stats.fragAvgLatency = Math.round(this.sumLatency / stats.fragBuffered);
- stats.fragLastProcess = process;
- this.sumProcess += process;
- this.sumParsing += parsing;
- stats.fragAvgProcess = Math.round(this.sumProcess / stats.fragBuffered);
- stats.fragLastKbps = bitrate;
- this.sumKbps += bitrate;
- stats.fragAvgKbps = Math.round(this.sumKbps / stats.fragBuffered);
- stats.fragBufferedBytes += data.stats.total;
- stats.fragparsingKbps = Math.round(8 * stats.fragBufferedBytes / this.sumParsing);
- stats.fragparsingMs = Math.round(this.sumParsing);
- stats.autoLevelCappingLast = hls.autoLevelCapping;
- });
-
- hls.on(Hls.Events.LEVEL_SWITCHED, function (event, data) {
- var event = {
- time: performance.now() - events.t0,
- type: 'level switched',
- name: data.level
- };
- events.video.push(event);
- trimEventHistory();
- refreshCanvas();
- updateLevelInfo();
- });
-
- hls.on(Hls.Events.FRAG_CHANGED, function (event, data) {
- var event = {
- time: performance.now() - events.t0,
- type: 'frag changed',
- name: data.frag.sn + ' @ ' + data.frag.level
- };
- events.video.push(event);
- trimEventHistory();
- refreshCanvas();
- updateLevelInfo();
- stats.tagList = data.frag.tagList;
-
- var level = data.frag.level,
- autoLevel = data.frag.autoLevel;
- if (stats.levelStart === undefined) {
- stats.levelStart = level;
- }
-
- if (autoLevel) {
- if (stats.fragChangedAuto) {
- stats.autoLevelMin = Math.min(stats.autoLevelMin, level);
- stats.autoLevelMax = Math.max(stats.autoLevelMax, level);
- stats.fragChangedAuto++;
- if (this.levelLastAuto && level !== stats.autoLevelLast) {
- stats.autoLevelSwitch++;
- }
- } else {
- stats.autoLevelMin = stats.autoLevelMax = level;
- stats.autoLevelSwitch = 0;
- stats.fragChangedAuto = 1;
- this.sumAutoLevel = 0;
- }
- this.sumAutoLevel += level;
- stats.autoLevelAvg = Math.round(1000 * this.sumAutoLevel / stats.fragChangedAuto) / 1000;
- stats.autoLevelLast = level;
- } else {
- if (stats.fragChangedManual) {
- stats.manualLevelMin = Math.min(stats.manualLevelMin, level);
- stats.manualLevelMax = Math.max(stats.manualLevelMax, level);
- stats.fragChangedManual++;
- if (!this.levelLastAuto && level !== stats.manualLevelLast) {
- stats.manualLevelSwitch++;
- }
- } else {
- stats.manualLevelMin = stats.manualLevelMax = level;
- stats.manualLevelSwitch = 0;
- stats.fragChangedManual = 1;
- }
- stats.manualLevelLast = level;
- }
- this.levelLastAuto = autoLevel;
- });
-
- hls.on(Hls.Events.FRAG_LOAD_EMERGENCY_ABORTED, function (event, data) {
- if (stats) {
- if (stats.fragLoadEmergencyAborted === undefined) {
- stats.fragLoadEmergencyAborted = 1;
- } else {
- stats.fragLoadEmergencyAborted++;
- }
- }
- });
-
- hls.on(Hls.Events.FRAG_DECRYPTED, function (event, data) {
- if (!stats.fragDecrypted) {
- stats.fragDecrypted = 0;
- this.totalDecryptTime = 0;
- stats.fragAvgDecryptTime = 0;
- }
- stats.fragDecrypted++;
- this.totalDecryptTime += data.stats.tdecrypt - data.stats.tstart;
- stats.fragAvgDecryptTime = this.totalDecryptTime / stats.fragDecrypted;
- });
-
- hls.on(Hls.Events.ERROR, function (event, data) {
- console.warn('Error event:', data);
- switch (data.details) {
- case Hls.ErrorDetails.MANIFEST_LOAD_ERROR:
- try {
- $('#errorOut').html('Cannot load ' + url + '
HTTP response code:' + data.response.code + '
' + data.response.text);
- if (data.response.code === 0) {
- $('#errorOut').append('This might be a CORS issue, consider installing Allow-Control-Allow-Origin Chrome Extension');
- }
- } catch (err) {
- $('#errorOut').html('Cannot load ' + url + '
Response body: ' + data.response.text);
- }
- break;
- case Hls.ErrorDetails.MANIFEST_LOAD_TIMEOUT:
- logError('Timeout while loading manifest');
- break;
- case Hls.ErrorDetails.MANIFEST_PARSING_ERROR:
- logError('Error while parsing manifest:' + data.reason);
- break;
- case Hls.ErrorDetails.LEVEL_LOAD_ERROR:
- logError('Error while loading level playlist');
- break;
- case Hls.ErrorDetails.LEVEL_LOAD_TIMEOUT:
- logError('Timeout while loading level playlist');
- break;
- case Hls.ErrorDetails.LEVEL_SWITCH_ERROR:
- logError('Error while trying to switch to level ' + data.level);
- break;
- case Hls.ErrorDetails.FRAG_LOAD_ERROR:
- logError('Error while loading fragment ' + data.frag.url);
- break;
- case Hls.ErrorDetails.FRAG_LOAD_TIMEOUT:
- logError('Timeout while loading fragment ' + data.frag.url);
- break;
- case Hls.ErrorDetails.FRAG_LOOP_LOADING_ERROR:
- logError('Fragment-loop loading error');
- break;
- case Hls.ErrorDetails.FRAG_DECRYPT_ERROR:
- logError('Decrypting error:' + data.reason);
- break;
- case Hls.ErrorDetails.FRAG_PARSING_ERROR:
- logError('Parsing error:' + data.reason);
- break;
- case Hls.ErrorDetails.KEY_LOAD_ERROR:
- logError('Error while loading key ' + data.frag.decryptdata.uri);
- break;
- case Hls.ErrorDetails.KEY_LOAD_TIMEOUT:
- logError('Timeout while loading key ' + data.frag.decryptdata.uri);
- break;
- case Hls.ErrorDetails.BUFFER_APPEND_ERROR:
- logError('Buffer append error');
- break;
- case Hls.ErrorDetails.BUFFER_ADD_CODEC_ERROR:
- logError('Buffer add codec error for ' + data.mimeType + ':' + data.err.message);
- break;
- case Hls.ErrorDetails.BUFFER_APPENDING_ERROR:
- logError('Buffer appending error');
- break;
- case Hls.ErrorDetails.BUFFER_STALLED_ERROR:
- logError('Buffer stalled error');
- break;
- default:
- break;
- }
- if (data.fatal) {
- console.error('Fatal error :' + data.details);
- switch (data.type) {
- case Hls.ErrorTypes.MEDIA_ERROR:
- handleMediaError();
- break;
- case Hls.ErrorTypes.NETWORK_ERROR:
- logError('A network error occured');
- break;
- default:
- logError('An unrecoverable error occured');
- hls.destroy();
- break;
- }
- }
- if (!stats) {
- stats = {};
- }
- // track all errors independently
- if (stats[data.details] === undefined) {
- stats[data.details] = 1;
- } else {
- stats[data.details] += 1;
- }
-
- // track fatal error
- if (data.fatal) {
- if (stats.fatalError === undefined) {
- stats.fatalError = 1;
- } else {
- stats.fatalError += 1;
- }
- }
- $('#statisticsOut').text(JSON.stringify(Object(__WEBPACK_IMPORTED_MODULE_0__demo_utils__["b" /* sortObject */])(stats), null, '\t'));
- });
-
- hls.on(Hls.Events.BUFFER_CREATED, function (event, data) {
- tracks = data.tracks;
- });
-
- hls.on(Hls.Events.BUFFER_APPENDING, function (event, data) {
- if (dumpfMP4) {
- fmp4Data[data.type].push(data.data);
- }
- });
-
- hls.on(Hls.Events.FPS_DROP, function (event, data) {
- var evt = {
- time: performance.now() - events.t0,
- type: 'frame drop',
- name: data.currentDropped + '/' + data.currentDecoded
- };
- events.video.push(evt);
- trimEventHistory();
- if (stats) {
- if (stats.fpsDropEvent === undefined) {
- stats.fpsDropEvent = 1;
- } else {
- stats.fpsDropEvent++;
- }
-
- stats.fpsTotalDroppedFrames = data.totalDroppedFrames;
- }
- });
-
- video.addEventListener('resize', handleVideoEvent);
- video.addEventListener('seeking', handleVideoEvent);
- video.addEventListener('seeked', handleVideoEvent);
- video.addEventListener('pause', handleVideoEvent);
- video.addEventListener('play', handleVideoEvent);
- video.addEventListener('canplay', handleVideoEvent);
- video.addEventListener('canplaythrough', handleVideoEvent);
- video.addEventListener('ended', handleVideoEvent);
- video.addEventListener('playing', handleVideoEvent);
- video.addEventListener('error', handleVideoEvent);
- video.addEventListener('loadedmetadata', handleVideoEvent);
- video.addEventListener('loadeddata', handleVideoEvent);
- video.addEventListener('durationchange', handleVideoEvent);
-}
-
-function handleUnsupported() {
- if (navigator.userAgent.toLowerCase().indexOf('firefox') !== -1) {
- logStatus('You are using Firefox, it looks like MediaSource is not enabled,
please ensure the following keys are set appropriately in about:config
media.mediasource.enabled=true
media.mediasource.mp4.enabled=true
media.mediasource.whitelist=false');
- } else {
- logStatus('Your Browser does not support MediaSourceExtension / MP4 mediasource');
- }
-}
-
-function handleVideoEvent(evt) {
- var data = '';
- switch (evt.type) {
- case 'durationchange':
- if (evt.target.duration - lastDuration <= 0.5) {
- // some browsers report several duration change events with almost the same value ... avoid spamming video events
- return;
- }
- lastDuration = evt.target.duration;
- data = Math.round(evt.target.duration * 1000);
- break;
- case 'resize':
- data = evt.target.videoWidth + '/' + evt.target.videoHeight;
- break;
- case 'loadedmetadata':
- case 'loadeddata':
- case 'canplay':
- case 'canplaythrough':
- case 'ended':
- case 'seeking':
- case 'seeked':
- case 'play':
- case 'playing':
- lastStartPosition = evt.target.currentTime;
- case 'pause':
- case 'waiting':
- case 'stalled':
- case 'error':
- data = Math.round(evt.target.currentTime * 1000);
- if (evt.type === 'error') {
- var errorTxt = void 0,
- mediaError = evt.currentTarget.error;
- switch (mediaError.code) {
- case mediaError.MEDIA_ERR_ABORTED:
- errorTxt = 'You aborted the video playback';
- break;
- case mediaError.MEDIA_ERR_DECODE:
- errorTxt = 'The video playback was aborted due to a corruption problem or because the video used features your browser did not support';
- handleMediaError();
- break;
- case mediaError.MEDIA_ERR_NETWORK:
- errorTxt = 'A network error caused the video download to fail part-way';
- break;
- case mediaError.MEDIA_ERR_SRC_NOT_SUPPORTED:
- errorTxt = 'The video could not be loaded, either because the server or network failed or because the format is not supported';
- break;
- }
-
- if (mediaError.message) {
- errorTxt += ' - ' + mediaError.message;
- }
-
- logStatus(errorTxt);
- console.error(errorTxt);
- }
- break;
- default:
- break;
- }
-
- var event = {
- time: performance.now() - events.t0,
- type: evt.type,
- name: data
- };
-
- events.video.push(event);
- if (evt.type === 'seeking') {
- lastSeekingIdx = events.video.length - 1;
- }
-
- if (evt.type === 'seeked') {
- events.video[lastSeekingIdx].duration = event.time - events.video[lastSeekingIdx].time;
- }
-
- trimEventHistory();
-}
-
-function handleMediaError() {
- if (autoRecoverError) {
- var now = performance.now();
- if (!recoverDecodingErrorDate || now - recoverDecodingErrorDate > 3000) {
- recoverDecodingErrorDate = performance.now();
- $('#statusOut').append(', trying to recover media error.');
- hls.recoverMediaError();
- } else {
- if (!recoverSwapAudioCodecDate || now - recoverSwapAudioCodecDate > 3000) {
- recoverSwapAudioCodecDate = performance.now();
- $('#statusOut').append(', trying to swap audio codec and recover media error.');
- hls.swapAudioCodec();
- hls.recoverMediaError();
- } else {
- $('#statusOut').append(', cannot recover. Last media error recovery failed.');
- }
- }
- }
-}
-
-function timeRangesToString(r) {
- var log = '';
- for (var i = 0; i < r.length; i++) {
- log += '[' + r.start(i) + ', ' + r.end(i) + ']';
- log += ' ';
- }
- return log;
-}
-
-function checkBuffer() {
- var v = $('#video')[0];
- var canvas = $('#bufferedCanvas')[0];
- var ctx = canvas.getContext('2d');
- var r = v.buffered;
- var bufferingDuration = void 0;
- ctx.fillStyle = 'black';
- ctx.fillRect(0, 0, canvas.width, canvas.height);
- ctx.fillStyle = 'gray';
- if (r) {
- if (!canvas.width || canvas.width !== v.clientWidth) {
- canvas.width = v.clientWidth;
- }
-
- var pos = v.currentTime,
- bufferLen;
- for (var i = 0, bufferLen = 0; i < r.length; i++) {
- var start = r.start(i) / v.duration * canvas.width;
- var end = r.end(i) / v.duration * canvas.width;
- ctx.fillRect(start, 3, Math.max(2, end - start), 10);
- if (pos >= r.start(i) && pos < r.end(i)) {
- // play position is inside this buffer TimeRange, retrieve end of buffer position and buffer length
- bufferLen = r.end(i) - pos;
- }
- }
- // check if we are in buffering / or playback ended state
- if (bufferLen <= 0.1 && v.paused === false && pos - lastStartPosition > 0.5) {
- // don't create buffering event if we are at the end of the playlist, don't report ended for live playlist
- if (lastDuration - pos <= 0.5 && events.isLive === false) {} else {
- // we are not at the end of the playlist ... real buffering
- if (bufferingIdx !== -1) {
- bufferingDuration = performance.now() - events.t0 - events.video[bufferingIdx].time;
- events.video[bufferingIdx].duration = bufferingDuration;
- events.video[bufferingIdx].name = bufferingDuration;
- } else {
- events.video.push({
- type: 'buffering',
- time: performance.now() - events.t0
- });
- trimEventHistory();
- // we are in buffering state
- bufferingIdx = events.video.length - 1;
- }
- }
- }
-
- if (bufferLen > 0.1 && bufferingIdx != -1) {
- bufferingDuration = performance.now() - events.t0 - events.video[bufferingIdx].time;
- events.video[bufferingIdx].duration = bufferingDuration;
- events.video[bufferingIdx].name = bufferingDuration;
- // we are out of buffering state
- bufferingIdx = -1;
- }
-
- // update buffer/position for current Time
- var event = {
- time: performance.now() - events.t0,
- buffer: Math.round(bufferLen * 1000),
- pos: Math.round(pos * 1000)
- };
- var bufEvents = events.buffer,
- bufEventLen = bufEvents.length;
- if (bufEventLen > 1) {
- var event0 = bufEvents[bufEventLen - 2],
- event1 = bufEvents[bufEventLen - 1];
- var slopeBuf0 = (event0.buffer - event1.buffer) / (event0.time - event1.time);
- var slopeBuf1 = (event1.buffer - event.buffer) / (event1.time - event.time);
-
- var slopePos0 = (event0.pos - event1.pos) / (event0.time - event1.time);
- var slopePos1 = (event1.pos - event.pos) / (event1.time - event.time);
- // compute slopes. if less than 30% difference, remove event1
- if ((slopeBuf0 === slopeBuf1 || Math.abs(slopeBuf0 / slopeBuf1 - 1) <= 0.3) && (slopePos0 === slopePos1 || Math.abs(slopePos0 / slopePos1 - 1) <= 0.3)) {
- bufEvents.pop();
- }
- }
- events.buffer.push(event);
- trimEventHistory();
- refreshCanvas();
-
- var log = 'Duration: ' + v.duration + '\n' + 'Buffered: ' + timeRangesToString(v.buffered) + '\n' + 'Seekable: ' + timeRangesToString(v.seekable) + '\n' + 'Played: ' + timeRangesToString(v.played) + '\n';
-
- if (hls.media) {
- for (var type in tracks) {
- log += 'Buffer for ' + type + ' contains: ' + timeRangesToString(tracks[type].buffer.buffered) + '\n';
- }
-
- var videoPlaybackQuality = v.getVideoPlaybackQuality;
- if (videoPlaybackQuality && (typeof videoPlaybackQuality === 'undefined' ? 'undefined' : _typeof(videoPlaybackQuality)) === (typeof Function === 'undefined' ? 'undefined' : _typeof(Function))) {
- log += 'Dropped frames: ' + v.getVideoPlaybackQuality().droppedVideoFrames + '\n';
- log += 'Corrupted frames:' + v.getVideoPlaybackQuality().corruptedVideoFrames + '\n';
- } else if (v.webkitDroppedFrameCount) {
- log += 'Dropped frames:' + v.webkitDroppedFrameCount + '\n';
- }
- }
- $('#bufferedOut').text(log);
-
- $('#statisticsOut').text(JSON.stringify(Object(__WEBPACK_IMPORTED_MODULE_0__demo_utils__["b" /* sortObject */])(stats), null, '\t'));
-
- ctx.fillStyle = 'blue';
-
- var x = v.currentTime / v.duration * canvas.width;
- ctx.fillRect(x, 0, 2, 15);
- }
-}
-
-function showCanvas() {
- showMetrics();
- $('#bufferedOut').show();
- $('#bufferedCanvas').show();
-}
-
-function hideCanvas() {
- hideMetrics();
- $('#bufferedOut').hide();
- $('#bufferedCanvas').hide();
-}
-
-function getMetrics() {
- var json = JSON.stringify(events);
- var jsonpacked = jsonpack.pack(json);
- // console.log('packing JSON from ' + json.length + ' to ' + jsonpacked.length + ' bytes');
- return btoa(jsonpacked);
-}
-
-function copyMetricsToClipBoard() {
- Object(__WEBPACK_IMPORTED_MODULE_0__demo_utils__["a" /* copyTextToClipboard */])(getMetrics());
-}
-
-function goToMetrics() {
- var url = document.URL;
- url = url.substr(0, url.lastIndexOf('/') + 1) + 'metrics.html';
- // console.log(url);
- window.open(url, '_blank');
-}
-
-function goToMetricsPermaLink() {
- var url = document.URL;
- var b64 = getMetrics();
- url = url.substr(0, url.lastIndexOf('/') + 1) + 'metrics.html#data=' + b64;
- // console.log(url);
- window.open(url, '_blank');
-}
-
-function minsecs(ts) {
- var m = Math.floor(Math.floor(ts % 3600) / 60);
- var s = Math.floor(ts % 60);
- return m + ':' + (s < 10 ? '0' : '') + s;
-}
-
-function onClickBufferedRange(event) {
- var canvas = $('#bufferedCanvas')[0];
- var v = $('#video')[0];
- var target = (event.clientX - canvas.offsetLeft) / canvas.width * v.duration;
- v.currentTime = target;
-}
-
-function updateLevelInfo() {
-
- if (!hls.levels) {
- return;
- }
-
- var button_template = '';
-
- var html2 = button_template;
- if (hls.autoLevelEnabled) {
- html2 += button_enabled;
- } else {
- html2 += button_disabled;
- }
-
- html2 += 'onclick="hls.loadLevel=-1">auto';
-
- var html3 = button_template;
- if (hls.autoLevelCapping === -1) {
- html3 += button_enabled;
- } else {
- html3 += button_disabled;
- }
-
- html3 += 'onclick="levelCapping=hls.autoLevelCapping=-1;updateLevelInfo();onDemoConfigChanged();">auto';
-
- var html4 = button_template;
- if (hls.autoLevelEnabled) {
- html4 += button_enabled;
- } else {
- html4 += button_disabled;
- }
-
- html4 += 'onclick="hls.nextLevel=-1">auto';
-
- for (var i = 0; i < hls.levels.length; i++) {
- html1 += button_template;
- if (hls.currentLevel === i) {
- html1 += button_enabled;
- } else {
- html1 += button_disabled;
- }
-
- var levelName = i;
- var label = level2label(i);
- if (label) {
- levelName += ' (' + level2label(i) + 'p)';
- }
-
- html1 += 'onclick="hls.currentLevel=' + i + '">' + levelName + '';
-
- html2 += button_template;
- if (hls.loadLevel === i) {
- html2 += button_enabled;
- } else {
- html2 += button_disabled;
- }
-
- html2 += 'onclick="hls.loadLevel=' + i + '">' + levelName + '';
-
- html3 += button_template;
- if (hls.autoLevelCapping === i) {
- html3 += button_enabled;
- } else {
- html3 += button_disabled;
- }
-
- html3 += 'onclick="levelCapping=hls.autoLevelCapping=' + i + ';updateLevelInfo();onDemoConfigChanged();">' + levelName + '';
-
- html4 += button_template;
- if (hls.nextLevel === i) {
- html4 += button_enabled;
- } else {
- html4 += button_disabled;
- }
-
- html4 += 'onclick="hls.nextLevel=' + i + '">' + levelName + '';
- }
-
- var v = $('#video')[0];
-
- if (v.videoWidth && v.videoHeight) {
- $('#currentResolution').html(v.videoWidth + ' x ' + v.videoHeight);
- }
-
- if ($('#currentLevelControl').html() != html1) {
- $('#currentLevelControl').html(html1);
- }
-
- if ($('#loadLevelControl').html() != html2) {
- $('#loadLevelControl').html(html2);
- }
-
- if ($('#levelCappingControl').html() != html3) {
- $('#levelCappingControl').html(html3);
- }
-
- if ($('#nextLevelControl').html() != html4) {
- $('#nextLevelControl').html(html4);
- }
-}
-
-function updateAudioTrackInfo() {
- var button_template = '';
- }
- $('#audioTrackControl').html(html1);
-}
-
-function level2label(index) {
- if (hls && hls.levels.length - 1 >= index) {
- var level = hls.levels[index];
- if (level.name) {
- return level.name;
- } else {
- if (level.height) {
- return level.height + 'p / ' + Math.round(level.bitrate / 1024) + 'kb';
- } else {
- if (level.bitrate) {
- return Math.round(level.bitrate / 1024) + 'kb';
- } else {
- return null;
- }
- }
- }
- }
-}
-
-function getDemoConfigPropOrDefault(propName, defaultVal) {
- return typeof demoConfig[propName] !== 'undefined' ? demoConfig[propName] : defaultVal;
-}
-
-function getURLParam(sParam, defaultValue) {
- var sPageURL = window.location.search.substring(1);
- var sURLVariables = sPageURL.split('&');
- for (var i = 0; i < sURLVariables.length; i++) {
- var sParameterName = sURLVariables[i].split('=');
- if (sParameterName[0] == sParam) {
- return 'undefined' == sParameterName[1] ? undefined : 'false' == sParameterName[1] ? false : sParameterName[1];
- }
- }
- return defaultValue;
-}
-
-function onDemoConfigChanged() {
- var url = $('#streamURL').val();
-
- demoConfig = {
- enableStreaming: enableStreaming,
- autoRecoverError: autoRecoverError,
- enableWorker: enableWorker,
- dumpfMP4: dumpfMP4,
- levelCapping: levelCapping,
- limitMetrics: limitMetrics,
- defaultAudioCodec: defaultAudioCodec,
- widevineLicenseUrl: escape(widevineLicenseUrl)
- };
-
- var serializedDemoConfig = btoa(JSON.stringify(demoConfig));
-
- var baseURL = document.URL.split('?')[0];
- var permalinkURL = baseURL + ('?src=' + encodeURIComponent(url) + '&demoConfig=' + serializedDemoConfig);
-
- $('#StreamPermalink').html('' + permalinkURL + '');
-}
-
-function createfMP4(type) {
- if (fmp4Data[type].length) {
- var blob = new Blob([arrayConcat(fmp4Data[type])], {
- type: 'application/octet-stream'
- });
- var filename = type + '-' + new Date().toISOString() + '.mp4';
- saveAs(blob, filename);
- //$('body').append('Download ' + filename + ' track
');
- }
-}
-
-function arrayConcat(inputArray) {
- var totalLength = inputArray.reduce(function (prev, cur) {
- return prev + cur.length;
- }, 0);
- var result = new Uint8Array(totalLength);
- var offset = 0;
- inputArray.forEach(function (element) {
- result.set(element, offset);
- offset += element.length;
- });
- return result;
-}
-
-function hideAllTabs() {
- $('#playbackControlTab').hide();
- $('#qualityLevelControlTab').hide();
- $('#audioTrackControlTab').hide();
- $('#metricsDisplayTab').hide();
- $('#statsDisplayTab').hide();
-}
-
-function toggleTab(tabElId) {
- hideAllTabs();
- hideMetrics();
- $('#' + tabElId).show();
-}
-
-function appendLog(textElId, message) {
- var el = $('#' + textElId);
- var logText = el.text();
- if (logText.length) {
- logText += '\n';
- }
- var timestamp = (Date.now() - startTime) / 1000;
- var newMessage = timestamp + ' | ' + message;
- logText += newMessage;
- // update
- el.text(logText);
-}
-
-function logStatus(message) {
- appendLog('statusOut', message);
-}
-
-function logError(message) {
- appendLog('errorOut', message);
-}
-
-/***/ }),
-/* 1 */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-/* harmony export (immutable) */ __webpack_exports__["b"] = sortObject;
-/* harmony export (immutable) */ __webpack_exports__["a"] = copyTextToClipboard;
-var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
-
-function sortObject(obj) {
- if ((typeof obj === 'undefined' ? 'undefined' : _typeof(obj)) !== 'object') {
- return obj;
- }
- var temp = {};
- var keys = [];
- for (var key in obj) {
- keys.push(key);
- }
- keys.sort();
- for (var index in keys) {
- temp[keys[index]] = sortObject(obj[keys[index]]);
- }
- return temp;
-}
-
-function copyTextToClipboard(text) {
- var textArea = document.createElement('textarea');
- textArea.value = text;
- document.body.appendChild(textArea);
- textArea.select();
- try {
- var successful = document.execCommand('copy');
- var msg = successful ? 'successful' : 'unsuccessful';
- console.log('Copying text command was ' + msg);
- } catch (err) {
- console.log('Oops, unable to copy');
- }
- document.body.removeChild(textArea);
-}
-
-/***/ }),
-/* 2 */
-/***/ (function(module, exports) {
-
-var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
-
-/**
- * Create test stream
- * @param {string} url
- * @param {string} description
- * @param {boolean} [live]
- * @param {boolean} [abr]
- * @param {string[]} [blacklist_ua]
- * @returns {{url: string, description: string, live: boolean, abr: boolean, blacklist_ua: string[]}}
- */
-function createTestStream(url, description) {
- var live = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
- var abr = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true;
- var blacklist_ua = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : [];
-
- return {
- url: url,
- description: description,
- live: live,
- abr: abr,
- blacklist_ua: blacklist_ua
- };
-}
-
-/**
- * @param {Object} target
- * @param {Object} [config]
- * @returns {{url: string, description: string, live: boolean, abr: boolean, blacklist_ua: string[]}}
- */
-function createTestStreamWithConfig(target, config) {
- if ((typeof target === 'undefined' ? 'undefined' : _typeof(target)) !== 'object') {
- throw new Error('target should be object');
- }
-
- var testStream = createTestStream(target.url, target.description, target.live, target.abr, target.blacklist_ua);
-
- testStream.config = config;
-
- return testStream;
-}
-
-module.exports = {
- bbb: createTestStreamWithConfig({
- url: 'https://video-dev.github.io/streams/x36xhzz/x36xhzz.m3u8',
- description: 'Big Buck Bunny - adaptive qualities'
- }, {
- // try to workaround test failing because of slow seek on Chrome/Win10
- nudgeMaxRetry: 5
- }),
- bigBuckBunny480p: {
- 'url': 'https://video-dev.github.io/streams/x36xhzz/url_6/193039199_mp4_h264_aac_hq_7.m3u8',
- 'description': 'Big Buck Bunny - 480p only',
- 'live': false,
- 'abr': false,
- 'blacklist_ua': ['internet explorer']
- },
- arte: {
- 'url': 'https://video-dev.github.io/streams/test_001/stream.m3u8',
- 'description': 'ARTE China,ABR',
- 'live': false,
- 'abr': true
- },
- deltatreDAI: {
- 'url': 'https://video-dev.github.io/streams/dai-discontinuity-deltatre/manifest.m3u8',
- 'description': 'Ad-insertion in event stream',
- 'live': false,
- 'abr': false,
- 'blacklist_ua': ['internet explorer']
- },
- issue666: {
- 'url': 'https://video-dev.github.io/streams/issue666/playlists/cisq0gim60007xzvi505emlxx.m3u8',
- 'description': 'hls.js/issues/666',
- 'live': false,
- 'abr': false,
- 'blacklist_ua': ['internet explorer']
- },
- issue649: {
- 'url': 'http://cdn3.screen9.com/media/c/W/cW87csHkxsgu5TV1qs78aA_auto_hls.m3u8?auth=qlUjeCtbVdtkDfZYrtveTIVUXX1yuSqgF8wfWabzKpX72r-d5upW88-FHuyRRdnZA_1PKRTGAtTt_6Z-aj22kw',
- 'description': 'hls.js/issues/649',
- 'live': false,
- 'abr': false
- },
- closedCaptions: {
- 'url': 'http://playertest.longtailvideo.com/adaptive/captions/playlist.m3u8',
- 'description': 'CNN special report, with CC',
- 'live': false,
- 'abr': false,
- 'blacklist_ua': ['safari']
- },
- oceansAES: {
- 'url': 'http://playertest.longtailvideo.com/adaptive/oceans_aes/oceans_aes.m3u8',
- 'description': 'AES encrypted,ABR',
- 'live': false,
- 'abr': true
- },
- /*
- bbbAES: {
- 'url': 'https://video-dev.github.io/streams/bbbAES/playlists/sample_aes/index.m3u8',
- 'description': 'SAMPLE-AES encrypted',
- 'live': false,
- 'abr': false
- },
- */
- mp3Audio: {
- 'url': 'https://player.webvideocore.net/CL1olYogIrDWvwqiIKK7eLBkzvO18gwo9ERMzsyXzwt_t-ya8ygf2kQBZww38JJT/8i4vvznv8408.m3u8',
- 'description': 'MP3 VOD demo',
- 'live': false,
- 'abr': false,
- 'blacklist_ua': ['safari']
- },
- mpegAudioOnly: {
- 'url': 'https://pl.streamingvideoprovider.com/mp3-playlist/playlist.m3u8',
- 'description': 'MPEG Audio Only demo',
- 'live': false,
- 'abr': false,
- 'blacklist_ua': ['internet explorer', 'MicrosoftEdge', 'safari', 'firefox']
- },
- fmp4: {
- 'url': 'https://storage.googleapis.com/shaka-demo-assets/angel-one-hls/hls.m3u8',
- 'description': 'HLS fMP4 Angel-One multiple audio-tracks',
- 'live': false,
- 'abr': false,
- 'blacklist_ua': ['safari', 'internet explorer']
- },
- fmp4Bitmovin: {
- 'url': 'https://bitdash-a.akamaihd.net/content/MI201109210084_1/m3u8s-fmp4/f08e80da-bf1d-4e3d-8899-f0f6155f6efa.m3u8',
- 'description': 'HLS fMP4 by Bitmovin',
- 'live': false,
- 'abr': true,
- 'blacklist_ua': ['safari', 'internet explorer']
- },
- offset_pts: {
- 'url': 'https://video-dev.github.io/streams/pts_shift/master.m3u8',
- 'description': 'DK Turntable, PTS shifted by 2.3s',
- 'live': false,
- 'abr': false
- },
- /*
- uspHLSAteam: createTestStream(
- 'http://demo.unified-streaming.com/video/ateam/ateam.ism/ateam.m3u8?session_id=27199',
- 'A-Team movie trailer - HLS by Unified Streaming Platform'
- ),
- */
- angelOneShakaWidevine: createTestStreamWithConfig({
- url: 'https://storage.googleapis.com/shaka-demo-assets/angel-one-widevine-hls/hls.m3u8',
- description: 'Shaka-packager Widevine DRM (EME) HLS-fMP4 - Angel One Demo',
- blacklist_ua: ['firefox', 'safari', 'internet explorer']
- }, {
- widevineLicenseUrl: 'https://cwip-shaka-proxy.appspot.com/no_auth',
- emeEnabled: true
- }),
- audioOnlyMultipleLevels: {
- 'url': 'https://s3.amazonaws.com/bob.jwplayer.com/~alex/121628/new_master.m3u8',
- 'description': 'Multiple non-alternate audio levels',
- 'live': false,
- 'abr': false
- },
- pdtDuplicate: {
- url: 'https://playertest.longtailvideo.com/adaptive/artbeats/manifest.m3u8',
- description: 'Stream with duplicate sequential PDT values'
- },
- pdtLargeGap: {
- url: 'https://playertest.longtailvideo.com/adaptive/boxee/playlist.m3u8',
- description: 'PDTs with large gaps following discontinuities'
- },
- pdtBadValues: {
- url: 'https://playertest.longtailvideo.com/adaptive/progdatime/playlist2.m3u8',
- description: 'PDTs with bad values'
- },
- pdtOneValue: {
- url: 'https://playertest.longtailvideo.com/adaptive/aviion/manifest.m3u8',
- description: 'One PDT, no discontinuities'
- }
-};
-
-/***/ })
-/******/ ])["default"];
-});
-//# sourceMappingURL=hls-demo.js.map
\ No newline at end of file
diff --git a/dist/hls-demo.js.map b/dist/hls-demo.js.map
deleted file mode 100644
index 97e50d77a91..00000000000
--- a/dist/hls-demo.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["webpack:///webpack/universalModuleDefinition","webpack:///webpack/bootstrap 4272408a55a30c66251b","webpack:///./demo/main.js","webpack:///./demo/demo-utils.js","webpack:///./tests/test-streams.js"],"names":["testStreams","require","defaultTestStreamUrl","url","sourceURL","decodeURIComponent","getURLParam","demoConfig","JSON","parse","atob","enableStreaming","getDemoConfigPropOrDefault","autoRecoverError","enableWorker","levelCapping","limitMetrics","defaultAudioCodec","undefined","widevineLicenseUrl","dumpfMP4","bufferingIdx","selectedTestStream","video","$","startTime","Date","now","lastSeekingIdx","lastStartPosition","lastDuration","lastAudioTrackSwitchingIdx","hls","events","stats","tracks","fmp4Data","document","ready","Object","keys","forEach","key","stream","option","Option","description","append","change","val","streamUrl","loadSelectedStream","width","click","checked","onDemoConfigChanged","value","prop","Hls","version","html","volume","hideAllTabs","toggle","windowSliding","setupGlobals","window","t0","performance","load","buffer","level","bitrate","recoverDecodingErrorDate","recoverSwapAudioCodecDate","onClickBufferedRange","updateLevelInfo","createfMP4","goToMetricsPermaLink","toggleTab","trimArray","target","limit","length","shift","trimEventHistory","x","isSupported","handleUnsupported","hideCanvas","destroy","bufferTimer","clearInterval","logStatus","unescape","hlsConfig","debug","config","emeEnabled","console","log","loadSource","autoLevelCapping","attachMedia","on","Events","MEDIA_ATTACHED","push","time","type","MEDIA_DETACHED","FRAG_PARSING_INIT_SEGMENT","event","data","showCanvas","id","FRAG_PARSING_METADATA","LEVEL_SWITCHING","Math","round","levels","MANIFEST_PARSED","name","start","end","trequest","latency","tfirst","tload","duration","refreshCanvas","levelNb","levelParsed","AUDIO_TRACKS_UPDATED","audioTracks","updateAudioTrackInfo","AUDIO_TRACK_SWITCHING","AUDIO_TRACK_SWITCHED","LEVEL_LOADED","isLive","details","live","startSN","endSN","parsing","tparsed","parsingDuration","sumLevelParsingMs","levelParsingUs","AUDIO_TRACK_LOADED","FRAG_BUFFERED","frag","id2","sn","tbuffered","bw","total","size","pos","setInterval","checkBuffer","process","fragBuffered","fragMinLatency","min","fragMaxLatency","max","fragMinProcess","fragMaxProcess","fragMinKbps","fragMaxKbps","autoLevelCappingMin","autoLevelCappingMax","fragBufferedBytes","sumLatency","sumKbps","sumProcess","sumParsing","fraglastLatency","fragAvgLatency","fragLastProcess","fragAvgProcess","fragLastKbps","fragAvgKbps","fragparsingKbps","fragparsingMs","autoLevelCappingLast","LEVEL_SWITCHED","FRAG_CHANGED","tagList","autoLevel","levelStart","fragChangedAuto","autoLevelMin","autoLevelMax","levelLastAuto","autoLevelLast","autoLevelSwitch","sumAutoLevel","autoLevelAvg","fragChangedManual","manualLevelMin","manualLevelMax","manualLevelLast","manualLevelSwitch","FRAG_LOAD_EMERGENCY_ABORTED","fragLoadEmergencyAborted","FRAG_DECRYPTED","fragDecrypted","totalDecryptTime","fragAvgDecryptTime","tdecrypt","tstart","ERROR","warn","ErrorDetails","MANIFEST_LOAD_ERROR","context","response","code","text","err","MANIFEST_LOAD_TIMEOUT","logError","MANIFEST_PARSING_ERROR","reason","LEVEL_LOAD_ERROR","LEVEL_LOAD_TIMEOUT","LEVEL_SWITCH_ERROR","FRAG_LOAD_ERROR","FRAG_LOAD_TIMEOUT","FRAG_LOOP_LOADING_ERROR","FRAG_DECRYPT_ERROR","FRAG_PARSING_ERROR","KEY_LOAD_ERROR","decryptdata","uri","KEY_LOAD_TIMEOUT","BUFFER_APPEND_ERROR","BUFFER_ADD_CODEC_ERROR","mimeType","message","BUFFER_APPENDING_ERROR","BUFFER_STALLED_ERROR","fatal","error","ErrorTypes","MEDIA_ERROR","handleMediaError","NETWORK_ERROR","fatalError","stringify","sortObject","BUFFER_CREATED","BUFFER_APPENDING","FPS_DROP","evt","currentDropped","currentDecoded","fpsDropEvent","fpsTotalDroppedFrames","totalDroppedFrames","addEventListener","handleVideoEvent","navigator","userAgent","toLowerCase","indexOf","videoWidth","videoHeight","currentTime","errorTxt","mediaError","currentTarget","MEDIA_ERR_ABORTED","MEDIA_ERR_DECODE","MEDIA_ERR_NETWORK","MEDIA_ERR_SRC_NOT_SUPPORTED","recoverMediaError","swapAudioCodec","timeRangesToString","r","i","v","canvas","ctx","getContext","buffered","bufferingDuration","fillStyle","fillRect","height","clientWidth","bufferLen","paused","bufEvents","bufEventLen","event0","event1","slopeBuf0","slopeBuf1","slopePos0","slopePos1","abs","pop","seekable","played","media","videoPlaybackQuality","getVideoPlaybackQuality","Function","droppedVideoFrames","corruptedVideoFrames","webkitDroppedFrameCount","showMetrics","show","hideMetrics","hide","getMetrics","json","jsonpacked","jsonpack","pack","btoa","copyMetricsToClipBoard","copyTextToClipboard","goToMetrics","URL","substr","lastIndexOf","open","b64","minsecs","ts","m","floor","s","clientX","offsetLeft","button_template","button_enabled","button_disabled","html1","autoLevelEnabled","html2","html3","html4","currentLevel","levelName","label","level2label","loadLevel","nextLevel","audioTrackId","audioTrack","len","index","propName","defaultVal","sParam","defaultValue","sPageURL","location","search","substring","sURLVariables","split","sParameterName","escape","serializedDemoConfig","baseURL","permalinkURL","encodeURIComponent","blob","Blob","arrayConcat","filename","toISOString","saveAs","inputArray","totalLength","reduce","prev","cur","result","Uint8Array","offset","element","set","tabElId","appendLog","textElId","el","logText","timestamp","newMessage","obj","temp","sort","textArea","createElement","body","appendChild","select","successful","execCommand","msg","removeChild","createTestStream","abr","blacklist_ua","createTestStreamWithConfig","Error","testStream","module","exports","bbb","nudgeMaxRetry","bigBuckBunny480p","arte","deltatreDAI","issue666","issue649","closedCaptions","oceansAES","mp3Audio","mpegAudioOnly","fmp4","fmp4Bitmovin","offset_pts","angelOneShakaWidevine","audioOnlyMultipleLevels","pdtDuplicate","pdtLargeGap","pdtBadValues","pdtOneValue"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD,O;ACVA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;;AAGA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAK;AACL;AACA;;AAEA;AACA;AACA;AACA,mCAA2B,0BAA0B,EAAE;AACvD,yCAAiC,eAAe;AAChD;AACA;AACA;;AAEA;AACA,8DAAsD,+DAA+D;;AAErH;AACA;;AAEA;AACA;;;;;;;;;;;;;;AC7DA;;AAEA,IAAMA,cAAc,mBAAAC,CAAQ,CAAR,CAApB;AACA,IAAMC,uBAAuBF,YAAY,KAAZ,EAAmBG,GAAhD;AACA,IAAMC,YAAYC,mBAAmBC,YAAY,KAAZ,EAAmBJ,oBAAnB,CAAnB,CAAlB;;AAEA,IAAIK,aAAaD,YAAY,YAAZ,EAA0B,IAA1B,CAAjB;AACA,IAAIC,UAAJ,EAAgB;AACdA,eAAaC,KAAKC,KAAL,CAAWC,KAAKH,UAAL,CAAX,CAAb;AACD,CAFD,MAEO;AACLA,eAAa,EAAb;AACD;;AAED,IAAII,kBAAkBC,2BAA2B,iBAA3B,EAA8C,IAA9C,CAAtB;AACA,IAAIC,mBAAmBD,2BAA2B,kBAA3B,EAA+C,IAA/C,CAAvB;AACA,IAAIE,eAAeF,2BAA2B,cAA3B,EAA2C,IAA3C,CAAnB;AACA,IAAIG,eAAeH,2BAA2B,cAA3B,EAA2C,CAAC,CAA5C,CAAnB;AACA,IAAII,eAAeJ,2BAA2B,cAA3B,EAA2C,CAAC,CAA5C,CAAnB;AACA,IAAIK,oBAAoBL,2BAA2B,mBAA3B,EAAgDM,SAAhD,CAAxB;AACA,IAAIC,qBAAqBP,2BAA2B,oBAA3B,EAAiDM,SAAjD,CAAzB;AACA,IAAIE,WAAWR,2BAA2B,UAA3B,EAAuC,KAAvC,CAAf;;AAEA,IAAIS,eAAe,CAAC,CAApB;AACA,IAAIC,qBAAqB,IAAzB;AACA,IAAIC,QAAQC,EAAE,QAAF,EAAY,CAAZ,CAAZ;AACA,IAAIC,YAAYC,KAAKC,GAAL,EAAhB;;AAEA,IAAIC,uBAAJ;AACA,IAAIC,0BAAJ;AACA,IAAIC,qBAAJ;AACA,IAAIC,mCAAJ;AACA,IAAIC,YAAJ;AACA,IAAI7B,YAAJ;AACA,IAAI8B,eAAJ;AACA,IAAIC,cAAJ;AACA,IAAIC,eAAJ;AACA,IAAIC,iBAAJ;;AAEAZ,EAAEa,QAAF,EAAYC,KAAZ,CAAkB,YAAW;AAC3BC,SAAOC,IAAP,CAAYxC,WAAZ,EAAyByC,OAAzB,CAAiC,UAACC,GAAD,EAAS;AACxC,QAAMC,SAAS3C,YAAY0C,GAAZ,CAAf;AACA,QAAME,SAAS,IAAIC,MAAJ,CAAWF,OAAOG,WAAlB,EAA+BJ,GAA/B,CAAf;AACAlB,MAAE,eAAF,EAAmBuB,MAAnB,CAA0BH,MAA1B;AACD,GAJD;;AAMApB,IAAE,eAAF,EAAmBwB,MAAnB,CAA0B,YAAW;AACnC1B,yBAAqBtB,YAAYwB,EAAE,eAAF,EAAmByB,GAAnB,EAAZ,CAArB;AACA,QAAMC,YAAY5B,mBAAmBnB,GAArC;AACAqB,MAAE,YAAF,EAAgByB,GAAhB,CAAoBC,SAApB;AACAC;AACD,GALD;;AAOA3B,IAAE,YAAF,EAAgBwB,MAAhB,CAAuB,YAAW;AAChC1B,yBAAqB,IAArB;AACA6B;AACD,GAHD;;AAKA3B,IAAE,YAAF,EAAgBwB,MAAhB,CAAuB,YAAW;AAChCxB,MAAE,QAAF,EAAY4B,KAAZ,CAAkB5B,EAAE,YAAF,EAAgByB,GAAhB,EAAlB;AACAzB,MAAE,iBAAF,EAAqB4B,KAArB,CAA2B5B,EAAE,YAAF,EAAgByB,GAAhB,EAA3B;AACD,GAHD;;AAKAzB,IAAE,kBAAF,EAAsB6B,KAAtB,CAA4B,YAAW;AACrC1C,sBAAkB,KAAK2C,OAAvB;AACAH;AACD,GAHD;;AAKA3B,IAAE,mBAAF,EAAuB6B,KAAvB,CAA6B,YAAW;AACtCxC,uBAAmB,KAAKyC,OAAxB;AACAC;AACD,GAHD;;AAKA/B,IAAE,eAAF,EAAmB6B,KAAnB,CAAyB,YAAW;AAClCvC,mBAAe,KAAKwC,OAApB;AACAC;AACD,GAHD;;AAKA/B,IAAE,WAAF,EAAe6B,KAAf,CAAqB,YAAW;AAC9BjC,eAAW,KAAKkC,OAAhB;AACAC;AACD,GAHD;;AAKA/B,IAAE,eAAF,EAAmBwB,MAAnB,CAA0B,YAAW;AACnChC,mBAAe,KAAKwC,KAApB;AACAD;AACD,GAHD;;AAKA/B,IAAE,eAAF,EAAmBwB,MAAnB,CAA0B,YAAW;AACnCjC,mBAAe,KAAKyC,KAApB;AACAD;AACD,GAHD;;AAKA/B,IAAE,oBAAF,EAAwBwB,MAAxB,CAA+B,YAAW;AACxC/B,wBAAoB,KAAKuC,KAAzB;AACAD;AACD,GAHD;;AAKA/B,IAAE,eAAF,EAAmByB,GAAnB,CAAuBjC,YAAvB;AACAQ,IAAE,kBAAF,EAAsBiC,IAAtB,CAA2B,SAA3B,EAAsC9C,eAAtC;AACAa,IAAE,mBAAF,EAAuBiC,IAAvB,CAA4B,SAA5B,EAAuC5C,gBAAvC;AACAW,IAAE,eAAF,EAAmBiC,IAAnB,CAAwB,SAAxB,EAAmC3C,YAAnC;AACAU,IAAE,WAAF,EAAeiC,IAAf,CAAoB,SAApB,EAA+BrC,QAA/B;AACAI,IAAE,eAAF,EAAmByB,GAAnB,CAAuBlC,YAAvB;AACAS,IAAE,oBAAF,EAAwByB,GAAxB,CAA4BhC,qBAAqB,WAAjD;;AAEAO,IAAE,IAAF,EAAQuB,MAAR,CAAe,mFAAmFW,IAAIC,OAAvF,GAAiG,IAAjG,GAAwGD,IAAIC,OAA5G,GAAsH,MAArI;AACAnC,IAAE,iBAAF,EAAqBoC,IAArB,CAA0B,iBAAiBF,IAAIC,OAA/C;;AAEAnC,IAAE,YAAF,EAAgByB,GAAhB,CAAoB7C,SAApB;;AAEAmB,QAAMsC,MAAN,GAAe,IAAf;;AAEAC;;AAEAtC,IAAE,sBAAF,EAA0BuC,MAA1B,CAAiCC,aAAjC;AACAxC,IAAE,qBAAF,EAAyBuC,MAAzB,CAAgC,CAACC,aAAjC;;AAEAb;AAED,CAjFD;;AAmFA,SAASc,YAAT,GAAwB;AACtBC,SAAOjC,MAAP,GAAgBA,SAAS;AACvB9B,SAASA,GADc;AAEvBgE,QAASC,YAAYzC,GAAZ,EAFc;AAGvB0C,UAAS,EAHc;AAIvBC,YAAS,EAJc;AAKvB/C,WAAS,EALc;AAMvBgD,WAAS,EANc;AAOvBC,aAAS;AAPc,GAAzB;;AAUA;AACAN,SAAOO,wBAAP,GAAkC,IAAlC;AACAP,SAAOQ,yBAAP,GAAmC,IAAnC;;AAEAR,SAAO9B,QAAP,GAAkBA,WAAW;AAC3B,aAAS,EADkB;AAE3B,aAAS;AAFkB,GAA7B;;AAKA8B,SAAOS,oBAAP,GAA8BA,oBAA9B;;AAEAT,SAAOU,eAAP,GAAyBA,eAAzB;AACAV,SAAOX,mBAAP,GAA6BA,mBAA7B;AACAW,SAAOW,UAAP,GAAoBA,UAApB;AACAX,SAAOY,oBAAP,GAA8BA,oBAA9B;AACAZ,SAAOa,SAAP,GAAmBA,SAAnB;AACAb,SAAOX,mBAAP,GAA6BA,mBAA7B;AACD;;AAED,SAASyB,SAAT,CAAoBC,MAApB,EAA4BC,KAA5B,EAAoC;AAClC,MAAIA,QAAQ,CAAZ,EAAgB;AACd;AACD;;AAED,SAAMD,OAAOE,MAAP,GAAgBD,KAAtB,EACA;AACED,WAAOG,KAAP;AACD;AACF;;AAED,SAASC,gBAAT,GAA4B;AAC1B,MAAMC,IAAItE,YAAV;;AAEA,MAAGsE,IAAI,CAAP,EAAU;AACR;AACD;;AAEDN,YAAU/C,OAAOoC,IAAjB,EAAuBiB,CAAvB;AACAN,YAAU/C,OAAOqC,MAAjB,EAAyBgB,CAAzB;AACAN,YAAU/C,OAAOV,KAAjB,EAAwB+D,CAAxB;AACAN,YAAU/C,OAAOsC,KAAjB,EAAwBe,CAAxB;AACAN,YAAU/C,OAAOuC,OAAjB,EAA0Bc,CAA1B;AACD;;AAED,SAASnC,kBAAT,GAA8B;;AAE5B,MAAI,CAACO,IAAI6B,WAAJ,EAAL,EAAwB;AACtBC;AACA;AACD;;AAEDrF,QAAMqB,EAAE,YAAF,EAAgByB,GAAhB,EAAN;;AAEAgB;AACAwB;;AAEA,MAAGzD,GAAH,EAAQ;AACNA,QAAI0D,OAAJ;AACA,QAAG1D,IAAI2D,WAAP,EAAoB;AAClBC,oBAAc5D,IAAI2D,WAAlB;AACA3D,UAAI2D,WAAJ,GAAkBzE,SAAlB;AACD;AACDc,UAAM,IAAN;AACD;;AAED,MAAG,CAACrB,eAAJ,EAAqB;AACnBkF,cAAU,oBAAV;AACA;AACD;;AAEDA,YAAU,aAAa1F,GAAvB;;AAEA,MAAIgB,kBAAJ,EAAwB;AACtBA,yBAAqB2E,SAAS3E,kBAAT,CAArB;AACD;;AAED,MAAM4E,YAAY;AAChBC,WAAmB,IADH;AAEhBlF,kBAAmBA,YAFH;AAGhBG,uBAAmBA,iBAHH;AAIhBE,wBAAoBA;AAJJ,GAAlB;;AAOA,MAAIG,sBAAsBA,mBAAmB2E,MAA7C,EAAqD;AACnD,aAAcF,SAAd,EAAyBzE,mBAAmB2E,MAA5C;AACD;;AAED,MAAIF,UAAU5E,kBAAd,EAAkC;AAChCK,MAAE,qBAAF,EAAyByB,GAAzB,CAA6B8C,UAAU5E,kBAAvC;AACD;;AAEDA,uBAAqB4E,UAAU5E,kBAAV,GAA+BK,EAAE,qBAAF,EAAyByB,GAAzB,EAApD;;AAEA,MAAI8C,UAAU5E,kBAAd,EAAkC;AAChC4E,cAAUG,UAAV,GAAuB,IAAvB;AACD;;AAED3C;AACA4C,UAAQC,GAAR,CAAY,sBAAZ,EAAoCL,SAApC;;AAEA7B,SAAOlC,GAAP,GAAaA,MAAM,IAAI0B,GAAJ,CAAQqC,SAAR,CAAnB;;AAEAF,YAAU,iDAAV;;AAEA7D,MAAIqE,UAAJ,CAAelG,GAAf;AACA6B,MAAIsE,gBAAJ,GAAuBvF,YAAvB;AACAiB,MAAIuE,WAAJ,CAAgBhF,KAAhB;;AAEAS,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWC,cAAlB,EAAkC,YAAW;AAC3Cb,cAAU,wBAAV;AACAxE,mBAAe,CAAC,CAAhB;AACAY,WAAOV,KAAP,CAAaoF,IAAb,CAAkB;AAChBC,YAAMxC,YAAYzC,GAAZ,KAAoBM,OAAOkC,EADjB;AAEhB0C,YAAM;AAFU,KAAlB;AAIAxB;AACD,GARD;;AAUArD,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWK,cAAlB,EAAkC,YAAW;AAC3CjB,cAAU,wBAAV;AACAxE,mBAAe,CAAC,CAAhB;AACAc,aAAS,EAAT;AACAF,WAAOV,KAAP,CAAaoF,IAAb,CAAkB;AAChBC,YAAMxC,YAAYzC,GAAZ,KAAoBM,OAAOkC,EADjB;AAEhB0C,YAAM;AAFU,KAAlB;AAIAxB;AACD,GATD;;AAWArD,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWM,yBAAlB,EAA6C,UAASC,KAAT,EAAgBC,IAAhB,EAAsB;AACjEC;AACA,QAAIF,QAAQ;AACVJ,YAAMxC,YAAYzC,GAAZ,KAAoBM,OAAOkC,EADvB;AAEV0C,YAAMI,KAAKE,EAAL,GAAU;AAFN,KAAZ;AAIAlF,WAAOV,KAAP,CAAaoF,IAAb,CAAkBK,KAAlB;AACA3B;AACD,GARD;;AAUArD,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWW,qBAAlB,EAAyC,UAASJ,KAAT,EAAgBC,IAAhB,EAAsB;AAC7D;AACD,GAFD;;AAIAjF,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWY,eAAlB,EAAmC,UAASL,KAAT,EAAgBC,IAAhB,EAAsB;AACvDhF,WAAOsC,KAAP,CAAaoC,IAAb,CAAkB;AAChBC,YAASxC,YAAYzC,GAAZ,KAAoBM,OAAOkC,EADpB;AAEhBgD,UAASF,KAAK1C,KAFE;AAGhBC,eAAS8C,KAAKC,KAAL,CAAWvF,IAAIwF,MAAJ,CAAWP,KAAK1C,KAAhB,EAAuBC,OAAvB,GAA+B,IAA1C;AAHO,KAAlB;AAKAa;AACAT;AACD,GARD;;AAUA5C,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWgB,eAAlB,EAAmC,UAAST,KAAT,EAAgBC,IAAhB,EAAsB;AACvD,QAAID,QAAQ;AACVH,YAAU,UADA;AAEVa,YAAU,EAFA;AAGVC,aAAU,CAHA;AAIVC,WAAUX,KAAKO,MAAL,CAAYrC,MAJZ;AAKVyB,YAAUK,KAAK/E,KAAL,CAAW2F,QAAX,GAAsB5F,OAAOkC,EAL7B;AAMV2D,eAAUb,KAAK/E,KAAL,CAAW6F,MAAX,GAAoBd,KAAK/E,KAAL,CAAW2F,QAN/B;AAOVxD,YAAU4C,KAAK/E,KAAL,CAAW8F,KAAX,GAAmBf,KAAK/E,KAAL,CAAW6F,MAP9B;AAQVE,gBAAUhB,KAAK/E,KAAL,CAAW8F,KAAX,GAAmBf,KAAK/E,KAAL,CAAW6F;AAR9B,KAAZ;AAUA9F,WAAOoC,IAAP,CAAYsC,IAAZ,CAAiBK,KAAjB;AACA3B;AACA6C;AACD,GAdD;;AAgBAlG,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWgB,eAAlB,EAAmC,UAAST,KAAT,EAAgBC,IAAhB,EAAsB;AACvDpB,cAAU,iCAAiC7D,IAAIwF,MAAJ,CAAWrC,MAAtD;AACAU,cAAU,8BAAV;AACA3D,YAAQ;AACNiG,eAAalB,KAAKO,MAAL,CAAYrC,MADnB;AAENiD,mBAAa;AAFP,KAAR;AAIA/C;AACAT;AACD,GATD;;AAWA5C,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAW4B,oBAAlB,EAAwC,UAASrB,KAAT,EAAgBC,IAAhB,EAAsB;AAC5DpB,cAAU,+BAA+BoB,KAAKqB,WAAL,CAAiBnD,MAA1D;AACAoD;AACD,GAHD;;AAKAvG,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAW+B,qBAAlB,EAAyC,UAASxB,KAAT,EAAgBC,IAAhB,EAAsB;AAC7DpB,cAAU,0BAAV;AACA0C;AACA,QAAIvB,QAAQ;AACVJ,YAAMxC,YAAYzC,GAAZ,KAAoBM,OAAOkC,EADvB;AAEV0C,YAAM,iBAFI;AAGVa,YAAM,MAAMT,KAAKE;AAHP,KAAZ;AAKAlF,WAAOV,KAAP,CAAaoF,IAAb,CAAkBK,KAAlB;AACA3B;AACAtD,iCAA6BE,OAAOV,KAAP,CAAa4D,MAAb,GAAoB,CAAjD;AACD,GAXD;;AAaAnD,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWgC,oBAAlB,EAAwC,UAASzB,KAAT,EAAgBC,IAAhB,EAAsB;AAC5DpB,cAAU,sBAAV;AACA0C;AACA,QAAIvB,QAAQ;AACVJ,YAAMxC,YAAYzC,GAAZ,KAAoBM,OAAOkC,EADvB;AAEV0C,YAAM,gBAFI;AAGVa,YAAM,MAAMT,KAAKE;AAHP,KAAZ;AAKA,QAAIpF,+BAA+Bb,SAAnC,EAA8C;AAC5Ce,aAAOV,KAAP,CAAaQ,0BAAb,EAAyCkG,QAAzC,GAAoDjB,MAAMJ,IAAN,GAAa3E,OAAOV,KAAP,CAAaQ,0BAAb,EAAyC6E,IAA1G;AACA7E,mCAA6Bb,SAA7B;AACD;AACDe,WAAOV,KAAP,CAAaoF,IAAb,CAAkBK,KAAlB;AACA3B;AACD,GAdD;;AAgBArD,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWiC,YAAlB,EAAgC,UAAS1B,KAAT,EAAgBC,IAAhB,EAAsB;AACpDhF,WAAO0G,MAAP,GAAgB1B,KAAK2B,OAAL,CAAaC,IAA7B;AACA,QAAI7B,QAAQ;AACVH,YAAU,OADA;AAEVM,UAAUF,KAAK1C,KAFL;AAGVoD,aAAUV,KAAK2B,OAAL,CAAaE,OAHb;AAIVlB,WAAUX,KAAK2B,OAAL,CAAaG,KAJb;AAKVnC,YAAUK,KAAK/E,KAAL,CAAW2F,QAAX,GAAsB5F,OAAOkC,EAL7B;AAMV2D,eAAUb,KAAK/E,KAAL,CAAW6F,MAAX,GAAoBd,KAAK/E,KAAL,CAAW2F,QAN/B;AAOVxD,YAAU4C,KAAK/E,KAAL,CAAW8F,KAAX,GAAmBf,KAAK/E,KAAL,CAAW6F,MAP9B;AAQViB,eAAU/B,KAAK/E,KAAL,CAAW+G,OAAX,GAAqBhC,KAAK/E,KAAL,CAAW8F,KARhC;AASVC,gBAAUhB,KAAK/E,KAAL,CAAW8F,KAAX,GAAmBf,KAAK/E,KAAL,CAAW6F;AAT9B,KAAZ;AAWA,QAAMmB,kBAAkBjC,KAAK/E,KAAL,CAAW+G,OAAX,GAAqBhC,KAAK/E,KAAL,CAAW8F,KAAxD;AACA,QAAI9F,MAAMkG,WAAV,EACA;AAAC,WAAKe,iBAAL,IAA0BD,eAA1B;AAA2C,KAD5C,MAGA;AAAC,WAAKC,iBAAL,GAAyBD,eAAzB;AAA0C;;AAE3ChH,UAAMkG,WAAN;AACAlG,UAAMkH,cAAN,GAAuB9B,KAAKC,KAAL,CAAW,OAAK,KAAK4B,iBAAV,GAA8BjH,MAAMkG,WAA/C,CAAvB;;AAEA;;AAEAnG,WAAOoC,IAAP,CAAYsC,IAAZ,CAAiBK,KAAjB;AACA3B;AACA6C;AACD,GA3BD;;AA6BAlG,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAW4C,kBAAlB,EAAsC,UAASrC,KAAT,EAAgBC,IAAhB,EAAsB;AAC1DhF,WAAO0G,MAAP,GAAgB1B,KAAK2B,OAAL,CAAaC,IAA7B;AACA,QAAI7B,QAAQ;AACVH,YAAU,aADA;AAEVM,UAAUF,KAAKE,EAFL;AAGVQ,aAAUV,KAAK2B,OAAL,CAAaE,OAHb;AAIVlB,WAAUX,KAAK2B,OAAL,CAAaG,KAJb;AAKVnC,YAAUK,KAAK/E,KAAL,CAAW2F,QAAX,GAAsB5F,OAAOkC,EAL7B;AAMV2D,eAAUb,KAAK/E,KAAL,CAAW6F,MAAX,GAAoBd,KAAK/E,KAAL,CAAW2F,QAN/B;AAOVxD,YAAU4C,KAAK/E,KAAL,CAAW8F,KAAX,GAAmBf,KAAK/E,KAAL,CAAW6F,MAP9B;AAQViB,eAAU/B,KAAK/E,KAAL,CAAW+G,OAAX,GAAqBhC,KAAK/E,KAAL,CAAW8F,KARhC;AASVC,gBAAUhB,KAAK/E,KAAL,CAAW8F,KAAX,GAAmBf,KAAK/E,KAAL,CAAW6F;AAT9B,KAAZ;AAWA9F,WAAOoC,IAAP,CAAYsC,IAAZ,CAAiBK,KAAjB;AACA3B;AACA6C;AACD,GAhBD;;AAkBAlG,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAW6C,aAAlB,EAAiC,UAAStC,KAAT,EAAgBC,IAAhB,EAAsB;AACrD,QAAID,QAAQ;AACVH,YAAUI,KAAKsC,IAAL,CAAU1C,IAAV,GAAiB,WADjB;AAEVM,UAAUF,KAAKsC,IAAL,CAAUhF,KAFV;AAGViF,WAAUvC,KAAKsC,IAAL,CAAUE,EAHV;AAIV7C,YAAUK,KAAK/E,KAAL,CAAW2F,QAAX,GAAsB5F,OAAOkC,EAJ7B;AAKV2D,eAAUb,KAAK/E,KAAL,CAAW6F,MAAX,GAAoBd,KAAK/E,KAAL,CAAW2F,QAL/B;AAMVxD,YAAU4C,KAAK/E,KAAL,CAAW8F,KAAX,GAAmBf,KAAK/E,KAAL,CAAW6F,MAN9B;AAOViB,eAAU/B,KAAK/E,KAAL,CAAW+G,OAAX,GAAqBhC,KAAK/E,KAAL,CAAW8F,KAPhC;AAQV1D,cAAU2C,KAAK/E,KAAL,CAAWwH,SAAX,GAAuBzC,KAAK/E,KAAL,CAAW+G,OARlC;AASVhB,gBAAUhB,KAAK/E,KAAL,CAAWwH,SAAX,GAAuBzC,KAAK/E,KAAL,CAAW6F,MATlC;AAUV4B,UAAUrC,KAAKC,KAAL,CAAW,IAAEN,KAAK/E,KAAL,CAAW0H,KAAb,IAAoB3C,KAAK/E,KAAL,CAAWwH,SAAX,GAAuBzC,KAAK/E,KAAL,CAAW2F,QAAtD,CAAX,CAVA;AAWVgC,YAAU5C,KAAK/E,KAAL,CAAW0H;AAXX,KAAZ;AAaA3H,WAAOoC,IAAP,CAAYsC,IAAZ,CAAiBK,KAAjB;AACA/E,WAAOuC,OAAP,CAAemC,IAAf,CAAoB;AAClBC,YAAUxC,YAAYzC,GAAZ,KAAoBM,OAAOkC,EADnB;AAElBK,eAAUwC,MAAM2C,EAFE;AAGlB1B,gBAAUhB,KAAKsC,IAAL,CAAUtB,QAHF;AAIlB1D,aAAUyC,MAAMG;AAJE,KAApB;AAMA,QAAGnF,IAAI2D,WAAJ,KAAoBzE,SAAvB,EAAkC;AAChCe,aAAOqC,MAAP,CAAcqC,IAAd,CAAmB;AACjBC,cAAQ,CADS;AAEjBtC,gBAAQ,CAFS;AAGjBwF,aAAQ;AAHS,OAAnB;AAKA9H,UAAI2D,WAAJ,GAAkBzB,OAAO6F,WAAP,CAAmBC,WAAnB,EAAgC,GAAhC,CAAlB;AACD;AACD3E;AACA6C;AACAtD;;AAEA,QAAIkD,UAAUb,KAAK/E,KAAL,CAAW6F,MAAX,GAAoBd,KAAK/E,KAAL,CAAW2F,QAA7C;AAAA,QACEmB,UAAU/B,KAAK/E,KAAL,CAAW+G,OAAX,GAAqBhC,KAAK/E,KAAL,CAAW8F,KAD5C;AAAA,QAEEiC,UAAUhD,KAAK/E,KAAL,CAAWwH,SAAX,GAAuBzC,KAAK/E,KAAL,CAAW2F,QAF9C;AAAA,QAGErD,UAAU8C,KAAKC,KAAL,CAAW,IAAIN,KAAK/E,KAAL,CAAWiD,MAAf,IAAyB8B,KAAK/E,KAAL,CAAWwH,SAAX,GAAuBzC,KAAK/E,KAAL,CAAW6F,MAA3D,CAAX,CAHZ;AAIA,QAAI7F,MAAMgI,YAAV,EAAwB;AACtBhI,YAAMiI,cAAN,GAAuB7C,KAAK8C,GAAL,CAASlI,MAAMiI,cAAf,EAA+BrC,OAA/B,CAAvB;AACA5F,YAAMmI,cAAN,GAAuB/C,KAAKgD,GAAL,CAASpI,MAAMmI,cAAf,EAA+BvC,OAA/B,CAAvB;AACA5F,YAAMqI,cAAN,GAAuBjD,KAAK8C,GAAL,CAASlI,MAAMqI,cAAf,EAA+BN,OAA/B,CAAvB;AACA/H,YAAMsI,cAAN,GAAuBlD,KAAKgD,GAAL,CAASpI,MAAMsI,cAAf,EAA+BP,OAA/B,CAAvB;AACA/H,YAAMuI,WAAN,GAAoBnD,KAAK8C,GAAL,CAASlI,MAAMuI,WAAf,EAA4BjG,OAA5B,CAApB;AACAtC,YAAMwI,WAAN,GAAoBpD,KAAKgD,GAAL,CAASpI,MAAMwI,WAAf,EAA4BlG,OAA5B,CAApB;AACAtC,YAAMyI,mBAAN,GAA4BrD,KAAK8C,GAAL,CAASlI,MAAMyI,mBAAf,EAAoC3I,IAAIsE,gBAAxC,CAA5B;AACApE,YAAM0I,mBAAN,GAA4BtD,KAAKgD,GAAL,CAASpI,MAAM0I,mBAAf,EAAoC5I,IAAIsE,gBAAxC,CAA5B;AACApE,YAAMgI,YAAN;AACD,KAVD,MAUO;AACLhI,YAAMiI,cAAN,GAAuBjI,MAAMmI,cAAN,GAAuBvC,OAA9C;AACA5F,YAAMqI,cAAN,GAAuBrI,MAAMsI,cAAN,GAAuBP,OAA9C;AACA/H,YAAMuI,WAAN,GAAoBvI,MAAMwI,WAAN,GAAoBlG,OAAxC;AACAtC,YAAMgI,YAAN,GAAqB,CAArB;AACAhI,YAAM2I,iBAAN,GAA0B,CAA1B;AACA3I,YAAMyI,mBAAN,GAA4BzI,MAAM0I,mBAAN,GAA4B5I,IAAIsE,gBAA5D;AACA,WAAKwE,UAAL,GAAkB,CAAlB;AACA,WAAKC,OAAL,GAAe,CAAf;AACA,WAAKC,UAAL,GAAkB,CAAlB;AACA,WAAKC,UAAL,GAAkB,CAAlB;AACD;AACD/I,UAAMgJ,eAAN,GAAwBpD,OAAxB;AACA,SAAKgD,UAAL,IAAmBhD,OAAnB;AACA5F,UAAMiJ,cAAN,GAAuB7D,KAAKC,KAAL,CAAW,KAAKuD,UAAL,GAAkB5I,MAAMgI,YAAnC,CAAvB;AACAhI,UAAMkJ,eAAN,GAAwBnB,OAAxB;AACA,SAAKe,UAAL,IAAmBf,OAAnB;AACA,SAAKgB,UAAL,IAAmBjC,OAAnB;AACA9G,UAAMmJ,cAAN,GAAuB/D,KAAKC,KAAL,CAAW,KAAKyD,UAAL,GAAkB9I,MAAMgI,YAAnC,CAAvB;AACAhI,UAAMoJ,YAAN,GAAqB9G,OAArB;AACA,SAAKuG,OAAL,IAAgBvG,OAAhB;AACAtC,UAAMqJ,WAAN,GAAoBjE,KAAKC,KAAL,CAAW,KAAKwD,OAAL,GAAe7I,MAAMgI,YAAhC,CAApB;AACAhI,UAAM2I,iBAAN,IAA2B5D,KAAK/E,KAAL,CAAW0H,KAAtC;AACA1H,UAAMsJ,eAAN,GAAwBlE,KAAKC,KAAL,CAAW,IAAErF,MAAM2I,iBAAR,GAA4B,KAAKI,UAA5C,CAAxB;AACA/I,UAAMuJ,aAAN,GAAsBnE,KAAKC,KAAL,CAAW,KAAK0D,UAAhB,CAAtB;AACA/I,UAAMwJ,oBAAN,GAA6B1J,IAAIsE,gBAAjC;AACD,GAzED;;AA2EAtE,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWkF,cAAlB,EAAkC,UAAS3E,KAAT,EAAgBC,IAAhB,EAAsB;AACtD,QAAID,QAAQ;AACVJ,YAAMxC,YAAYzC,GAAZ,KAAoBM,OAAOkC,EADvB;AAEV0C,YAAM,gBAFI;AAGVa,YAAMT,KAAK1C;AAHD,KAAZ;AAKAtC,WAAOV,KAAP,CAAaoF,IAAb,CAAkBK,KAAlB;AACA3B;AACA6C;AACAtD;AACD,GAVD;;AAYA5C,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWmF,YAAlB,EAAgC,UAAS5E,KAAT,EAAgBC,IAAhB,EAAsB;AACpD,QAAID,QAAQ;AACVJ,YAAMxC,YAAYzC,GAAZ,KAAoBM,OAAOkC,EADvB;AAEV0C,YAAM,cAFI;AAGVa,YAAMT,KAAKsC,IAAL,CAAUE,EAAV,GAAe,KAAf,GAAuBxC,KAAKsC,IAAL,CAAUhF;AAH7B,KAAZ;AAKAtC,WAAOV,KAAP,CAAaoF,IAAb,CAAkBK,KAAlB;AACA3B;AACA6C;AACAtD;AACA1C,UAAM2J,OAAN,GAAgB5E,KAAKsC,IAAL,CAAUsC,OAA1B;;AAEA,QAAItH,QAAQ0C,KAAKsC,IAAL,CAAUhF,KAAtB;AAAA,QAA6BuH,YAAY7E,KAAKsC,IAAL,CAAUuC,SAAnD;AACA,QAAI5J,MAAM6J,UAAN,KAAqB7K,SAAzB,EACA;AAACgB,YAAM6J,UAAN,GAAmBxH,KAAnB;AAA0B;;AAE3B,QAAIuH,SAAJ,EAAe;AACb,UAAI5J,MAAM8J,eAAV,EAA2B;AACzB9J,cAAM+J,YAAN,GAAqB3E,KAAK8C,GAAL,CAASlI,MAAM+J,YAAf,EAA6B1H,KAA7B,CAArB;AACArC,cAAMgK,YAAN,GAAqB5E,KAAKgD,GAAL,CAASpI,MAAMgK,YAAf,EAA6B3H,KAA7B,CAArB;AACArC,cAAM8J,eAAN;AACA,YAAI,KAAKG,aAAL,IAAsB5H,UAAUrC,MAAMkK,aAA1C,EACA;AAAClK,gBAAMmK,eAAN;AAAyB;AAE3B,OAPD,MAOO;AACLnK,cAAM+J,YAAN,GAAqB/J,MAAMgK,YAAN,GAAqB3H,KAA1C;AACArC,cAAMmK,eAAN,GAAwB,CAAxB;AACAnK,cAAM8J,eAAN,GAAwB,CAAxB;AACA,aAAKM,YAAL,GAAoB,CAApB;AACD;AACD,WAAKA,YAAL,IAAqB/H,KAArB;AACArC,YAAMqK,YAAN,GAAqBjF,KAAKC,KAAL,CAAW,OAAO,KAAK+E,YAAZ,GAA2BpK,MAAM8J,eAA5C,IAA+D,IAApF;AACA9J,YAAMkK,aAAN,GAAsB7H,KAAtB;AACD,KAjBD,MAiBO;AACL,UAAIrC,MAAMsK,iBAAV,EAA6B;AAC3BtK,cAAMuK,cAAN,GAAuBnF,KAAK8C,GAAL,CAASlI,MAAMuK,cAAf,EAA+BlI,KAA/B,CAAvB;AACArC,cAAMwK,cAAN,GAAuBpF,KAAKgD,GAAL,CAASpI,MAAMwK,cAAf,EAA+BnI,KAA/B,CAAvB;AACArC,cAAMsK,iBAAN;AACA,YAAI,CAAC,KAAKL,aAAN,IAAuB5H,UAAUrC,MAAMyK,eAA3C,EACA;AAACzK,gBAAM0K,iBAAN;AAA2B;AAE7B,OAPD,MAOO;AACL1K,cAAMuK,cAAN,GAAuBvK,MAAMwK,cAAN,GAAuBnI,KAA9C;AACArC,cAAM0K,iBAAN,GAA0B,CAA1B;AACA1K,cAAMsK,iBAAN,GAA0B,CAA1B;AACD;AACDtK,YAAMyK,eAAN,GAAwBpI,KAAxB;AACD;AACD,SAAK4H,aAAL,GAAqBL,SAArB;AACD,GAjDD;;AAmDA9J,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWoG,2BAAlB,EAA+C,UAAS7F,KAAT,EAAgBC,IAAhB,EAAsB;AACnE,QAAI/E,KAAJ,EAAW;AACT,UAAIA,MAAM4K,wBAAN,KAAmC5L,SAAvC,EACA;AAACgB,cAAM4K,wBAAN,GAAiC,CAAjC;AAAoC,OADrC,MAGA;AAAC5K,cAAM4K,wBAAN;AAAkC;AAEpC;AACF,GARD;;AAUA9K,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWsG,cAAlB,EAAkC,UAAS/F,KAAT,EAAgBC,IAAhB,EAAsB;AACtD,QAAI,CAAC/E,MAAM8K,aAAX,EAA0B;AACxB9K,YAAM8K,aAAN,GAAsB,CAAtB;AACA,WAAKC,gBAAL,GAAwB,CAAxB;AACA/K,YAAMgL,kBAAN,GAA2B,CAA3B;AACD;AACDhL,UAAM8K,aAAN;AACA,SAAKC,gBAAL,IAAyBhG,KAAK/E,KAAL,CAAWiL,QAAX,GAAsBlG,KAAK/E,KAAL,CAAWkL,MAA1D;AACAlL,UAAMgL,kBAAN,GAA2B,KAAKD,gBAAL,GAAwB/K,MAAM8K,aAAzD;AACD,GATD;;AAWAhL,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAW4G,KAAlB,EAAyB,UAASrG,KAAT,EAAgBC,IAAhB,EAAsB;AAC7Cd,YAAQmH,IAAR,CAAa,cAAb,EAA6BrG,IAA7B;AACA,YAAOA,KAAK2B,OAAZ;AACE,WAAKlF,IAAI6J,YAAJ,CAAiBC,mBAAtB;AACE,YAAI;AACFhM,YAAE,WAAF,EAAeoC,IAAf,CAAoB,0BAA0BqD,KAAKwG,OAAL,CAAatN,GAAvC,GAA6C,IAA7C,GAAoDA,GAApD,GAA0D,6BAA1D,GAA0F8G,KAAKyG,QAAL,CAAcC,IAAxG,GAA+G,OAA/G,GAAyH1G,KAAKyG,QAAL,CAAcE,IAA3J;AACA,cAAG3G,KAAKyG,QAAL,CAAcC,IAAd,KAAuB,CAA1B,EAA4B;AAC1BnM,cAAE,WAAF,EAAeuB,MAAf,CAAsB,gNAAtB;AACD;AACF,SALD,CAKE,OAAM8K,GAAN,EAAW;AACXrM,YAAE,WAAF,EAAeoC,IAAf,CAAoB,0BAA0BqD,KAAKwG,OAAL,CAAatN,GAAvC,GAA6C,IAA7C,GAAoDA,GAApD,GAA0D,yBAA1D,GAAsF8G,KAAKyG,QAAL,CAAcE,IAAxH;AACD;AACD;AACF,WAAKlK,IAAI6J,YAAJ,CAAiBO,qBAAtB;AACEC,iBAAS,gCAAT;AACA;AACF,WAAKrK,IAAI6J,YAAJ,CAAiBS,sBAAtB;AACED,iBAAS,kCAAkC9G,KAAKgH,MAAhD;AACA;AACF,WAAKvK,IAAI6J,YAAJ,CAAiBW,gBAAtB;AACEH,iBAAS,oCAAT;AACA;AACF,WAAKrK,IAAI6J,YAAJ,CAAiBY,kBAAtB;AACEJ,iBAAS,sCAAT;AACA;AACF,WAAKrK,IAAI6J,YAAJ,CAAiBa,kBAAtB;AACEL,iBAAS,2CAA2C9G,KAAK1C,KAAzD;AACA;AACF,WAAKb,IAAI6J,YAAJ,CAAiBc,eAAtB;AACEN,iBAAS,kCAAkC9G,KAAKsC,IAAL,CAAUpJ,GAArD;AACA;AACF,WAAKuD,IAAI6J,YAAJ,CAAiBe,iBAAtB;AACEP,iBAAS,oCAAoC9G,KAAKsC,IAAL,CAAUpJ,GAAvD;AACA;AACF,WAAKuD,IAAI6J,YAAJ,CAAiBgB,uBAAtB;AACER,iBAAS,6BAAT;AACA;AACF,WAAKrK,IAAI6J,YAAJ,CAAiBiB,kBAAtB;AACET,iBAAS,sBAAsB9G,KAAKgH,MAApC;AACA;AACF,WAAKvK,IAAI6J,YAAJ,CAAiBkB,kBAAtB;AACEV,iBAAS,mBAAmB9G,KAAKgH,MAAjC;AACA;AACF,WAAKvK,IAAI6J,YAAJ,CAAiBmB,cAAtB;AACEX,iBAAS,6BAA6B9G,KAAKsC,IAAL,CAAUoF,WAAV,CAAsBC,GAA5D;AACA;AACF,WAAKlL,IAAI6J,YAAJ,CAAiBsB,gBAAtB;AACEd,iBAAS,+BAA+B9G,KAAKsC,IAAL,CAAUoF,WAAV,CAAsBC,GAA9D;AACA;AACF,WAAKlL,IAAI6J,YAAJ,CAAiBuB,mBAAtB;AACEf,iBAAS,qBAAT;AACA;AACF,WAAKrK,IAAI6J,YAAJ,CAAiBwB,sBAAtB;AACEhB,iBAAS,gCAAgC9G,KAAK+H,QAArC,GAAgD,GAAhD,GAAsD/H,KAAK4G,GAAL,CAASoB,OAAxE;AACA;AACF,WAAKvL,IAAI6J,YAAJ,CAAiB2B,sBAAtB;AACEnB,iBAAS,wBAAT;AACA;AACF,WAAKrK,IAAI6J,YAAJ,CAAiB4B,oBAAtB;AACEpB,iBAAS,sBAAT;AACA;AACF;AACE;AA5DJ;AA8DA,QAAG9G,KAAKmI,KAAR,EAAe;AACbjJ,cAAQkJ,KAAR,CAAc,kBAAkBpI,KAAK2B,OAArC;AACA,cAAO3B,KAAKJ,IAAZ;AACE,aAAKnD,IAAI4L,UAAJ,CAAeC,WAApB;AACEC;AACA;AACF,aAAK9L,IAAI4L,UAAJ,CAAeG,aAApB;AACE1B,mBAAS,yBAAT;AACA;AACF;AACEA,mBAAS,gCAAT;AACA/L,cAAI0D,OAAJ;AACA;AAVJ;AAYD;AACD,QAAG,CAACxD,KAAJ,EAAW;AACTA,cAAQ,EAAR;AACD;AACD;AACA,QAAIA,MAAM+E,KAAK2B,OAAX,MAAwB1H,SAA5B,EACA;AAACgB,YAAM+E,KAAK2B,OAAX,IAAsB,CAAtB;AAAyB,KAD1B,MAGA;AAAC1G,YAAM+E,KAAK2B,OAAX,KAAuB,CAAvB;AAA0B;;AAE3B;AACA,QAAI3B,KAAKmI,KAAT,EAAgB;AACd,UAAIlN,MAAMwN,UAAN,KAAqBxO,SAAzB,EAAoC;AAClCgB,cAAMwN,UAAN,GAAmB,CAAnB;AACD,OAFD,MAEO;AACLxN,cAAMwN,UAAN,IAAoB,CAApB;AACD;AACF;AACDlO,MAAE,gBAAF,EAAoBoM,IAApB,CAAyBpN,KAAKmP,SAAL,CAAe,uEAAAC,CAAW1N,KAAX,CAAf,EAAkC,IAAlC,EAAwC,IAAxC,CAAzB;AACD,GAjGD;;AAmGAF,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWoJ,cAAlB,EAAkC,UAAS7I,KAAT,EAAgBC,IAAhB,EAAsB;AACtD9E,aAAS8E,KAAK9E,MAAd;AACD,GAFD;;AAIAH,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWqJ,gBAAlB,EAAoC,UAAS9I,KAAT,EAAgBC,IAAhB,EAAsB;AACxD,QAAI7F,QAAJ,EAAc;AACZgB,eAAS6E,KAAKJ,IAAd,EAAoBF,IAApB,CAAyBM,KAAKA,IAA9B;AACD;AACF,GAJD;;AAMAjF,MAAIwE,EAAJ,CAAO9C,IAAI+C,MAAJ,CAAWsJ,QAAlB,EAA4B,UAAS/I,KAAT,EAAgBC,IAAhB,EAAsB;AAChD,QAAI+I,MAAM;AACRpJ,YAAMxC,YAAYzC,GAAZ,KAAoBM,OAAOkC,EADzB;AAER0C,YAAM,YAFE;AAGRa,YAAMT,KAAKgJ,cAAL,GAAsB,GAAtB,GAA4BhJ,KAAKiJ;AAH/B,KAAV;AAKAjO,WAAOV,KAAP,CAAaoF,IAAb,CAAkBqJ,GAAlB;AACA3K;AACA,QAAInD,KAAJ,EAAW;AACT,UAAIA,MAAMiO,YAAN,KAAuBjP,SAA3B,EACA;AAACgB,cAAMiO,YAAN,GAAqB,CAArB;AAAwB,OADzB,MAGA;AAACjO,cAAMiO,YAAN;AAAsB;;AAEvBjO,YAAMkO,qBAAN,GAA8BnJ,KAAKoJ,kBAAnC;AACD;AACF,GAhBD;;AAkBA9O,QAAM+O,gBAAN,CAAuB,QAAvB,EAAiCC,gBAAjC;AACAhP,QAAM+O,gBAAN,CAAuB,SAAvB,EAAkCC,gBAAlC;AACAhP,QAAM+O,gBAAN,CAAuB,QAAvB,EAAiCC,gBAAjC;AACAhP,QAAM+O,gBAAN,CAAuB,OAAvB,EAAgCC,gBAAhC;AACAhP,QAAM+O,gBAAN,CAAuB,MAAvB,EAA+BC,gBAA/B;AACAhP,QAAM+O,gBAAN,CAAuB,SAAvB,EAAkCC,gBAAlC;AACAhP,QAAM+O,gBAAN,CAAuB,gBAAvB,EAAyCC,gBAAzC;AACAhP,QAAM+O,gBAAN,CAAuB,OAAvB,EAAgCC,gBAAhC;AACAhP,QAAM+O,gBAAN,CAAuB,SAAvB,EAAkCC,gBAAlC;AACAhP,QAAM+O,gBAAN,CAAuB,OAAvB,EAAgCC,gBAAhC;AACAhP,QAAM+O,gBAAN,CAAuB,gBAAvB,EAAyCC,gBAAzC;AACAhP,QAAM+O,gBAAN,CAAuB,YAAvB,EAAqCC,gBAArC;AACAhP,QAAM+O,gBAAN,CAAuB,gBAAvB,EAAyCC,gBAAzC;AACD;;AAED,SAAS/K,iBAAT,GAA6B;AAC3B,MAAGgL,UAAUC,SAAV,CAAoBC,WAApB,GAAkCC,OAAlC,CAA0C,SAA1C,MAAyD,CAAC,CAA7D,EAAgE;AAC9D9K,cAAU,uQAAV;AACD,GAFD,MAEO;AACLA,cAAU,sEAAV;AACD;AACF;;AAED,SAAS0K,gBAAT,CAA0BP,GAA1B,EAA+B;AAC7B,MAAI/I,OAAO,EAAX;AACA,UAAO+I,IAAInJ,IAAX;AACE,SAAK,gBAAL;AACE,UAAGmJ,IAAI/K,MAAJ,CAAWgD,QAAX,GAAsBnG,YAAtB,IAAsC,GAAzC,EAA8C;AAC5C;AACA;AACD;AACDA,qBAAekO,IAAI/K,MAAJ,CAAWgD,QAA1B;AACAhB,aAAOK,KAAKC,KAAL,CAAWyI,IAAI/K,MAAJ,CAAWgD,QAAX,GAAoB,IAA/B,CAAP;AACA;AACF,SAAK,QAAL;AACEhB,aAAO+I,IAAI/K,MAAJ,CAAW2L,UAAX,GAAwB,GAAxB,GAA8BZ,IAAI/K,MAAJ,CAAW4L,WAAhD;AACA;AACF,SAAK,gBAAL;AACA,SAAK,YAAL;AACA,SAAK,SAAL;AACA,SAAK,gBAAL;AACA,SAAK,OAAL;AACA,SAAK,SAAL;AACA,SAAK,QAAL;AACA,SAAK,MAAL;AACA,SAAK,SAAL;AACEhP,0BAAoBmO,IAAI/K,MAAJ,CAAW6L,WAA/B;AACF,SAAK,OAAL;AACA,SAAK,SAAL;AACA,SAAK,SAAL;AACA,SAAK,OAAL;AACE7J,aAAOK,KAAKC,KAAL,CAAWyI,IAAI/K,MAAJ,CAAW6L,WAAX,GAAuB,IAAlC,CAAP;AACA,UAAGd,IAAInJ,IAAJ,KAAa,OAAhB,EAAyB;AACvB,YAAIkK,iBAAJ;AAAA,YAAcC,aAAWhB,IAAIiB,aAAJ,CAAkB5B,KAA3C;AACA,gBAAO2B,WAAWrD,IAAlB;AACE,eAAKqD,WAAWE,iBAAhB;AACEH,uBAAW,gCAAX;AACA;AACF,eAAKC,WAAWG,gBAAhB;AACEJ,uBAAW,4HAAX;AACAvB;AACA;AACF,eAAKwB,WAAWI,iBAAhB;AACEL,uBAAW,4DAAX;AACA;AACF,eAAKC,WAAWK,2BAAhB;AACEN,uBAAW,mHAAX;AACA;AAbJ;;AAgBA,YAAIC,WAAW/B,OAAf,EAAwB;AACtB8B,sBAAY,QAAQC,WAAW/B,OAA/B;AACD;;AAEDpJ,kBAAUkL,QAAV;AACA5K,gBAAQkJ,KAAR,CAAc0B,QAAd;AACD;AACD;AACF;AACE;AAtDJ;;AAyDA,MAAI/J,QAAQ;AACVJ,UAAMxC,YAAYzC,GAAZ,KAAoBM,OAAOkC,EADvB;AAEV0C,UAAMmJ,IAAInJ,IAFA;AAGVa,UAAMT;AAHI,GAAZ;;AAMAhF,SAAOV,KAAP,CAAaoF,IAAb,CAAkBK,KAAlB;AACA,MAAGgJ,IAAInJ,IAAJ,KAAa,SAAhB,EAA2B;AACzBjF,qBAAiBK,OAAOV,KAAP,CAAa4D,MAAb,GAAoB,CAArC;AACD;;AAED,MAAG6K,IAAInJ,IAAJ,KAAa,QAAhB,EAA0B;AACxB5E,WAAOV,KAAP,CAAaK,cAAb,EAA6BqG,QAA7B,GAAwCjB,MAAMJ,IAAN,GAAa3E,OAAOV,KAAP,CAAaK,cAAb,EAA6BgF,IAAlF;AACD;;AAEDvB;AACD;;AAED,SAASmK,gBAAT,GAA4B;AAC1B,MAAG3O,gBAAH,EAAqB;AACnB,QAAIc,MAAMyC,YAAYzC,GAAZ,EAAV;AACA,QAAG,CAAC8C,wBAAD,IAA8B9C,MAAM8C,wBAAP,GAAmC,IAAnE,EAAyE;AACvEA,iCAA2BL,YAAYzC,GAAZ,EAA3B;AACAH,QAAE,YAAF,EAAgBuB,MAAhB,CAAuB,kCAAvB;AACAf,UAAIsP,iBAAJ;AACD,KAJD,MAIO;AACL,UAAG,CAAC5M,yBAAD,IAA+B/C,MAAM+C,yBAAP,GAAoC,IAArE,EAA2E;AACzEA,oCAA4BN,YAAYzC,GAAZ,EAA5B;AACAH,UAAE,YAAF,EAAgBuB,MAAhB,CAAuB,uDAAvB;AACAf,YAAIuP,cAAJ;AACAvP,YAAIsP,iBAAJ;AACD,OALD,MAKO;AACL9P,UAAE,YAAF,EAAgBuB,MAAhB,CAAuB,qDAAvB;AACD;AACF;AACF;AACF;;AAED,SAASyO,kBAAT,CAA4BC,CAA5B,EAA+B;AAC7B,MAAIrL,MAAM,EAAV;AACA,OAAK,IAAIsL,IAAE,CAAX,EAAcA,IAAED,EAAEtM,MAAlB,EAA0BuM,GAA1B,EAA+B;AAC7BtL,WAAO,MAAMqL,EAAE9J,KAAF,CAAQ+J,CAAR,CAAN,GAAmB,IAAnB,GAA0BD,EAAE7J,GAAF,CAAM8J,CAAN,CAA1B,GAAqC,GAA5C;AACAtL,WAAO,GAAP;AACD;AACD,SAAOA,GAAP;AACD;;AAED,SAAS4D,WAAT,GAAuB;AACrB,MAAI2H,IAAInQ,EAAE,QAAF,EAAY,CAAZ,CAAR;AACA,MAAIoQ,SAASpQ,EAAE,iBAAF,EAAqB,CAArB,CAAb;AACA,MAAIqQ,MAAMD,OAAOE,UAAP,CAAkB,IAAlB,CAAV;AACA,MAAIL,IAAIE,EAAEI,QAAV;AACA,MAAIC,0BAAJ;AACAH,MAAII,SAAJ,GAAgB,OAAhB;AACAJ,MAAIK,QAAJ,CAAa,CAAb,EAAgB,CAAhB,EAAmBN,OAAOxO,KAA1B,EAAiCwO,OAAOO,MAAxC;AACAN,MAAII,SAAJ,GAAgB,MAAhB;AACA,MAAIR,CAAJ,EAAO;AACL,QAAG,CAACG,OAAOxO,KAAR,IAAiBwO,OAAOxO,KAAP,KAAiBuO,EAAES,WAAvC,EACA;AAACR,aAAOxO,KAAP,GAAeuO,EAAES,WAAjB;AAA8B;;AAE/B,QAAItI,MAAM6H,EAAEb,WAAZ;AAAA,QAAyBuB,SAAzB;AACA,SAAK,IAAIX,IAAE,CAAN,EAASW,YAAU,CAAxB,EAA2BX,IAAED,EAAEtM,MAA/B,EAAuCuM,GAAvC,EAA4C;AAC1C,UAAI/J,QAAQ8J,EAAE9J,KAAF,CAAQ+J,CAAR,IAAWC,EAAE1J,QAAb,GAAwB2J,OAAOxO,KAA3C;AACA,UAAIwE,MAAM6J,EAAE7J,GAAF,CAAM8J,CAAN,IAASC,EAAE1J,QAAX,GAAsB2J,OAAOxO,KAAvC;AACAyO,UAAIK,QAAJ,CAAavK,KAAb,EAAoB,CAApB,EAAuBL,KAAKgD,GAAL,CAAS,CAAT,EAAY1C,MAAID,KAAhB,CAAvB,EAA+C,EAA/C;AACA,UAAGmC,OAAO2H,EAAE9J,KAAF,CAAQ+J,CAAR,CAAP,IAAqB5H,MAAM2H,EAAE7J,GAAF,CAAM8J,CAAN,CAA9B,EAAwC;AACtC;AACAW,oBAAYZ,EAAE7J,GAAF,CAAM8J,CAAN,IAAW5H,GAAvB;AACD;AACF;AACD;AACA,QAAGuI,aAAa,GAAb,IAAoBV,EAAEW,MAAF,KAAa,KAAjC,IAA2CxI,MAAIjI,iBAAL,GAA0B,GAAvE,EAA4E;AAC1E;AACA,UAAGC,eAAcgI,GAAd,IAAqB,GAArB,IAA6B7H,OAAO0G,MAAP,KAAkB,KAAlD,EAAyD,CACxD,CADD,MACO;AACL;AACA,YAAGtH,iBAAiB,CAAC,CAArB,EAAwB;AACtB2Q,8BAAoB5N,YAAYzC,GAAZ,KAAoBM,OAAOkC,EAA3B,GAAgClC,OAAOV,KAAP,CAAaF,YAAb,EAA2BuF,IAA/E;AACA3E,iBAAOV,KAAP,CAAaF,YAAb,EAA2B4G,QAA3B,GAAsC+J,iBAAtC;AACA/P,iBAAOV,KAAP,CAAaF,YAAb,EAA2BqG,IAA3B,GAAkCsK,iBAAlC;AACD,SAJD,MAIO;AACL/P,iBAAOV,KAAP,CAAaoF,IAAb,CAAkB;AAChBE,kBAAM,WADU;AAEhBD,kBAAMxC,YAAYzC,GAAZ,KAAoBM,OAAOkC;AAFjB,WAAlB;AAIAkB;AACA;AACAhE,yBAAeY,OAAOV,KAAP,CAAa4D,MAAb,GAAoB,CAAnC;AACD;AACF;AACF;;AAED,QAAGkN,YAAY,GAAZ,IAAmBhR,gBAAe,CAAC,CAAtC,EAAyC;AACvC2Q,0BAAoB5N,YAAYzC,GAAZ,KAAoBM,OAAOkC,EAA3B,GAAgClC,OAAOV,KAAP,CAAaF,YAAb,EAA2BuF,IAA/E;AACA3E,aAAOV,KAAP,CAAaF,YAAb,EAA2B4G,QAA3B,GAAsC+J,iBAAtC;AACA/P,aAAOV,KAAP,CAAaF,YAAb,EAA2BqG,IAA3B,GAAkCsK,iBAAlC;AACA;AACA3Q,qBAAe,CAAC,CAAhB;AACD;;AAED;AACA,QAAI2F,QAAQ;AACVJ,YAAQxC,YAAYzC,GAAZ,KAAoBM,OAAOkC,EADzB;AAEVG,cAAQgD,KAAKC,KAAL,CAAW8K,YAAU,IAArB,CAFE;AAGVvI,WAAQxC,KAAKC,KAAL,CAAWuC,MAAI,IAAf;AAHE,KAAZ;AAKA,QAAIyI,YAAYtQ,OAAOqC,MAAvB;AAAA,QAA+BkO,cAAcD,UAAUpN,MAAvD;AACA,QAAGqN,cAAc,CAAjB,EAAoB;AAClB,UAAIC,SAASF,UAAUC,cAAY,CAAtB,CAAb;AAAA,UAAuCE,SAASH,UAAUC,cAAY,CAAtB,CAAhD;AACA,UAAIG,YAAY,CAACF,OAAOnO,MAAP,GAAgBoO,OAAOpO,MAAxB,KAAiCmO,OAAO7L,IAAP,GAAY8L,OAAO9L,IAApD,CAAhB;AACA,UAAIgM,YAAY,CAACF,OAAOpO,MAAP,GAAgB0C,MAAM1C,MAAvB,KAAgCoO,OAAO9L,IAAP,GAAYI,MAAMJ,IAAlD,CAAhB;;AAEA,UAAIiM,YAAY,CAACJ,OAAO3I,GAAP,GAAa4I,OAAO5I,GAArB,KAA2B2I,OAAO7L,IAAP,GAAY8L,OAAO9L,IAA9C,CAAhB;AACA,UAAIkM,YAAY,CAACJ,OAAO5I,GAAP,GAAa9C,MAAM8C,GAApB,KAA0B4I,OAAO9L,IAAP,GAAYI,MAAMJ,IAA5C,CAAhB;AACA;AACA,UAAG,CAAC+L,cAAcC,SAAd,IAA2BtL,KAAKyL,GAAL,CAASJ,YAAUC,SAAV,GAAqB,CAA9B,KAAoC,GAAhE,MACGC,cAAcC,SAAd,IAA2BxL,KAAKyL,GAAL,CAASF,YAAUC,SAAV,GAAqB,CAA9B,KAAoC,GADlE,CAAH,EAEA;AAACP,kBAAUS,GAAV;AAAiB;AAEnB;AACD/Q,WAAOqC,MAAP,CAAcqC,IAAd,CAAmBK,KAAnB;AACA3B;AACA6C;;AAEA,QAAI9B,MAAM,eACEuL,EAAE1J,QADJ,GACe,IADf,GAEE,YAFF,GAGEuJ,mBAAmBG,EAAEI,QAArB,CAHF,GAGmC,IAHnC,GAIE,YAJF,GAKEP,mBAAmBG,EAAEsB,QAArB,CALF,GAKmC,IALnC,GAME,UANF,GAOEzB,mBAAmBG,EAAEuB,MAArB,CAPF,GAOiC,IAP3C;;AASA,QAAIlR,IAAImR,KAAR,EAAe;AACb,WAAI,IAAItM,IAAR,IAAgB1E,MAAhB,EAAwB;AACtBiE,eAAO,gBAAgBS,IAAhB,GAAuB,aAAvB,GAAuC2K,mBAAmBrP,OAAO0E,IAAP,EAAavC,MAAb,CAAoByN,QAAvC,CAAvC,GAA0F,IAAjG;AACD;;AAED,UAAMqB,uBAAuBzB,EAAE0B,uBAA/B;AACA,UAAGD,wBAAwB,QAAQA,oBAAR,yCAAQA,oBAAR,eAA0CE,QAA1C,yCAA0CA,QAA1C,EAA3B,EAAgF;AAC9ElN,eAAO,qBAAoBuL,EAAE0B,uBAAF,GAA4BE,kBAAhD,GAAqE,IAA5E;AACAnN,eAAO,sBAAqBuL,EAAE0B,uBAAF,GAA4BG,oBAAjD,GAAwE,IAA/E;AACD,OAHD,MAGO,IAAG7B,EAAE8B,uBAAL,EAA8B;AACnCrN,eAAK,oBAAmBuL,EAAE8B,uBAArB,GAA+C,IAApD;AACD;AACF;AACDjS,MAAE,cAAF,EAAkBoM,IAAlB,CAAuBxH,GAAvB;;AAEA5E,MAAE,gBAAF,EAAoBoM,IAApB,CAAyBpN,KAAKmP,SAAL,CAAe,uEAAAC,CAAW1N,KAAX,CAAf,EAAkC,IAAlC,EAAwC,IAAxC,CAAzB;;AAEA2P,QAAII,SAAJ,GAAgB,MAAhB;;AAEA,QAAM3M,IAAIqM,EAAEb,WAAF,GAAgBa,EAAE1J,QAAlB,GAA6B2J,OAAOxO,KAA9C;AACAyO,QAAIK,QAAJ,CAAa5M,CAAb,EAAgB,CAAhB,EAAmB,CAAnB,EAAsB,EAAtB;AACD;AAEF;;AAED,SAAS4B,UAAT,GAAuB;AACrBwM;AACAlS,IAAE,cAAF,EAAkBmS,IAAlB;AACAnS,IAAE,iBAAF,EAAqBmS,IAArB;AACD;;AAED,SAASlO,UAAT,GAAuB;AACrBmO;AACApS,IAAE,cAAF,EAAkBqS,IAAlB;AACArS,IAAE,iBAAF,EAAqBqS,IAArB;AACD;;AAED,SAASC,UAAT,GAAsB;AACpB,MAAIC,OAAOvT,KAAKmP,SAAL,CAAe1N,MAAf,CAAX;AACA,MAAI+R,aAAaC,SAASC,IAAT,CAAcH,IAAd,CAAjB;AACA;AACA,SAAOI,KAAKH,UAAL,CAAP;AACD;;AAED,SAASI,sBAAT,GAAkC;AAChCC,EAAA,gFAAAA,CAAoBP,YAApB;AACD;;AAED,SAASQ,WAAT,GAAuB;AACrB,MAAInU,MAAMkC,SAASkS,GAAnB;AACApU,QAAMA,IAAIqU,MAAJ,CAAW,CAAX,EAAcrU,IAAIsU,WAAJ,CAAgB,GAAhB,IAAqB,CAAnC,IAAwC,cAA9C;AACA;AACAvQ,SAAOwQ,IAAP,CAAYvU,GAAZ,EAAiB,QAAjB;AACD;;AAED,SAAS2E,oBAAT,GAAgC;AAC9B,MAAI3E,MAAMkC,SAASkS,GAAnB;AACA,MAAII,MAAMb,YAAV;AACA3T,QAAMA,IAAIqU,MAAJ,CAAW,CAAX,EAAcrU,IAAIsU,WAAJ,CAAgB,GAAhB,IAAqB,CAAnC,IAAwC,oBAAxC,GAA+DE,GAArE;AACA;AACAzQ,SAAOwQ,IAAP,CAAYvU,GAAZ,EAAiB,QAAjB;AACD;;AAED,SAASyU,OAAT,CAAiBC,EAAjB,EAAqB;AACnB,MAAIC,IAAIxN,KAAKyN,KAAL,CAAWzN,KAAKyN,KAAL,CAAWF,KAAK,IAAhB,IAAwB,EAAnC,CAAR;AACA,MAAIG,IAAI1N,KAAKyN,KAAL,CAAWF,KAAK,EAAhB,CAAR;AACA,SAAOC,IAAI,GAAJ,IAAWE,IAAI,EAAJ,GAAS,GAAT,GAAe,EAA1B,IAAgCA,CAAvC;AACD;;AAED,SAASrQ,oBAAT,CAA8BqC,KAA9B,EAAqC;AACnC,MAAI4K,SAASpQ,EAAE,iBAAF,EAAqB,CAArB,CAAb;AACA,MAAImQ,IAAInQ,EAAE,QAAF,EAAY,CAAZ,CAAR;AACA,MAAIyD,SAAS,CAAC+B,MAAMiO,OAAN,GAAgBrD,OAAOsD,UAAxB,IAAsCtD,OAAOxO,KAA7C,GAAqDuO,EAAE1J,QAApE;AACA0J,IAAEb,WAAF,GAAgB7L,MAAhB;AACD;;AAED,SAASL,eAAT,GAA2B;;AAEzB,MAAI,CAAC5C,IAAIwF,MAAT,EAAiB;AACf;AACD;;AAED,MAAI2N,kBAAkB,0CAAtB;AACA,MAAIC,iBAAkB,eAAtB;AACA,MAAIC,kBAAkB,eAAtB;;AAEA,MAAIC,QAAQH,eAAZ;AACA,MAAGnT,IAAIuT,gBAAP,EAAyB;AACvBD,aAASF,cAAT;AACD,GAFD,MAEO;AACLE,aAASD,eAAT;AACD;;AAEDC,WAAS,6CAAT;;AAEA,MAAIE,QAAQL,eAAZ;AACA,MAAGnT,IAAIuT,gBAAP,EAAyB;AACvBC,aAASJ,cAAT;AACD,GAFD,MAEO;AACLI,aAASH,eAAT;AACD;;AAEDG,WAAS,0CAAT;;AAEA,MAAIC,QAAQN,eAAZ;AACA,MAAGnT,IAAIsE,gBAAJ,KAAyB,CAAC,CAA7B,EAAgC;AAC9BmP,aAASL,cAAT;AACD,GAFD,MAEO;AACLK,aAASJ,eAAT;AACD;;AAEDI,WAAS,uGAAT;;AAEA,MAAIC,QAAQP,eAAZ;AACA,MAAGnT,IAAIuT,gBAAP,EAAyB;AACvBG,aAASN,cAAT;AACD,GAFD,MAEO;AACLM,aAASL,eAAT;AACD;;AAEDK,WAAS,0CAAT;;AAEA,OAAK,IAAIhE,IAAE,CAAX,EAAcA,IAAI1P,IAAIwF,MAAJ,CAAWrC,MAA7B,EAAqCuM,GAArC,EAA0C;AACxC4D,aAASH,eAAT;AACA,QAAGnT,IAAI2T,YAAJ,KAAqBjE,CAAxB,EAA2B;AACzB4D,eAASF,cAAT;AACD,KAFD,MAEO;AACLE,eAASD,eAAT;AACD;;AAED,QAAIO,YAAYlE,CAAhB;AACA,QAAImE,QAAQC,YAAYpE,CAAZ,CAAZ;AACA,QAAGmE,KAAH,EAAU;AACRD,mBAAa,OAAOE,YAAYpE,CAAZ,CAAP,GAAwB,IAArC;AACD;;AAED4D,aAAS,+BAA+B5D,CAA/B,GAAmC,IAAnC,GAA0CkE,SAA1C,GAAsD,WAA/D;;AAEAJ,aAASL,eAAT;AACA,QAAGnT,IAAI+T,SAAJ,KAAkBrE,CAArB,EAAwB;AACtB8D,eAASJ,cAAT;AACD,KAFD,MAEO;AACLI,eAASH,eAAT;AACD;;AAEDG,aAAS,4BAA4B9D,CAA5B,GAAgC,IAAhC,GAAuCkE,SAAvC,GAAmD,WAA5D;;AAEAH,aAASN,eAAT;AACA,QAAGnT,IAAIsE,gBAAJ,KAAyBoL,CAA5B,EAA+B;AAC7B+D,eAASL,cAAT;AACD,KAFD,MAEO;AACLK,eAASJ,eAAT;AACD;;AAEDI,aAAS,gDAAgD/D,CAAhD,GAAoD,6CAApD,GAAoGkE,SAApG,GAAgH,WAAzH;;AAEAF,aAASP,eAAT;AACA,QAAGnT,IAAIgU,SAAJ,KAAkBtE,CAArB,EAAwB;AACtBgE,eAASN,cAAT;AACD,KAFD,MAEO;AACLM,eAASL,eAAT;AACD;;AAEDK,aAAS,4BAA4BhE,CAA5B,GAAgC,IAAhC,GAAuCkE,SAAvC,GAAmD,WAA5D;AACD;;AAED,MAAIjE,IAAInQ,EAAE,QAAF,EAAY,CAAZ,CAAR;;AAEA,MAAGmQ,EAAEf,UAAF,IAAgBe,EAAEd,WAArB,EAAkC;AAChCrP,MAAE,oBAAF,EAAwBoC,IAAxB,CAA6B+N,EAAEf,UAAF,GAAe,KAAf,GAAuBe,EAAEd,WAAtD;AACD;;AAED,MAAGrP,EAAE,sBAAF,EAA0BoC,IAA1B,MAAoC0R,KAAvC,EAA8C;AAC5C9T,MAAE,sBAAF,EAA0BoC,IAA1B,CAA+B0R,KAA/B;AACD;;AAED,MAAG9T,EAAE,mBAAF,EAAuBoC,IAAvB,MAAiC4R,KAApC,EAA2C;AACzChU,MAAE,mBAAF,EAAuBoC,IAAvB,CAA4B4R,KAA5B;AACD;;AAED,MAAGhU,EAAE,sBAAF,EAA0BoC,IAA1B,MAAoC6R,KAAvC,EAA8C;AAC5CjU,MAAE,sBAAF,EAA0BoC,IAA1B,CAA+B6R,KAA/B;AACD;;AAED,MAAGjU,EAAE,mBAAF,EAAuBoC,IAAvB,MAAiC8R,KAApC,EAA2C;AACzClU,MAAE,mBAAF,EAAuBoC,IAAvB,CAA4B8R,KAA5B;AACD;AACF;;AAED,SAASnN,oBAAT,GAAgC;AAC9B,MAAI4M,kBAAkB,0CAAtB;AACA,MAAIC,iBAAkB,eAAtB;AACA,MAAIC,kBAAkB,eAAtB;AACA,MAAIC,QAAQ,EAAZ;AACA,MAAIW,eAAejU,IAAIkU,UAAvB;AAAA,MAAmCC,MAAMnU,IAAIsG,WAAJ,CAAgBnD,MAAzD;;AAEA,OAAK,IAAIuM,IAAE,CAAX,EAAcA,IAAIyE,GAAlB,EAAuBzE,GAAvB,EAA4B;AAC1B4D,aAASH,eAAT;AACA,QAAGc,iBAAiBvE,CAApB,EAAuB;AACrB4D,eAASF,cAAT;AACD,KAFD,MAEO;AACLE,eAASD,eAAT;AACD;;AAEDC,aAAS,6BAA6B5D,CAA7B,GAAiC,IAAjC,GAAwC1P,IAAIsG,WAAJ,CAAgBoJ,CAAhB,EAAmBhK,IAA3D,GAAkE,WAA3E;AACD;AACDlG,IAAE,oBAAF,EAAwBoC,IAAxB,CAA6B0R,KAA7B;AACD;;AAED,SAASQ,WAAT,CAAqBM,KAArB,EAA4B;AAC1B,MAAGpU,OAAOA,IAAIwF,MAAJ,CAAWrC,MAAX,GAAkB,CAAlB,IAAuBiR,KAAjC,EAAwC;AACtC,QAAI7R,QAAQvC,IAAIwF,MAAJ,CAAW4O,KAAX,CAAZ;AACA,QAAI7R,MAAMmD,IAAV,EAAgB;AACd,aAAOnD,MAAMmD,IAAb;AACD,KAFD,MAEO;AACL,UAAInD,MAAM4N,MAAV,EAAkB;AAChB,eAAO5N,MAAM4N,MAAN,GAAe,MAAf,GAAwB7K,KAAKC,KAAL,CAAWhD,MAAMC,OAAN,GAAgB,IAA3B,CAAxB,GAA2D,IAAlE;AACD,OAFD,MAEO;AACL,YAAGD,MAAMC,OAAT,EAAkB;AAChB,iBAAO8C,KAAKC,KAAL,CAAWhD,MAAMC,OAAN,GAAgB,IAA3B,IAAmC,IAA1C;AACD,SAFD,MAEO;AACL,iBAAO,IAAP;AACD;AACF;AACF;AACF;AACF;;AAED,SAAS5D,0BAAT,CAAoCyV,QAApC,EAA8CC,UAA9C,EAA0D;AACxD,SAAO,OAAO/V,WAAW8V,QAAX,CAAP,KAAgC,WAAhC,GAA8C9V,WAAW8V,QAAX,CAA9C,GAAqEC,UAA5E;AACD;;AAED,SAAShW,WAAT,CAAqBiW,MAArB,EAA6BC,YAA7B,EAA2C;AACzC,MAAIC,WAAWvS,OAAOwS,QAAP,CAAgBC,MAAhB,CAAuBC,SAAvB,CAAiC,CAAjC,CAAf;AACA,MAAIC,gBAAgBJ,SAASK,KAAT,CAAe,GAAf,CAApB;AACA,OAAK,IAAIpF,IAAI,CAAb,EAAgBA,IAAImF,cAAc1R,MAAlC,EAA0CuM,GAA1C,EAA+C;AAC7C,QAAIqF,iBAAiBF,cAAcnF,CAAd,EAAiBoF,KAAjB,CAAuB,GAAvB,CAArB;AACA,QAAIC,eAAe,CAAf,KAAqBR,MAAzB,EACA;AAAC,aAAO,eAAeQ,eAAe,CAAf,CAAf,GAAmC7V,SAAnC,GAA+C,WAAW6V,eAAe,CAAf,CAAX,GAA+B,KAA/B,GAAuCA,eAAe,CAAf,CAA7F;AAAgH;AAElH;AACD,SAAOP,YAAP;AACD;;AAED,SAASjT,mBAAT,GAA+B;AAC7B,MAAMpD,MAAMqB,EAAE,YAAF,EAAgByB,GAAhB,EAAZ;;AAEA1C,eAAa;AACXI,oCADW;AAEXE,sCAFW;AAGXC,8BAHW;AAIXM,sBAJW;AAKXL,8BALW;AAMXC,8BANW;AAOXC,wCAPW;AAQXE,wBAAoB6V,OAAO7V,kBAAP;AART,GAAb;;AAWA,MAAM8V,uBAAuB9C,KAAK3T,KAAKmP,SAAL,CAAepP,UAAf,CAAL,CAA7B;;AAEA,MAAM2W,UAAU7U,SAASkS,GAAT,CAAauC,KAAb,CAAmB,GAAnB,EAAwB,CAAxB,CAAhB;AACA,MAAMK,eAAeD,qBAAkBE,mBAAmBjX,GAAnB,CAAlB,oBAAwD8W,oBAAxD,CAArB;;AAEAzV,IAAE,kBAAF,EAAsBoC,IAAtB,CAA2B,cAAcuT,YAAd,GAA6B,IAA7B,GAAoCA,YAApC,GAAmD,MAA9E;AACD;;AAED,SAAStS,UAAT,CAAoBgC,IAApB,EAA0B;AACxB,MAAIzE,SAASyE,IAAT,EAAe1B,MAAnB,EAA2B;AACzB,QAAIkS,OAAO,IAAIC,IAAJ,CAAS,CAACC,YAAYnV,SAASyE,IAAT,CAAZ,CAAD,CAAT,EAAwC;AACjDA,YAAM;AAD2C,KAAxC,CAAX;AAGA,QAAI2Q,WAAW3Q,OAAO,GAAP,GAAa,IAAInF,IAAJ,GAAW+V,WAAX,EAAb,GAAwC,MAAvD;AACAC,WAAOL,IAAP,EAAaG,QAAb;AACA;AACD;AACF;;AAED,SAASD,WAAT,CAAqBI,UAArB,EAAiC;AAC/B,MAAIC,cAAcD,WAAWE,MAAX,CAAmB,UAASC,IAAT,EAAeC,GAAf,EAAoB;AAAE,WAAOD,OAAKC,IAAI5S,MAAhB;AAAyB,GAAlE,EAAoE,CAApE,CAAlB;AACA,MAAI6S,SAAS,IAAIC,UAAJ,CAAeL,WAAf,CAAb;AACA,MAAIM,SAAS,CAAb;AACAP,aAAWlV,OAAX,CAAmB,UAAS0V,OAAT,EAAkB;AACnCH,WAAOI,GAAP,CAAWD,OAAX,EAAoBD,MAApB;AACAA,cAAUC,QAAQhT,MAAlB;AACD,GAHD;AAIA,SAAO6S,MAAP;AACD;;AAED,SAASlU,WAAT,GAAuB;AACrBtC,IAAE,qBAAF,EAAyBqS,IAAzB;AACArS,IAAE,yBAAF,EAA6BqS,IAA7B;AACArS,IAAE,uBAAF,EAA2BqS,IAA3B;AACArS,IAAE,oBAAF,EAAwBqS,IAAxB;AACArS,IAAE,kBAAF,EAAsBqS,IAAtB;AACD;;AAED,SAAS9O,SAAT,CAAmBsT,OAAnB,EAA4B;AAC1BvU;AACA8P;AACApS,IAAE,MAAM6W,OAAR,EAAiB1E,IAAjB;AACD;;AAED,SAAS2E,SAAT,CAAmBC,QAAnB,EAA6BtJ,OAA7B,EAAsC;AACpC,MAAMuJ,KAAKhX,EAAE,MAAM+W,QAAR,CAAX;AACA,MAAIE,UAAUD,GAAG5K,IAAH,EAAd;AACA,MAAI6K,QAAQtT,MAAZ,EAAoB;AAClBsT,eAAW,IAAX;AACD;AACD,MAAMC,YAAY,CAAChX,KAAKC,GAAL,KAAaF,SAAd,IAA2B,IAA7C;AACA,MAAMkX,aAAaD,YAAY,KAAZ,GAAoBzJ,OAAvC;AACAwJ,aAAWE,UAAX;AACA;AACAH,KAAG5K,IAAH,CAAQ6K,OAAR;AACD;;AAED,SAAS5S,SAAT,CAAmBoJ,OAAnB,EAA4B;AAC1BqJ,YAAU,WAAV,EAAuBrJ,OAAvB;AACD;;AAED,SAASlB,QAAT,CAAkBkB,OAAlB,EAA2B;AACzBqJ,YAAU,UAAV,EAAsBrJ,OAAtB;AACD,C;;;;;;;;;;;AC/rCM,SAASW,UAAT,CAAoBgJ,GAApB,EAAyB;AAC9B,MAAG,QAAOA,GAAP,yCAAOA,GAAP,OAAe,QAAlB,EAA4B;AAC1B,WAAOA,GAAP;AACD;AACD,MAAIC,OAAO,EAAX;AACA,MAAIrW,OAAO,EAAX;AACA,OAAI,IAAIE,GAAR,IAAekW,GAAf,EAAoB;AAClBpW,SAAKmE,IAAL,CAAUjE,GAAV;AACD;AACDF,OAAKsW,IAAL;AACA,OAAI,IAAI1C,KAAR,IAAiB5T,IAAjB,EAAuB;AACrBqW,SAAKrW,KAAK4T,KAAL,CAAL,IAAoBxG,WAAWgJ,IAAIpW,KAAK4T,KAAL,CAAJ,CAAX,CAApB;AACD;AACD,SAAOyC,IAAP;AACD;;AAEM,SAASxE,mBAAT,CAA6BzG,IAA7B,EAAmC;AACxC,MAAImL,WAAW1W,SAAS2W,aAAT,CAAuB,UAAvB,CAAf;AACAD,WAASvV,KAAT,GAAiBoK,IAAjB;AACAvL,WAAS4W,IAAT,CAAcC,WAAd,CAA0BH,QAA1B;AACAA,WAASI,MAAT;AACA,MAAI;AACF,QAAIC,aAAa/W,SAASgX,WAAT,CAAqB,MAArB,CAAjB;AACA,QAAIC,MAAMF,aAAa,YAAb,GAA4B,cAAtC;AACAjT,YAAQC,GAAR,CAAY,8BAA8BkT,GAA1C;AACD,GAJD,CAIE,OAAOzL,GAAP,EAAY;AACZ1H,YAAQC,GAAR,CAAY,sBAAZ;AACD;AACD/D,WAAS4W,IAAT,CAAcM,WAAd,CAA0BR,QAA1B;AACD,C;;;;;;;;AC7BD;;;;;;;;;AASA,SAASS,gBAAT,CAA2BrZ,GAA3B,EAAgC2C,WAAhC,EAA0F;AAAA,MAA7C+F,IAA6C,uEAAtC,KAAsC;AAAA,MAA/B4Q,GAA+B,uEAAzB,IAAyB;AAAA,MAAnBC,YAAmB,uEAAJ,EAAI;;AACxF,SAAO;AACLvZ,YADK;AAEL2C,4BAFK;AAGL+F,cAHK;AAIL4Q,YAJK;AAKLC;AALK,GAAP;AAOD;;AAED;;;;;AAKA,SAASC,0BAAT,CAAqC1U,MAArC,EAA6CgB,MAA7C,EAAqD;AACnD,MAAI,QAAOhB,MAAP,yCAAOA,MAAP,OAAkB,QAAtB,EAAgC;AAC9B,UAAM,IAAI2U,KAAJ,CAAU,yBAAV,CAAN;AACD;;AAED,MAAMC,aAAaL,iBAAiBvU,OAAO9E,GAAxB,EAA6B8E,OAAOnC,WAApC,EAAiDmC,OAAO4D,IAAxD,EAA8D5D,OAAOwU,GAArE,EAA0ExU,OAAOyU,YAAjF,CAAnB;;AAEAG,aAAW5T,MAAX,GAAoBA,MAApB;;AAEA,SAAO4T,UAAP;AACD;;AAEDC,OAAOC,OAAP,GAAiB;AACfC,OAAKL,2BAA2B;AAC9BxZ,SAAK,0DADyB;AAE9B2C,iBAAa;AAFiB,GAA3B,EAIL;AACE;AACAmX,mBAAe;AAFjB,GAJK,CADU;AAUfC,oBAAkB;AAChB,WAAO,oFADS;AAEhB,mBAAe,4BAFC;AAGhB,YAAQ,KAHQ;AAIhB,WAAO,KAJS;AAKhB,oBAAgB,CAAC,mBAAD;AALA,GAVH;AAiBfC,QAAM;AACJ,WAAO,0DADH;AAEJ,mBAAe,gBAFX;AAGJ,YAAQ,KAHJ;AAIJ,WAAO;AAJH,GAjBS;AAuBfC,eAAa;AACX,WAAO,8EADI;AAEX,mBAAe,8BAFJ;AAGX,YAAQ,KAHG;AAIX,WAAO,KAJI;AAKX,oBAAgB,CAAC,mBAAD;AALL,GAvBE;AA8BfC,YAAU;AACR,WAAO,uFADC;AAER,mBAAe,mBAFP;AAGR,YAAQ,KAHA;AAIR,WAAO,KAJC;AAKR,oBAAgB,CAAC,mBAAD;AALR,GA9BK;AAqCfC,YAAU;AACR,WAAO,oKADC;AAER,mBAAe,mBAFP;AAGR,YAAQ,KAHA;AAIR,WAAO;AAJC,GArCK;AA2CfC,kBAAgB;AACd,WAAO,qEADO;AAEd,mBAAe,6BAFD;AAGd,YAAQ,KAHM;AAId,WAAO,KAJO;AAKd,oBAAgB,CAAC,QAAD;AALF,GA3CD;AAkDfC,aAAW;AACT,WAAO,yEADE;AAET,mBAAe,mBAFN;AAGT,YAAQ,KAHC;AAIT,WAAO;AAJE,GAlDI;AAwDf;;;;;;;;AAQAC,YAAU;AACR,WAAO,oHADC;AAER,mBAAe,cAFP;AAGR,YAAQ,KAHA;AAIR,WAAO,KAJC;AAKR,oBAAgB,CAAC,QAAD;AALR,GAhEK;AAuEfC,iBAAe;AACb,WAAO,kEADM;AAEb,mBAAe,sBAFF;AAGb,YAAQ,KAHK;AAIb,WAAO,KAJM;AAKb,oBAAgB,CAAC,mBAAD,EAAsB,eAAtB,EAAuC,QAAvC,EAAiD,SAAjD;AALH,GAvEA;AA8EfC,QAAM;AACJ,WAAO,yEADH;AAEJ,mBAAe,0CAFX;AAGJ,YAAQ,KAHJ;AAIJ,WAAO,KAJH;AAKJ,oBAAgB,CAAC,QAAD,EAAW,mBAAX;AALZ,GA9ES;AAqFfC,gBAAc;AACZ,WAAO,8GADK;AAEZ,mBAAe,sBAFH;AAGZ,YAAQ,KAHI;AAIZ,WAAO,IAJK;AAKZ,oBAAgB,CAAC,QAAD,EAAW,mBAAX;AALJ,GArFC;AA4FfC,cAAY;AACV,WAAO,2DADG;AAEV,mBAAe,mCAFL;AAGV,YAAQ,KAHE;AAIV,WAAO;AAJG,GA5FG;AAkGf;;;;;;AAMAC,yBAAuBnB,2BAA2B;AAChDxZ,SAAK,kFAD2C;AAEhD2C,iBAAa,6DAFmC;AAGhD4W,kBAAc,CAAC,SAAD,EAAY,QAAZ,EAAsB,mBAAtB;AAHkC,GAA3B,EAKvB;AACEvY,wBAAoB,8CADtB;AAEE+E,gBAAY;AAFd,GALuB,CAxGR;AAkHf6U,2BAAyB;AACvB,WAAO,wEADgB;AAEvB,mBAAe,qCAFQ;AAGvB,YAAQ,KAHe;AAIvB,WAAO;AAJgB,GAlHV;AAwHfC,gBAAc;AACZ7a,SAAK,sEADO;AAEZ2C,iBAAa;AAFD,GAxHC;AA4HfmY,eAAa;AACX9a,SAAK,mEADM;AAEX2C,iBAAa;AAFF,GA5HE;AAgIfoY,gBAAc;AACZ/a,SAAK,yEADO;AAEZ2C,iBAAa;AAFD,GAhIC;AAoIfqY,eAAa;AACXhb,SAAK,oEADM;AAEX2C,iBAAa;AAFF;AApIE,CAAjB,C","file":"hls-demo.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"HlsDemo\"] = factory();\n\telse\n\t\troot[\"HlsDemo\"] = factory();\n})(this, function() {\nreturn \n\n\n// WEBPACK FOOTER //\n// webpack/universalModuleDefinition"," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, {\n \t\t\t\tconfigurable: false,\n \t\t\t\tenumerable: true,\n \t\t\t\tget: getter\n \t\t\t});\n \t\t}\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/dist/\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 0);\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap 4272408a55a30c66251b","import {sortObject, copyTextToClipboard} from './demo-utils'\n\nconst testStreams = require('../tests/test-streams');\nconst defaultTestStreamUrl = testStreams['bbb'].url;\nconst sourceURL = decodeURIComponent(getURLParam('src', defaultTestStreamUrl))\n\nlet demoConfig = getURLParam('demoConfig', null)\nif (demoConfig) {\n demoConfig = JSON.parse(atob(demoConfig))\n} else {\n demoConfig = {}\n}\n\nlet enableStreaming = getDemoConfigPropOrDefault('enableStreaming', true);\nlet autoRecoverError = getDemoConfigPropOrDefault('autoRecoverError', true);\nlet enableWorker = getDemoConfigPropOrDefault('enableWorker', true);\nlet levelCapping = getDemoConfigPropOrDefault('levelCapping', -1);\nlet limitMetrics = getDemoConfigPropOrDefault('limitMetrics', -1);\nlet defaultAudioCodec = getDemoConfigPropOrDefault('defaultAudioCodec', undefined);\nlet widevineLicenseUrl = getDemoConfigPropOrDefault('widevineLicenseURL', undefined);\nlet dumpfMP4 = getDemoConfigPropOrDefault('dumpfMP4', false);\n\nlet bufferingIdx = -1;\nlet selectedTestStream = null;\nlet video = $('#video')[0];\nlet startTime = Date.now()\n\nlet lastSeekingIdx;\nlet lastStartPosition;\nlet lastDuration;\nlet lastAudioTrackSwitchingIdx;\nlet hls;\nlet url;\nlet events;\nlet stats;\nlet tracks;\nlet fmp4Data;\n\n$(document).ready(function() {\n Object.keys(testStreams).forEach((key) => {\n const stream = testStreams[key];\n const option = new Option(stream.description, key);\n $('#streamSelect').append(option);\n })\n\n $('#streamSelect').change(function() {\n selectedTestStream = testStreams[$('#streamSelect').val()];\n const streamUrl = selectedTestStream.url;\n $('#streamURL').val(streamUrl);\n loadSelectedStream();\n });\n\n $('#streamURL').change(function() {\n selectedTestStream = null;\n loadSelectedStream();\n });\n\n $('#videoSize').change(function() {\n $('#video').width($('#videoSize').val());\n $('#bufferedCanvas').width($('#videoSize').val());\n });\n\n $('#enableStreaming').click(function() {\n enableStreaming = this.checked;\n loadSelectedStream();\n });\n\n $('#autoRecoverError').click(function() {\n autoRecoverError = this.checked;\n onDemoConfigChanged();\n });\n\n $('#enableWorker').click(function() {\n enableWorker = this.checked;\n onDemoConfigChanged();\n });\n\n $('#dumpfMP4').click(function() {\n dumpfMP4 = this.checked;\n onDemoConfigChanged();\n });\n\n $('#limitMetrics').change(function() {\n limitMetrics = this.value;\n onDemoConfigChanged();\n })\n\n $('#levelCapping').change(function() {\n levelCapping = this.value;\n onDemoConfigChanged();\n });\n\n $('#defaultAudioCodec').change(function() {\n defaultAudioCodec = this.value;\n onDemoConfigChanged();\n });\n\n $('#limitMetrics').val(limitMetrics);\n $('#enableStreaming').prop('checked', enableStreaming );\n $('#autoRecoverError').prop('checked', autoRecoverError );\n $('#enableWorker').prop('checked', enableWorker );\n $('#dumpfMP4').prop('checked', dumpfMP4 );\n $('#levelCapping').val(levelCapping);\n $('#defaultAudioCodec').val(defaultAudioCodec || 'undefined');\n\n $('h2').append(' v' + Hls.version + '');\n $('#currentVersion').html('Hls version:' + Hls.version);\n\n $('#streamURL').val(sourceURL)\n\n video.volume = 0.05;\n\n hideAllTabs();\n\n $('#metricsButtonWindow').toggle(windowSliding);\n $('#metricsButtonFixed').toggle(!windowSliding);\n\n loadSelectedStream();\n\n});\n\nfunction setupGlobals() {\n window.events = events = {\n url : url,\n t0 : performance.now(),\n load : [],\n buffer : [],\n video : [],\n level : [],\n bitrate: []\n };\n\n // actual values, only on window\n window.recoverDecodingErrorDate = null;\n window.recoverSwapAudioCodecDate = null;\n\n window.fmp4Data = fmp4Data = {\n 'audio': [],\n 'video': []\n };\n\n window.onClickBufferedRange = onClickBufferedRange;\n\n window.updateLevelInfo = updateLevelInfo;\n window.onDemoConfigChanged = onDemoConfigChanged;\n window.createfMP4 = createfMP4;\n window.goToMetricsPermaLink = goToMetricsPermaLink;\n window.toggleTab = toggleTab;\n window.onDemoConfigChanged = onDemoConfigChanged;\n}\n\nfunction trimArray( target, limit ) {\n if( limit < 0 ) {\n return;\n }\n\n while(target.length > limit )\n {\n target.shift();\n }\n}\n\nfunction trimEventHistory() {\n const x = limitMetrics;\n\n if(x < 0) {\n return;\n }\n\n trimArray(events.load, x);\n trimArray(events.buffer, x);\n trimArray(events.video, x);\n trimArray(events.level, x);\n trimArray(events.bitrate, x);\n}\n\nfunction loadSelectedStream() {\n\n if (!Hls.isSupported()) {\n handleUnsupported();\n return;\n }\n\n url = $('#streamURL').val()\n\n setupGlobals();\n hideCanvas();\n\n if(hls) {\n hls.destroy();\n if(hls.bufferTimer) {\n clearInterval(hls.bufferTimer);\n hls.bufferTimer = undefined;\n }\n hls = null;\n }\n\n if(!enableStreaming) {\n logStatus('Streaming disabled');\n return;\n }\n\n logStatus('Loading ' + url);\n\n if (widevineLicenseUrl) {\n widevineLicenseUrl = unescape(widevineLicenseUrl)\n }\n\n const hlsConfig = {\n debug : true,\n enableWorker : enableWorker,\n defaultAudioCodec: defaultAudioCodec,\n widevineLicenseUrl: widevineLicenseUrl\n };\n\n if (selectedTestStream && selectedTestStream.config) {\n Object.assign(hlsConfig, selectedTestStream.config)\n }\n\n if (hlsConfig.widevineLicenseUrl) {\n $('#widevineLicenseUrl').val(hlsConfig.widevineLicenseUrl);\n }\n\n widevineLicenseUrl = hlsConfig.widevineLicenseUrl = $('#widevineLicenseUrl').val();\n\n if (hlsConfig.widevineLicenseUrl) {\n hlsConfig.emeEnabled = true;\n }\n\n onDemoConfigChanged();\n console.log('Using Hls.js config:', hlsConfig);\n\n window.hls = hls = new Hls(hlsConfig);\n\n logStatus('Loading manifest and attaching video element...');\n\n hls.loadSource(url);\n hls.autoLevelCapping = levelCapping;\n hls.attachMedia(video);\n\n hls.on(Hls.Events.MEDIA_ATTACHED, function() {\n logStatus('Media element attached');\n bufferingIdx = -1;\n events.video.push({\n time: performance.now() - events.t0,\n type: 'Media attached'\n });\n trimEventHistory();\n });\n\n hls.on(Hls.Events.MEDIA_DETACHED, function() {\n logStatus('Media element detached');\n bufferingIdx = -1;\n tracks = [];\n events.video.push({\n time: performance.now() - events.t0,\n type: 'Media detached'\n });\n trimEventHistory();\n });\n\n hls.on(Hls.Events.FRAG_PARSING_INIT_SEGMENT, function(event, data) {\n showCanvas();\n var event = {\n time: performance.now() - events.t0,\n type: data.id + ' init segment'\n };\n events.video.push(event);\n trimEventHistory();\n });\n\n hls.on(Hls.Events.FRAG_PARSING_METADATA, function(event, data) {\n //console.log(\"Id3 samples \", data.samples);\n });\n\n hls.on(Hls.Events.LEVEL_SWITCHING, function(event, data) {\n events.level.push({\n time : performance.now() - events.t0,\n id : data.level,\n bitrate: Math.round(hls.levels[data.level].bitrate/1000)\n });\n trimEventHistory();\n updateLevelInfo();\n });\n\n hls.on(Hls.Events.MANIFEST_PARSED, function(event, data) {\n var event = {\n type : 'manifest',\n name : '',\n start : 0,\n end : data.levels.length,\n time : data.stats.trequest - events.t0,\n latency : data.stats.tfirst - data.stats.trequest,\n load : data.stats.tload - data.stats.tfirst,\n duration: data.stats.tload - data.stats.tfirst,\n };\n events.load.push(event);\n trimEventHistory();\n refreshCanvas();\n });\n\n hls.on(Hls.Events.MANIFEST_PARSED, function(event, data) {\n logStatus('No of quality levels found: ' + hls.levels.length);\n logStatus('Manifest successfully loaded');\n stats = {\n levelNb : data.levels.length,\n levelParsed: 0\n };\n trimEventHistory();\n updateLevelInfo();\n });\n\n hls.on(Hls.Events.AUDIO_TRACKS_UPDATED, function(event, data) {\n logStatus('No of audio tracks found: ' + data.audioTracks.length);\n updateAudioTrackInfo();\n });\n\n hls.on(Hls.Events.AUDIO_TRACK_SWITCHING, function(event, data) {\n logStatus('Audio track switching...');\n updateAudioTrackInfo();\n var event = {\n time: performance.now() - events.t0,\n type: 'audio switching',\n name: '@' + data.id\n };\n events.video.push(event);\n trimEventHistory();\n lastAudioTrackSwitchingIdx = events.video.length-1;\n });\n\n hls.on(Hls.Events.AUDIO_TRACK_SWITCHED, function(event, data) {\n logStatus('Audio track switched');\n updateAudioTrackInfo();\n var event = {\n time: performance.now() - events.t0,\n type: 'audio switched',\n name: '@' + data.id\n };\n if (lastAudioTrackSwitchingIdx !== undefined) {\n events.video[lastAudioTrackSwitchingIdx].duration = event.time - events.video[lastAudioTrackSwitchingIdx].time;\n lastAudioTrackSwitchingIdx = undefined;\n }\n events.video.push(event);\n trimEventHistory();\n });\n\n hls.on(Hls.Events.LEVEL_LOADED, function(event, data) {\n events.isLive = data.details.live;\n var event = {\n type : 'level',\n id : data.level,\n start : data.details.startSN,\n end : data.details.endSN,\n time : data.stats.trequest - events.t0,\n latency : data.stats.tfirst - data.stats.trequest,\n load : data.stats.tload - data.stats.tfirst,\n parsing : data.stats.tparsed - data.stats.tload,\n duration: data.stats.tload - data.stats.tfirst\n };\n const parsingDuration = data.stats.tparsed - data.stats.tload;\n if (stats.levelParsed)\n {this.sumLevelParsingMs += parsingDuration;}\n else\n {this.sumLevelParsingMs = parsingDuration;}\n\n stats.levelParsed++;\n stats.levelParsingUs = Math.round(1000*this.sumLevelParsingMs / stats.levelParsed);\n\n //console.log('parsing level duration :' + stats.levelParsingUs + 'us,count:' + stats.levelParsed);\n\n events.load.push(event);\n trimEventHistory();\n refreshCanvas();\n });\n\n hls.on(Hls.Events.AUDIO_TRACK_LOADED, function(event, data) {\n events.isLive = data.details.live;\n var event = {\n type : 'audio track',\n id : data.id,\n start : data.details.startSN,\n end : data.details.endSN,\n time : data.stats.trequest - events.t0,\n latency : data.stats.tfirst - data.stats.trequest,\n load : data.stats.tload - data.stats.tfirst,\n parsing : data.stats.tparsed - data.stats.tload,\n duration: data.stats.tload - data.stats.tfirst\n };\n events.load.push(event);\n trimEventHistory();\n refreshCanvas();\n });\n\n hls.on(Hls.Events.FRAG_BUFFERED, function(event, data) {\n var event = {\n type : data.frag.type + ' fragment',\n id : data.frag.level,\n id2 : data.frag.sn,\n time : data.stats.trequest - events.t0,\n latency : data.stats.tfirst - data.stats.trequest,\n load : data.stats.tload - data.stats.tfirst,\n parsing : data.stats.tparsed - data.stats.tload,\n buffer : data.stats.tbuffered - data.stats.tparsed,\n duration: data.stats.tbuffered - data.stats.tfirst,\n bw : Math.round(8*data.stats.total/(data.stats.tbuffered - data.stats.trequest)),\n size : data.stats.total\n };\n events.load.push(event);\n events.bitrate.push({\n time : performance.now() - events.t0,\n bitrate : event.bw,\n duration: data.frag.duration,\n level : event.id\n });\n if(hls.bufferTimer === undefined) {\n events.buffer.push({\n time : 0,\n buffer: 0,\n pos : 0\n });\n hls.bufferTimer = window.setInterval(checkBuffer, 100);\n }\n trimEventHistory();\n refreshCanvas();\n updateLevelInfo();\n\n let latency = data.stats.tfirst - data.stats.trequest,\n parsing = data.stats.tparsed - data.stats.tload,\n process = data.stats.tbuffered - data.stats.trequest,\n bitrate = Math.round(8 * data.stats.length / (data.stats.tbuffered - data.stats.tfirst));\n if (stats.fragBuffered) {\n stats.fragMinLatency = Math.min(stats.fragMinLatency, latency);\n stats.fragMaxLatency = Math.max(stats.fragMaxLatency, latency);\n stats.fragMinProcess = Math.min(stats.fragMinProcess, process);\n stats.fragMaxProcess = Math.max(stats.fragMaxProcess, process);\n stats.fragMinKbps = Math.min(stats.fragMinKbps, bitrate);\n stats.fragMaxKbps = Math.max(stats.fragMaxKbps, bitrate);\n stats.autoLevelCappingMin = Math.min(stats.autoLevelCappingMin, hls.autoLevelCapping);\n stats.autoLevelCappingMax = Math.max(stats.autoLevelCappingMax, hls.autoLevelCapping);\n stats.fragBuffered++;\n } else {\n stats.fragMinLatency = stats.fragMaxLatency = latency;\n stats.fragMinProcess = stats.fragMaxProcess = process;\n stats.fragMinKbps = stats.fragMaxKbps = bitrate;\n stats.fragBuffered = 1;\n stats.fragBufferedBytes = 0;\n stats.autoLevelCappingMin = stats.autoLevelCappingMax = hls.autoLevelCapping;\n this.sumLatency = 0;\n this.sumKbps = 0;\n this.sumProcess = 0;\n this.sumParsing = 0;\n }\n stats.fraglastLatency = latency;\n this.sumLatency += latency;\n stats.fragAvgLatency = Math.round(this.sumLatency / stats.fragBuffered);\n stats.fragLastProcess = process;\n this.sumProcess += process;\n this.sumParsing += parsing;\n stats.fragAvgProcess = Math.round(this.sumProcess / stats.fragBuffered);\n stats.fragLastKbps = bitrate;\n this.sumKbps += bitrate;\n stats.fragAvgKbps = Math.round(this.sumKbps / stats.fragBuffered);\n stats.fragBufferedBytes += data.stats.total;\n stats.fragparsingKbps = Math.round(8*stats.fragBufferedBytes / this.sumParsing);\n stats.fragparsingMs = Math.round(this.sumParsing);\n stats.autoLevelCappingLast = hls.autoLevelCapping;\n });\n\n hls.on(Hls.Events.LEVEL_SWITCHED, function(event, data) {\n var event = {\n time: performance.now() - events.t0,\n type: 'level switched',\n name: data.level\n };\n events.video.push(event);\n trimEventHistory();\n refreshCanvas();\n updateLevelInfo();\n });\n\n hls.on(Hls.Events.FRAG_CHANGED, function(event, data) {\n var event = {\n time: performance.now() - events.t0,\n type: 'frag changed',\n name: data.frag.sn + ' @ ' + data.frag.level\n };\n events.video.push(event);\n trimEventHistory();\n refreshCanvas();\n updateLevelInfo();\n stats.tagList = data.frag.tagList;\n\n let level = data.frag.level, autoLevel = data.frag.autoLevel;\n if (stats.levelStart === undefined)\n {stats.levelStart = level;}\n\n if (autoLevel) {\n if (stats.fragChangedAuto) {\n stats.autoLevelMin = Math.min(stats.autoLevelMin, level);\n stats.autoLevelMax = Math.max(stats.autoLevelMax, level);\n stats.fragChangedAuto++;\n if (this.levelLastAuto && level !== stats.autoLevelLast)\n {stats.autoLevelSwitch++;}\n\n } else {\n stats.autoLevelMin = stats.autoLevelMax = level;\n stats.autoLevelSwitch = 0;\n stats.fragChangedAuto = 1;\n this.sumAutoLevel = 0;\n }\n this.sumAutoLevel += level;\n stats.autoLevelAvg = Math.round(1000 * this.sumAutoLevel / stats.fragChangedAuto) / 1000;\n stats.autoLevelLast = level;\n } else {\n if (stats.fragChangedManual) {\n stats.manualLevelMin = Math.min(stats.manualLevelMin, level);\n stats.manualLevelMax = Math.max(stats.manualLevelMax, level);\n stats.fragChangedManual++;\n if (!this.levelLastAuto && level !== stats.manualLevelLast)\n {stats.manualLevelSwitch++;}\n\n } else {\n stats.manualLevelMin = stats.manualLevelMax = level;\n stats.manualLevelSwitch = 0;\n stats.fragChangedManual = 1;\n }\n stats.manualLevelLast = level;\n }\n this.levelLastAuto = autoLevel;\n });\n\n hls.on(Hls.Events.FRAG_LOAD_EMERGENCY_ABORTED, function(event, data) {\n if (stats) {\n if (stats.fragLoadEmergencyAborted === undefined)\n {stats.fragLoadEmergencyAborted = 1;}\n else\n {stats.fragLoadEmergencyAborted++;}\n\n }\n });\n\n hls.on(Hls.Events.FRAG_DECRYPTED, function(event, data) {\n if (!stats.fragDecrypted) {\n stats.fragDecrypted = 0;\n this.totalDecryptTime = 0;\n stats.fragAvgDecryptTime = 0;\n }\n stats.fragDecrypted++;\n this.totalDecryptTime += data.stats.tdecrypt - data.stats.tstart;\n stats.fragAvgDecryptTime = this.totalDecryptTime / stats.fragDecrypted;\n });\n\n hls.on(Hls.Events.ERROR, function(event, data) {\n console.warn('Error event:', data);\n switch(data.details) {\n case Hls.ErrorDetails.MANIFEST_LOAD_ERROR:\n try {\n $('#errorOut').html('Cannot load ' + url + '
HTTP response code:' + data.response.code + '
' + data.response.text);\n if(data.response.code === 0){\n $('#errorOut').append('This might be a CORS issue, consider installing Allow-Control-Allow-Origin Chrome Extension');\n }\n } catch(err) {\n $('#errorOut').html('Cannot load ' + url + '
Response body: ' + data.response.text);\n }\n break;\n case Hls.ErrorDetails.MANIFEST_LOAD_TIMEOUT:\n logError('Timeout while loading manifest');\n break;\n case Hls.ErrorDetails.MANIFEST_PARSING_ERROR:\n logError('Error while parsing manifest:' + data.reason);\n break;\n case Hls.ErrorDetails.LEVEL_LOAD_ERROR:\n logError('Error while loading level playlist');\n break;\n case Hls.ErrorDetails.LEVEL_LOAD_TIMEOUT:\n logError('Timeout while loading level playlist');\n break;\n case Hls.ErrorDetails.LEVEL_SWITCH_ERROR:\n logError('Error while trying to switch to level ' + data.level);\n break;\n case Hls.ErrorDetails.FRAG_LOAD_ERROR:\n logError('Error while loading fragment ' + data.frag.url);\n break;\n case Hls.ErrorDetails.FRAG_LOAD_TIMEOUT:\n logError('Timeout while loading fragment ' + data.frag.url);\n break;\n case Hls.ErrorDetails.FRAG_LOOP_LOADING_ERROR:\n logError('Fragment-loop loading error');\n break;\n case Hls.ErrorDetails.FRAG_DECRYPT_ERROR:\n logError('Decrypting error:' + data.reason);\n break;\n case Hls.ErrorDetails.FRAG_PARSING_ERROR:\n logError('Parsing error:' + data.reason);\n break;\n case Hls.ErrorDetails.KEY_LOAD_ERROR:\n logError('Error while loading key ' + data.frag.decryptdata.uri);\n break;\n case Hls.ErrorDetails.KEY_LOAD_TIMEOUT:\n logError('Timeout while loading key ' + data.frag.decryptdata.uri);\n break;\n case Hls.ErrorDetails.BUFFER_APPEND_ERROR:\n logError('Buffer append error');\n break;\n case Hls.ErrorDetails.BUFFER_ADD_CODEC_ERROR:\n logError('Buffer add codec error for ' + data.mimeType + ':' + data.err.message);\n break;\n case Hls.ErrorDetails.BUFFER_APPENDING_ERROR:\n logError('Buffer appending error');\n break;\n case Hls.ErrorDetails.BUFFER_STALLED_ERROR:\n logError('Buffer stalled error');\n break;\n default:\n break;\n }\n if(data.fatal) {\n console.error('Fatal error :' + data.details);\n switch(data.type) {\n case Hls.ErrorTypes.MEDIA_ERROR:\n handleMediaError();\n break;\n case Hls.ErrorTypes.NETWORK_ERROR:\n logError('A network error occured');\n break;\n default:\n logError('An unrecoverable error occured');\n hls.destroy();\n break;\n }\n }\n if(!stats) {\n stats = {};\n }\n // track all errors independently\n if (stats[data.details] === undefined)\n {stats[data.details] = 1;}\n else\n {stats[data.details] += 1;}\n\n // track fatal error\n if (data.fatal) {\n if (stats.fatalError === undefined) {\n stats.fatalError = 1;\n } else {\n stats.fatalError += 1;\n }\n }\n $('#statisticsOut').text(JSON.stringify(sortObject(stats), null, '\\t'));\n });\n\n hls.on(Hls.Events.BUFFER_CREATED, function(event, data) {\n tracks = data.tracks;\n });\n\n hls.on(Hls.Events.BUFFER_APPENDING, function(event, data) {\n if (dumpfMP4) {\n fmp4Data[data.type].push(data.data);\n }\n });\n\n hls.on(Hls.Events.FPS_DROP, function(event, data) {\n let evt = {\n time: performance.now() - events.t0,\n type: 'frame drop',\n name: data.currentDropped + '/' + data.currentDecoded\n };\n events.video.push(evt);\n trimEventHistory();\n if (stats) {\n if (stats.fpsDropEvent === undefined)\n {stats.fpsDropEvent = 1;}\n else\n {stats.fpsDropEvent++;}\n\n stats.fpsTotalDroppedFrames = data.totalDroppedFrames;\n }\n });\n\n video.addEventListener('resize', handleVideoEvent);\n video.addEventListener('seeking', handleVideoEvent);\n video.addEventListener('seeked', handleVideoEvent);\n video.addEventListener('pause', handleVideoEvent);\n video.addEventListener('play', handleVideoEvent);\n video.addEventListener('canplay', handleVideoEvent);\n video.addEventListener('canplaythrough', handleVideoEvent);\n video.addEventListener('ended', handleVideoEvent);\n video.addEventListener('playing', handleVideoEvent);\n video.addEventListener('error', handleVideoEvent);\n video.addEventListener('loadedmetadata', handleVideoEvent);\n video.addEventListener('loadeddata', handleVideoEvent);\n video.addEventListener('durationchange', handleVideoEvent);\n}\n\nfunction handleUnsupported() {\n if(navigator.userAgent.toLowerCase().indexOf('firefox') !== -1) {\n logStatus('You are using Firefox, it looks like MediaSource is not enabled,
please ensure the following keys are set appropriately in about:config
media.mediasource.enabled=true
media.mediasource.mp4.enabled=true
media.mediasource.whitelist=false');\n } else {\n logStatus('Your Browser does not support MediaSourceExtension / MP4 mediasource');\n }\n}\n\nfunction handleVideoEvent(evt) {\n let data = '';\n switch(evt.type) {\n case 'durationchange':\n if(evt.target.duration - lastDuration <= 0.5) {\n // some browsers report several duration change events with almost the same value ... avoid spamming video events\n return;\n }\n lastDuration = evt.target.duration;\n data = Math.round(evt.target.duration*1000);\n break;\n case 'resize':\n data = evt.target.videoWidth + '/' + evt.target.videoHeight;\n break;\n case 'loadedmetadata':\n case 'loadeddata':\n case 'canplay':\n case 'canplaythrough':\n case 'ended':\n case 'seeking':\n case 'seeked':\n case 'play':\n case 'playing':\n lastStartPosition = evt.target.currentTime;\n case 'pause':\n case 'waiting':\n case 'stalled':\n case 'error':\n data = Math.round(evt.target.currentTime*1000);\n if(evt.type === 'error') {\n let errorTxt, mediaError=evt.currentTarget.error;\n switch(mediaError.code) {\n case mediaError.MEDIA_ERR_ABORTED:\n errorTxt = 'You aborted the video playback';\n break;\n case mediaError.MEDIA_ERR_DECODE:\n errorTxt = 'The video playback was aborted due to a corruption problem or because the video used features your browser did not support';\n handleMediaError();\n break;\n case mediaError.MEDIA_ERR_NETWORK:\n errorTxt = 'A network error caused the video download to fail part-way';\n break;\n case mediaError.MEDIA_ERR_SRC_NOT_SUPPORTED:\n errorTxt = 'The video could not be loaded, either because the server or network failed or because the format is not supported';\n break;\n }\n\n if (mediaError.message) {\n errorTxt += ' - ' + mediaError.message;\n }\n\n logStatus(errorTxt);\n console.error(errorTxt);\n }\n break;\n default:\n break;\n }\n\n let event = {\n time: performance.now() - events.t0,\n type: evt.type,\n name: data\n };\n\n events.video.push(event);\n if(evt.type === 'seeking') {\n lastSeekingIdx = events.video.length-1;\n }\n\n if(evt.type === 'seeked') {\n events.video[lastSeekingIdx].duration = event.time - events.video[lastSeekingIdx].time;\n }\n\n trimEventHistory();\n}\n\nfunction handleMediaError() {\n if(autoRecoverError) {\n let now = performance.now();\n if(!recoverDecodingErrorDate || (now - recoverDecodingErrorDate) > 3000) {\n recoverDecodingErrorDate = performance.now();\n $('#statusOut').append(', trying to recover media error.');\n hls.recoverMediaError();\n } else {\n if(!recoverSwapAudioCodecDate || (now - recoverSwapAudioCodecDate) > 3000) {\n recoverSwapAudioCodecDate = performance.now();\n $('#statusOut').append(', trying to swap audio codec and recover media error.');\n hls.swapAudioCodec();\n hls.recoverMediaError();\n } else {\n $('#statusOut').append(', cannot recover. Last media error recovery failed.');\n }\n }\n }\n}\n\nfunction timeRangesToString(r) {\n let log = '';\n for (let i=0; i= r.start(i) && pos < r.end(i)) {\n // play position is inside this buffer TimeRange, retrieve end of buffer position and buffer length\n bufferLen = r.end(i) - pos;\n }\n }\n // check if we are in buffering / or playback ended state\n if(bufferLen <= 0.1 && v.paused === false && (pos-lastStartPosition) > 0.5) {\n // don't create buffering event if we are at the end of the playlist, don't report ended for live playlist\n if(lastDuration -pos <= 0.5 && events.isLive === false) {\n } else {\n // we are not at the end of the playlist ... real buffering\n if(bufferingIdx !== -1) {\n bufferingDuration = performance.now() - events.t0 - events.video[bufferingIdx].time;\n events.video[bufferingIdx].duration = bufferingDuration;\n events.video[bufferingIdx].name = bufferingDuration;\n } else {\n events.video.push({\n type: 'buffering',\n time: performance.now() - events.t0\n });\n trimEventHistory();\n // we are in buffering state\n bufferingIdx = events.video.length-1;\n }\n }\n }\n\n if(bufferLen > 0.1 && bufferingIdx !=-1) {\n bufferingDuration = performance.now() - events.t0 - events.video[bufferingIdx].time;\n events.video[bufferingIdx].duration = bufferingDuration;\n events.video[bufferingIdx].name = bufferingDuration;\n // we are out of buffering state\n bufferingIdx = -1;\n }\n\n // update buffer/position for current Time\n let event = {\n time : performance.now() - events.t0,\n buffer: Math.round(bufferLen*1000),\n pos : Math.round(pos*1000)\n };\n let bufEvents = events.buffer, bufEventLen = bufEvents.length;\n if(bufEventLen > 1) {\n let event0 = bufEvents[bufEventLen-2], event1 = bufEvents[bufEventLen-1];\n let slopeBuf0 = (event0.buffer - event1.buffer)/(event0.time-event1.time);\n let slopeBuf1 = (event1.buffer - event.buffer)/(event1.time-event.time);\n\n let slopePos0 = (event0.pos - event1.pos)/(event0.time-event1.time);\n let slopePos1 = (event1.pos - event.pos)/(event1.time-event.time);\n // compute slopes. if less than 30% difference, remove event1\n if((slopeBuf0 === slopeBuf1 || Math.abs(slopeBuf0/slopeBuf1 -1) <= 0.3) &&\n (slopePos0 === slopePos1 || Math.abs(slopePos0/slopePos1 -1) <= 0.3))\n {bufEvents.pop();}\n\n }\n events.buffer.push(event);\n trimEventHistory();\n refreshCanvas();\n\n let log = 'Duration: '\n + v.duration + '\\n'\n + 'Buffered: '\n + timeRangesToString(v.buffered) + '\\n'\n + 'Seekable: '\n + timeRangesToString(v.seekable) + '\\n'\n + 'Played: '\n + timeRangesToString(v.played) + '\\n';\n\n if (hls.media) {\n for(let type in tracks) {\n log += 'Buffer for ' + type + ' contains: ' + timeRangesToString(tracks[type].buffer.buffered) + '\\n';\n }\n\n const videoPlaybackQuality = v.getVideoPlaybackQuality;\n if(videoPlaybackQuality && typeof (videoPlaybackQuality) === typeof (Function)) {\n log += 'Dropped frames: '+ v.getVideoPlaybackQuality().droppedVideoFrames + '\\n';\n log += 'Corrupted frames:'+ v.getVideoPlaybackQuality().corruptedVideoFrames + '\\n';\n } else if(v.webkitDroppedFrameCount) {\n log+='Dropped frames:'+ v.webkitDroppedFrameCount + '\\n';\n }\n }\n $('#bufferedOut').text(log);\n\n $('#statisticsOut').text(JSON.stringify(sortObject(stats), null, '\\t'));\n\n ctx.fillStyle = 'blue';\n\n const x = v.currentTime / v.duration * canvas.width;\n ctx.fillRect(x, 0, 2, 15);\n }\n\n}\n\nfunction showCanvas() {\n showMetrics();\n $('#bufferedOut').show();\n $('#bufferedCanvas').show();\n}\n\nfunction hideCanvas() {\n hideMetrics();\n $('#bufferedOut').hide();\n $('#bufferedCanvas').hide();\n}\n\nfunction getMetrics() {\n let json = JSON.stringify(events);\n let jsonpacked = jsonpack.pack(json);\n // console.log('packing JSON from ' + json.length + ' to ' + jsonpacked.length + ' bytes');\n return btoa(jsonpacked);\n}\n\nfunction copyMetricsToClipBoard() {\n copyTextToClipboard(getMetrics());\n}\n\nfunction goToMetrics() {\n let url = document.URL;\n url = url.substr(0, url.lastIndexOf('/')+1) + 'metrics.html';\n // console.log(url);\n window.open(url, '_blank');\n}\n\nfunction goToMetricsPermaLink() {\n let url = document.URL;\n let b64 = getMetrics();\n url = url.substr(0, url.lastIndexOf('/')+1) + 'metrics.html#data=' + b64;\n // console.log(url);\n window.open(url, '_blank');\n}\n\nfunction minsecs(ts) {\n let m = Math.floor(Math.floor(ts % 3600) / 60);\n let s = Math.floor(ts % 60);\n return m + ':' + (s < 10 ? '0' : '') + s;\n}\n\nfunction onClickBufferedRange(event) {\n let canvas = $('#bufferedCanvas')[0];\n let v = $('#video')[0];\n let target = (event.clientX - canvas.offsetLeft) / canvas.width * v.duration;\n v.currentTime = target;\n}\n\nfunction updateLevelInfo() {\n\n if (!hls.levels) {\n return;\n }\n\n let button_template = '';\n\n let html2 = button_template;\n if(hls.autoLevelEnabled) {\n html2 += button_enabled;\n } else {\n html2 += button_disabled;\n }\n\n html2 += 'onclick=\"hls.loadLevel=-1\">auto';\n\n let html3 = button_template;\n if(hls.autoLevelCapping === -1) {\n html3 += button_enabled;\n } else {\n html3 += button_disabled;\n }\n\n html3 += 'onclick=\"levelCapping=hls.autoLevelCapping=-1;updateLevelInfo();onDemoConfigChanged();\">auto';\n\n let html4 = button_template;\n if(hls.autoLevelEnabled) {\n html4 += button_enabled;\n } else {\n html4 += button_disabled;\n }\n\n html4 += 'onclick=\"hls.nextLevel=-1\">auto';\n\n for (let i=0; i < hls.levels.length; i++) {\n html1 += button_template;\n if(hls.currentLevel === i) {\n html1 += button_enabled;\n } else {\n html1 += button_disabled;\n }\n\n let levelName = i;\n let label = level2label(i);\n if(label) {\n levelName += ' (' + level2label(i) + 'p)';\n }\n\n html1 += 'onclick=\"hls.currentLevel=' + i + '\">' + levelName + '';\n\n html2 += button_template;\n if(hls.loadLevel === i) {\n html2 += button_enabled;\n } else {\n html2 += button_disabled;\n }\n\n html2 += 'onclick=\"hls.loadLevel=' + i + '\">' + levelName + '';\n\n html3 += button_template;\n if(hls.autoLevelCapping === i) {\n html3 += button_enabled;\n } else {\n html3 += button_disabled;\n }\n\n html3 += 'onclick=\"levelCapping=hls.autoLevelCapping=' + i + ';updateLevelInfo();onDemoConfigChanged();\">' + levelName + '';\n\n html4 += button_template;\n if(hls.nextLevel === i) {\n html4 += button_enabled;\n } else {\n html4 += button_disabled;\n }\n\n html4 += 'onclick=\"hls.nextLevel=' + i + '\">' + levelName + '';\n }\n\n let v = $('#video')[0];\n\n if(v.videoWidth && v.videoHeight) {\n $('#currentResolution').html(v.videoWidth + ' x ' + v.videoHeight);\n }\n\n if($('#currentLevelControl').html() != html1) {\n $('#currentLevelControl').html(html1);\n }\n\n if($('#loadLevelControl').html() != html2) {\n $('#loadLevelControl').html(html2);\n }\n\n if($('#levelCappingControl').html() != html3) {\n $('#levelCappingControl').html(html3);\n }\n\n if($('#nextLevelControl').html() != html4) {\n $('#nextLevelControl').html(html4);\n }\n}\n\nfunction updateAudioTrackInfo() {\n let button_template = '';\n }\n $('#audioTrackControl').html(html1);\n}\n\nfunction level2label(index) {\n if(hls && hls.levels.length-1 >= index) {\n let level = hls.levels[index];\n if (level.name) {\n return level.name;\n } else {\n if (level.height) {\n return(level.height + 'p / ' + Math.round(level.bitrate / 1024) + 'kb');\n } else {\n if(level.bitrate) {\n return(Math.round(level.bitrate / 1024) + 'kb');\n } else {\n return null;\n }\n }\n }\n }\n}\n\nfunction getDemoConfigPropOrDefault(propName, defaultVal) {\n return typeof demoConfig[propName] !== 'undefined' ? demoConfig[propName] : defaultVal;\n}\n\nfunction getURLParam(sParam, defaultValue) {\n let sPageURL = window.location.search.substring(1);\n let sURLVariables = sPageURL.split('&');\n for (let i = 0; i < sURLVariables.length; i++) {\n let sParameterName = sURLVariables[i].split('=');\n if (sParameterName[0] == sParam)\n {return 'undefined' == sParameterName[1] ? undefined : 'false' == sParameterName[1] ? false : sParameterName[1];}\n\n }\n return defaultValue;\n}\n\nfunction onDemoConfigChanged() {\n const url = $('#streamURL').val();\n\n demoConfig = {\n enableStreaming,\n autoRecoverError,\n enableWorker,\n dumpfMP4,\n levelCapping,\n limitMetrics,\n defaultAudioCodec,\n widevineLicenseUrl: escape(widevineLicenseUrl)\n }\n\n const serializedDemoConfig = btoa(JSON.stringify(demoConfig))\n\n const baseURL = document.URL.split('?')[0]\n const permalinkURL = baseURL + `?src=${encodeURIComponent(url)}&demoConfig=${serializedDemoConfig}`\n\n $('#StreamPermalink').html('' + permalinkURL + '');\n}\n\nfunction createfMP4(type) {\n if (fmp4Data[type].length) {\n let blob = new Blob([arrayConcat(fmp4Data[type])], {\n type: 'application/octet-stream'\n });\n let filename = type + '-' + new Date().toISOString() + '.mp4';\n saveAs(blob, filename);\n //$('body').append('Download ' + filename + ' track
');\n }\n}\n\nfunction arrayConcat(inputArray) {\n let totalLength = inputArray.reduce( function(prev, cur) { return prev+cur.length; }, 0);\n let result = new Uint8Array(totalLength);\n let offset = 0;\n inputArray.forEach(function(element) {\n result.set(element, offset);\n offset += element.length;\n });\n return result;\n}\n\nfunction hideAllTabs() {\n $('#playbackControlTab').hide();\n $('#qualityLevelControlTab').hide();\n $('#audioTrackControlTab').hide();\n $('#metricsDisplayTab').hide();\n $('#statsDisplayTab').hide();\n}\n\nfunction toggleTab(tabElId) {\n hideAllTabs();\n hideMetrics();\n $('#' + tabElId).show();\n}\n\nfunction appendLog(textElId, message) {\n const el = $('#' + textElId)\n let logText = el.text()\n if (logText.length) {\n logText += '\\n'\n }\n const timestamp = (Date.now() - startTime) / 1000\n const newMessage = timestamp + ' | ' + message\n logText += newMessage\n // update\n el.text(logText)\n}\n\nfunction logStatus(message) {\n appendLog('statusOut', message)\n}\n\nfunction logError(message) {\n appendLog('errorOut', message)\n}\n\n\n\n// WEBPACK FOOTER //\n// ./demo/main.js","export function sortObject(obj) {\n if(typeof obj !== 'object') {\n return obj;\n }\n let temp = {};\n let keys = [];\n for(let key in obj) {\n keys.push(key);\n }\n keys.sort();\n for(let index in keys) {\n temp[keys[index]] = sortObject(obj[keys[index]]);\n }\n return temp;\n}\n\nexport function copyTextToClipboard(text) {\n let textArea = document.createElement('textarea');\n textArea.value = text;\n document.body.appendChild(textArea);\n textArea.select();\n try {\n let successful = document.execCommand('copy');\n let msg = successful ? 'successful' : 'unsuccessful';\n console.log('Copying text command was ' + msg);\n } catch (err) {\n console.log('Oops, unable to copy');\n }\n document.body.removeChild(textArea);\n}\n\n\n\n\n// WEBPACK FOOTER //\n// ./demo/demo-utils.js","/**\n * Create test stream\n * @param {string} url\n * @param {string} description\n * @param {boolean} [live]\n * @param {boolean} [abr]\n * @param {string[]} [blacklist_ua]\n * @returns {{url: string, description: string, live: boolean, abr: boolean, blacklist_ua: string[]}}\n */\nfunction createTestStream (url, description, live = false, abr = true, blacklist_ua = []) {\n return {\n url,\n description,\n live,\n abr,\n blacklist_ua\n };\n}\n\n/**\n * @param {Object} target\n * @param {Object} [config]\n * @returns {{url: string, description: string, live: boolean, abr: boolean, blacklist_ua: string[]}}\n */\nfunction createTestStreamWithConfig (target, config) {\n if (typeof target !== 'object') {\n throw new Error('target should be object');\n }\n\n const testStream = createTestStream(target.url, target.description, target.live, target.abr, target.blacklist_ua);\n\n testStream.config = config;\n\n return testStream;\n}\n\nmodule.exports = {\n bbb: createTestStreamWithConfig({\n url: 'https://video-dev.github.io/streams/x36xhzz/x36xhzz.m3u8',\n description: 'Big Buck Bunny - adaptive qualities'\n },\n {\n // try to workaround test failing because of slow seek on Chrome/Win10\n nudgeMaxRetry: 5\n }\n ),\n bigBuckBunny480p: {\n 'url': 'https://video-dev.github.io/streams/x36xhzz/url_6/193039199_mp4_h264_aac_hq_7.m3u8',\n 'description': 'Big Buck Bunny - 480p only',\n 'live': false,\n 'abr': false,\n 'blacklist_ua': ['internet explorer']\n },\n arte: {\n 'url': 'https://video-dev.github.io/streams/test_001/stream.m3u8',\n 'description': 'ARTE China,ABR',\n 'live': false,\n 'abr': true\n },\n deltatreDAI: {\n 'url': 'https://video-dev.github.io/streams/dai-discontinuity-deltatre/manifest.m3u8',\n 'description': 'Ad-insertion in event stream',\n 'live': false,\n 'abr': false,\n 'blacklist_ua': ['internet explorer']\n },\n issue666: {\n 'url': 'https://video-dev.github.io/streams/issue666/playlists/cisq0gim60007xzvi505emlxx.m3u8',\n 'description': 'hls.js/issues/666',\n 'live': false,\n 'abr': false,\n 'blacklist_ua': ['internet explorer']\n },\n issue649: {\n 'url': 'http://cdn3.screen9.com/media/c/W/cW87csHkxsgu5TV1qs78aA_auto_hls.m3u8?auth=qlUjeCtbVdtkDfZYrtveTIVUXX1yuSqgF8wfWabzKpX72r-d5upW88-FHuyRRdnZA_1PKRTGAtTt_6Z-aj22kw',\n 'description': 'hls.js/issues/649',\n 'live': false,\n 'abr': false\n },\n closedCaptions: {\n 'url': 'http://playertest.longtailvideo.com/adaptive/captions/playlist.m3u8',\n 'description': 'CNN special report, with CC',\n 'live': false,\n 'abr': false,\n 'blacklist_ua': ['safari']\n },\n oceansAES: {\n 'url': 'http://playertest.longtailvideo.com/adaptive/oceans_aes/oceans_aes.m3u8',\n 'description': 'AES encrypted,ABR',\n 'live': false,\n 'abr': true\n },\n /*\n bbbAES: {\n 'url': 'https://video-dev.github.io/streams/bbbAES/playlists/sample_aes/index.m3u8',\n 'description': 'SAMPLE-AES encrypted',\n 'live': false,\n 'abr': false\n },\n */\n mp3Audio: {\n 'url': 'https://player.webvideocore.net/CL1olYogIrDWvwqiIKK7eLBkzvO18gwo9ERMzsyXzwt_t-ya8ygf2kQBZww38JJT/8i4vvznv8408.m3u8',\n 'description': 'MP3 VOD demo',\n 'live': false,\n 'abr': false,\n 'blacklist_ua': ['safari']\n },\n mpegAudioOnly: {\n 'url': 'https://pl.streamingvideoprovider.com/mp3-playlist/playlist.m3u8',\n 'description': 'MPEG Audio Only demo',\n 'live': false,\n 'abr': false,\n 'blacklist_ua': ['internet explorer', 'MicrosoftEdge', 'safari', 'firefox']\n },\n fmp4: {\n 'url': 'https://storage.googleapis.com/shaka-demo-assets/angel-one-hls/hls.m3u8',\n 'description': 'HLS fMP4 Angel-One multiple audio-tracks',\n 'live': false,\n 'abr': false,\n 'blacklist_ua': ['safari', 'internet explorer']\n },\n fmp4Bitmovin: {\n 'url': 'https://bitdash-a.akamaihd.net/content/MI201109210084_1/m3u8s-fmp4/f08e80da-bf1d-4e3d-8899-f0f6155f6efa.m3u8',\n 'description': 'HLS fMP4 by Bitmovin',\n 'live': false,\n 'abr': true,\n 'blacklist_ua': ['safari', 'internet explorer']\n },\n offset_pts: {\n 'url': 'https://video-dev.github.io/streams/pts_shift/master.m3u8',\n 'description': 'DK Turntable, PTS shifted by 2.3s',\n 'live': false,\n 'abr': false\n },\n /*\n uspHLSAteam: createTestStream(\n 'http://demo.unified-streaming.com/video/ateam/ateam.ism/ateam.m3u8?session_id=27199',\n 'A-Team movie trailer - HLS by Unified Streaming Platform'\n ),\n */\n angelOneShakaWidevine: createTestStreamWithConfig({\n url: 'https://storage.googleapis.com/shaka-demo-assets/angel-one-widevine-hls/hls.m3u8',\n description: 'Shaka-packager Widevine DRM (EME) HLS-fMP4 - Angel One Demo',\n blacklist_ua: ['firefox', 'safari', 'internet explorer']\n },\n {\n widevineLicenseUrl: 'https://cwip-shaka-proxy.appspot.com/no_auth',\n emeEnabled: true\n }\n ),\n audioOnlyMultipleLevels: {\n 'url': 'https://s3.amazonaws.com/bob.jwplayer.com/~alex/121628/new_master.m3u8',\n 'description': 'Multiple non-alternate audio levels',\n 'live': false,\n 'abr': false\n },\n pdtDuplicate: {\n url: 'https://playertest.longtailvideo.com/adaptive/artbeats/manifest.m3u8',\n description: 'Stream with duplicate sequential PDT values'\n },\n pdtLargeGap: {\n url: 'https://playertest.longtailvideo.com/adaptive/boxee/playlist.m3u8',\n description: 'PDTs with large gaps following discontinuities'\n },\n pdtBadValues: {\n url: 'https://playertest.longtailvideo.com/adaptive/progdatime/playlist2.m3u8',\n description: 'PDTs with bad values'\n },\n pdtOneValue: {\n url: 'https://playertest.longtailvideo.com/adaptive/aviion/manifest.m3u8',\n description: 'One PDT, no discontinuities'\n }\n};\n\n\n\n// WEBPACK FOOTER //\n// ./tests/test-streams.js"],"sourceRoot":""}
\ No newline at end of file
diff --git a/dist/hls.js b/dist/hls.js
deleted file mode 100644
index e5a3f413115..00000000000
--- a/dist/hls.js
+++ /dev/null
@@ -1,18922 +0,0 @@
-(function webpackUniversalModuleDefinition(root, factory) {
- if(typeof exports === 'object' && typeof module === 'object')
- module.exports = factory();
- else if(typeof define === 'function' && define.amd)
- define([], factory);
- else if(typeof exports === 'object')
- exports["Hls"] = factory();
- else
- root["Hls"] = factory();
-})(this, function() {
-return /******/ (function(modules) { // webpackBootstrap
-/******/ // The module cache
-/******/ var installedModules = {};
-/******/
-/******/ // The require function
-/******/ function __webpack_require__(moduleId) {
-/******/
-/******/ // Check if module is in cache
-/******/ if(installedModules[moduleId]) {
-/******/ return installedModules[moduleId].exports;
-/******/ }
-/******/ // Create a new module (and put it into the cache)
-/******/ var module = installedModules[moduleId] = {
-/******/ i: moduleId,
-/******/ l: false,
-/******/ exports: {}
-/******/ };
-/******/
-/******/ // Execute the module function
-/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
-/******/
-/******/ // Flag the module as loaded
-/******/ module.l = true;
-/******/
-/******/ // Return the exports of the module
-/******/ return module.exports;
-/******/ }
-/******/
-/******/
-/******/ // expose the modules object (__webpack_modules__)
-/******/ __webpack_require__.m = modules;
-/******/
-/******/ // expose the module cache
-/******/ __webpack_require__.c = installedModules;
-/******/
-/******/ // define getter function for harmony exports
-/******/ __webpack_require__.d = function(exports, name, getter) {
-/******/ if(!__webpack_require__.o(exports, name)) {
-/******/ Object.defineProperty(exports, name, {
-/******/ configurable: false,
-/******/ enumerable: true,
-/******/ get: getter
-/******/ });
-/******/ }
-/******/ };
-/******/
-/******/ // getDefaultExport function for compatibility with non-harmony modules
-/******/ __webpack_require__.n = function(module) {
-/******/ var getter = module && module.__esModule ?
-/******/ function getDefault() { return module['default']; } :
-/******/ function getModuleExports() { return module; };
-/******/ __webpack_require__.d(getter, 'a', getter);
-/******/ return getter;
-/******/ };
-/******/
-/******/ // Object.prototype.hasOwnProperty.call
-/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
-/******/
-/******/ // __webpack_public_path__
-/******/ __webpack_require__.p = "/dist/";
-/******/
-/******/ // Load entry module and return exports
-/******/ return __webpack_require__(__webpack_require__.s = 10);
-/******/ })
-/************************************************************************/
-/******/ ([
-/* 0 */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return enableLogs; });
-/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return logger; });
-/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__get_self_scope__ = __webpack_require__(3);
-var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
-
-
-
-function noop() {}
-
-var fakeLogger = {
- trace: noop,
- debug: noop,
- log: noop,
- warn: noop,
- info: noop,
- error: noop
-};
-
-var exportedLogger = fakeLogger;
-
-// let lastCallTime;
-// function formatMsgWithTimeInfo(type, msg) {
-// const now = Date.now();
-// const diff = lastCallTime ? '+' + (now - lastCallTime) : '0';
-// lastCallTime = now;
-// msg = (new Date(now)).toISOString() + ' | [' + type + '] > ' + msg + ' ( ' + diff + ' ms )';
-// return msg;
-// }
-
-function formatMsg(type, msg) {
- msg = '[' + type + '] > ' + msg;
- return msg;
-}
-
-var global = Object(__WEBPACK_IMPORTED_MODULE_0__get_self_scope__["a" /* getSelfScope */])();
-
-function consolePrintFn(type) {
- var func = global.console[type];
- if (func) {
- return function () {
- for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
- args[_key] = arguments[_key];
- }
-
- if (args[0]) {
- args[0] = formatMsg(type, args[0]);
- }
-
- func.apply(global.console, args);
- };
- }
- return noop;
-}
-
-function exportLoggerFunctions(debugConfig) {
- for (var _len2 = arguments.length, functions = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
- functions[_key2 - 1] = arguments[_key2];
- }
-
- functions.forEach(function (type) {
- exportedLogger[type] = debugConfig[type] ? debugConfig[type].bind(debugConfig) : consolePrintFn(type);
- });
-}
-
-var enableLogs = function enableLogs(debugConfig) {
- if (debugConfig === true || (typeof debugConfig === 'undefined' ? 'undefined' : _typeof(debugConfig)) === 'object') {
- exportLoggerFunctions(debugConfig,
- // Remove out from list here to hard-disable a log-level
- // 'trace',
- 'debug', 'log', 'info', 'warn', 'error');
- // Some browsers don't allow to use bind on console object anyway
- // fallback to default if needed
- try {
- exportedLogger.log();
- } catch (e) {
- exportedLogger = fakeLogger;
- }
- } else {
- exportedLogger = fakeLogger;
- }
-};
-
-var logger = exportedLogger;
-
-/***/ }),
-/* 1 */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-/**
- * @readonly
- * @enum {string}
- */
-var HlsEvents = {
- // fired before MediaSource is attaching to media element - data: { media }
- MEDIA_ATTACHING: 'hlsMediaAttaching',
- // fired when MediaSource has been succesfully attached to media element - data: { }
- MEDIA_ATTACHED: 'hlsMediaAttached',
- // fired before detaching MediaSource from media element - data: { }
- MEDIA_DETACHING: 'hlsMediaDetaching',
- // fired when MediaSource has been detached from media element - data: { }
- MEDIA_DETACHED: 'hlsMediaDetached',
- // fired when we buffer is going to be reset - data: { }
- BUFFER_RESET: 'hlsBufferReset',
- // fired when we know about the codecs that we need buffers for to push into - data: {tracks : { container, codec, levelCodec, initSegment, metadata }}
- BUFFER_CODECS: 'hlsBufferCodecs',
- // fired when sourcebuffers have been created - data: { tracks : tracks }
- BUFFER_CREATED: 'hlsBufferCreated',
- // fired when we append a segment to the buffer - data: { segment: segment object }
- BUFFER_APPENDING: 'hlsBufferAppending',
- // fired when we are done with appending a media segment to the buffer - data : { parent : segment parent that triggered BUFFER_APPENDING, pending : nb of segments waiting for appending for this segment parent}
- BUFFER_APPENDED: 'hlsBufferAppended',
- // fired when the stream is finished and we want to notify the media buffer that there will be no more data - data: { }
- BUFFER_EOS: 'hlsBufferEos',
- // fired when the media buffer should be flushed - data { startOffset, endOffset }
- BUFFER_FLUSHING: 'hlsBufferFlushing',
- // fired when the media buffer has been flushed - data: { }
- BUFFER_FLUSHED: 'hlsBufferFlushed',
- // fired to signal that a manifest loading starts - data: { url : manifestURL}
- MANIFEST_LOADING: 'hlsManifestLoading',
- // fired after manifest has been loaded - data: { levels : [available quality levels], audioTracks : [ available audio tracks], url : manifestURL, stats : { trequest, tfirst, tload, mtime}}
- MANIFEST_LOADED: 'hlsManifestLoaded',
- // fired after manifest has been parsed - data: { levels : [available quality levels], firstLevel : index of first quality level appearing in Manifest}
- MANIFEST_PARSED: 'hlsManifestParsed',
- // fired when a level switch is requested - data: { level : id of new level }
- LEVEL_SWITCHING: 'hlsLevelSwitching',
- // fired when a level switch is effective - data: { level : id of new level }
- LEVEL_SWITCHED: 'hlsLevelSwitched',
- // fired when a level playlist loading starts - data: { url : level URL, level : id of level being loaded}
- LEVEL_LOADING: 'hlsLevelLoading',
- // fired when a level playlist loading finishes - data: { details : levelDetails object, level : id of loaded level, stats : { trequest, tfirst, tload, mtime} }
- LEVEL_LOADED: 'hlsLevelLoaded',
- // fired when a level's details have been updated based on previous details, after it has been loaded - data: { details : levelDetails object, level : id of updated level }
- LEVEL_UPDATED: 'hlsLevelUpdated',
- // fired when a level's PTS information has been updated after parsing a fragment - data: { details : levelDetails object, level : id of updated level, drift: PTS drift observed when parsing last fragment }
- LEVEL_PTS_UPDATED: 'hlsLevelPtsUpdated',
- // fired to notify that audio track lists has been updated - data: { audioTracks : audioTracks }
- AUDIO_TRACKS_UPDATED: 'hlsAudioTracksUpdated',
- // fired when an audio track switching is requested - data: { id : audio track id }
- AUDIO_TRACK_SWITCHING: 'hlsAudioTrackSwitching',
- // fired when an audio track switch actually occurs - data: { id : audio track id }
- AUDIO_TRACK_SWITCHED: 'hlsAudioTrackSwitched',
- // fired when an audio track loading starts - data: { url : audio track URL, id : audio track id }
- AUDIO_TRACK_LOADING: 'hlsAudioTrackLoading',
- // fired when an audio track loading finishes - data: { details : levelDetails object, id : audio track id, stats : { trequest, tfirst, tload, mtime } }
- AUDIO_TRACK_LOADED: 'hlsAudioTrackLoaded',
- // fired to notify that subtitle track lists has been updated - data: { subtitleTracks : subtitleTracks }
- SUBTITLE_TRACKS_UPDATED: 'hlsSubtitleTracksUpdated',
- // fired when an subtitle track switch occurs - data: { id : subtitle track id }
- SUBTITLE_TRACK_SWITCH: 'hlsSubtitleTrackSwitch',
- // fired when a subtitle track loading starts - data: { url : subtitle track URL, id : subtitle track id }
- SUBTITLE_TRACK_LOADING: 'hlsSubtitleTrackLoading',
- // fired when a subtitle track loading finishes - data: { details : levelDetails object, id : subtitle track id, stats : { trequest, tfirst, tload, mtime } }
- SUBTITLE_TRACK_LOADED: 'hlsSubtitleTrackLoaded',
- // fired when a subtitle fragment has been processed - data: { success : boolean, frag : the processed frag }
- SUBTITLE_FRAG_PROCESSED: 'hlsSubtitleFragProcessed',
- // fired when the first timestamp is found - data: { id : demuxer id, initPTS: initPTS, frag : fragment object }
- INIT_PTS_FOUND: 'hlsInitPtsFound',
- // fired when a fragment loading starts - data: { frag : fragment object }
- FRAG_LOADING: 'hlsFragLoading',
- // fired when a fragment loading is progressing - data: { frag : fragment object, { trequest, tfirst, loaded } }
- FRAG_LOAD_PROGRESS: 'hlsFragLoadProgress',
- // Identifier for fragment load aborting for emergency switch down - data: { frag : fragment object }
- FRAG_LOAD_EMERGENCY_ABORTED: 'hlsFragLoadEmergencyAborted',
- // fired when a fragment loading is completed - data: { frag : fragment object, payload : fragment payload, stats : { trequest, tfirst, tload, length } }
- FRAG_LOADED: 'hlsFragLoaded',
- // fired when a fragment has finished decrypting - data: { id : demuxer id, frag: fragment object, payload : fragment payload, stats : { tstart, tdecrypt } }
- FRAG_DECRYPTED: 'hlsFragDecrypted',
- // fired when Init Segment has been extracted from fragment - data: { id : demuxer id, frag: fragment object, moov : moov MP4 box, codecs : codecs found while parsing fragment }
- FRAG_PARSING_INIT_SEGMENT: 'hlsFragParsingInitSegment',
- // fired when parsing sei text is completed - data: { id : demuxer id, frag: fragment object, samples : [ sei samples pes ] }
- FRAG_PARSING_USERDATA: 'hlsFragParsingUserdata',
- // fired when parsing id3 is completed - data: { id : demuxer id, frag: fragment object, samples : [ id3 samples pes ] }
- FRAG_PARSING_METADATA: 'hlsFragParsingMetadata',
- // fired when data have been extracted from fragment - data: { id : demuxer id, frag: fragment object, data1 : moof MP4 box or TS fragments, data2 : mdat MP4 box or null}
- FRAG_PARSING_DATA: 'hlsFragParsingData',
- // fired when fragment parsing is completed - data: { id : demuxer id, frag: fragment object }
- FRAG_PARSED: 'hlsFragParsed',
- // fired when fragment remuxed MP4 boxes have all been appended into SourceBuffer - data: { id : demuxer id, frag : fragment object, stats : { trequest, tfirst, tload, tparsed, tbuffered, length, bwEstimate } }
- FRAG_BUFFERED: 'hlsFragBuffered',
- // fired when fragment matching with current media position is changing - data : { id : demuxer id, frag : fragment object }
- FRAG_CHANGED: 'hlsFragChanged',
- // Identifier for a FPS drop event - data: { curentDropped, currentDecoded, totalDroppedFrames }
- FPS_DROP: 'hlsFpsDrop',
- // triggered when FPS drop triggers auto level capping - data: { level, droppedlevel }
- FPS_DROP_LEVEL_CAPPING: 'hlsFpsDropLevelCapping',
- // Identifier for an error event - data: { type : error type, details : error details, fatal : if true, hls.js cannot/will not try to recover, if false, hls.js will try to recover,other error specific data }
- ERROR: 'hlsError',
- // fired when hls.js instance starts destroying. Different from MEDIA_DETACHED as one could want to detach and reattach a media to the instance of hls.js to handle mid-rolls for example - data: { }
- DESTROYING: 'hlsDestroying',
- // fired when a decrypt key loading starts - data: { frag : fragment object }
- KEY_LOADING: 'hlsKeyLoading',
- // fired when a decrypt key loading is completed - data: { frag : fragment object, payload : key payload, stats : { trequest, tfirst, tload, length } }
- KEY_LOADED: 'hlsKeyLoaded',
- // fired upon stream controller state transitions - data: { previousState, nextState }
- STREAM_STATE_TRANSITION: 'hlsStreamStateTransition'
-};
-
-/* harmony default export */ __webpack_exports__["a"] = (HlsEvents);
-
-/***/ }),
-/* 2 */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return ErrorTypes; });
-/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return ErrorDetails; });
-var ErrorTypes = {
- // Identifier for a network error (loading error / timeout ...)
- NETWORK_ERROR: 'networkError',
- // Identifier for a media Error (video/parsing/mediasource error)
- MEDIA_ERROR: 'mediaError',
- // EME (encrypted media extensions) errors
- KEY_SYSTEM_ERROR: 'keySystemError',
- // Identifier for a mux Error (demuxing/remuxing)
- MUX_ERROR: 'muxError',
- // Identifier for all other errors
- OTHER_ERROR: 'otherError'
-};
-
-/**
- * @enum {ErrorDetails}
- * @typedef {string} ErrorDetail
- */
-var ErrorDetails = {
- KEY_SYSTEM_NO_KEYS: 'keySystemNoKeys',
- KEY_SYSTEM_NO_ACCESS: 'keySystemNoAccess',
- KEY_SYSTEM_NO_SESSION: 'keySystemNoSession',
- KEY_SYSTEM_LICENSE_REQUEST_FAILED: 'keySystemLicenseRequestFailed',
- // Identifier for a manifest load error - data: { url : faulty URL, response : { code: error code, text: error text }}
- MANIFEST_LOAD_ERROR: 'manifestLoadError',
- // Identifier for a manifest load timeout - data: { url : faulty URL, response : { code: error code, text: error text }}
- MANIFEST_LOAD_TIMEOUT: 'manifestLoadTimeOut',
- // Identifier for a manifest parsing error - data: { url : faulty URL, reason : error reason}
- MANIFEST_PARSING_ERROR: 'manifestParsingError',
- // Identifier for a manifest with only incompatible codecs error - data: { url : faulty URL, reason : error reason}
- MANIFEST_INCOMPATIBLE_CODECS_ERROR: 'manifestIncompatibleCodecsError',
- // Identifier for a level load error - data: { url : faulty URL, response : { code: error code, text: error text }}
- LEVEL_LOAD_ERROR: 'levelLoadError',
- // Identifier for a level load timeout - data: { url : faulty URL, response : { code: error code, text: error text }}
- LEVEL_LOAD_TIMEOUT: 'levelLoadTimeOut',
- // Identifier for a level switch error - data: { level : faulty level Id, event : error description}
- LEVEL_SWITCH_ERROR: 'levelSwitchError',
- // Identifier for an audio track load error - data: { url : faulty URL, response : { code: error code, text: error text }}
- AUDIO_TRACK_LOAD_ERROR: 'audioTrackLoadError',
- // Identifier for an audio track load timeout - data: { url : faulty URL, response : { code: error code, text: error text }}
- AUDIO_TRACK_LOAD_TIMEOUT: 'audioTrackLoadTimeOut',
- // Identifier for fragment load error - data: { frag : fragment object, response : { code: error code, text: error text }}
- FRAG_LOAD_ERROR: 'fragLoadError',
- // Identifier for fragment load timeout error - data: { frag : fragment object}
- FRAG_LOAD_TIMEOUT: 'fragLoadTimeOut',
- // Identifier for a fragment decryption error event - data: {id : demuxer Id,frag: fragment object, reason : parsing error description }
- FRAG_DECRYPT_ERROR: 'fragDecryptError',
- // Identifier for a fragment parsing error event - data: { id : demuxer Id, reason : parsing error description }
- // will be renamed DEMUX_PARSING_ERROR and switched to MUX_ERROR in the next major release
- FRAG_PARSING_ERROR: 'fragParsingError',
- // Identifier for a remux alloc error event - data: { id : demuxer Id, frag : fragment object, bytes : nb of bytes on which allocation failed , reason : error text }
- REMUX_ALLOC_ERROR: 'remuxAllocError',
- // Identifier for decrypt key load error - data: { frag : fragment object, response : { code: error code, text: error text }}
- KEY_LOAD_ERROR: 'keyLoadError',
- // Identifier for decrypt key load timeout error - data: { frag : fragment object}
- KEY_LOAD_TIMEOUT: 'keyLoadTimeOut',
- // Triggered when an exception occurs while adding a sourceBuffer to MediaSource - data : { err : exception , mimeType : mimeType }
- BUFFER_ADD_CODEC_ERROR: 'bufferAddCodecError',
- // Identifier for a buffer append error - data: append error description
- BUFFER_APPEND_ERROR: 'bufferAppendError',
- // Identifier for a buffer appending error event - data: appending error description
- BUFFER_APPENDING_ERROR: 'bufferAppendingError',
- // Identifier for a buffer stalled error event
- BUFFER_STALLED_ERROR: 'bufferStalledError',
- // Identifier for a buffer full event
- BUFFER_FULL_ERROR: 'bufferFullError',
- // Identifier for a buffer seek over hole event
- BUFFER_SEEK_OVER_HOLE: 'bufferSeekOverHole',
- // Identifier for a buffer nudge on stall (playback is stuck although currentTime is in a buffered area)
- BUFFER_NUDGE_ON_STALL: 'bufferNudgeOnStall',
- // Identifier for an internal exception happening inside hls.js while handling an event
- INTERNAL_EXCEPTION: 'internalException'
-};
-
-/***/ }),
-/* 3 */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-/* harmony export (immutable) */ __webpack_exports__["a"] = getSelfScope;
-function getSelfScope() {
- // see https://stackoverflow.com/a/11237259/589493
- if (typeof window === 'undefined') {
- /* eslint-disable-next-line no-undef */
- return self;
- } else {
- return window;
- }
-}
-
-/***/ }),
-/* 4 */
-/***/ (function(module, exports, __webpack_require__) {
-
-// see https://tools.ietf.org/html/rfc1808
-
-/* jshint ignore:start */
-(function(root) {
-/* jshint ignore:end */
-
- var URL_REGEX = /^((?:[a-zA-Z0-9+\-.]+:)?)(\/\/[^\/\;?#]*)?(.*?)??(;.*?)?(\?.*?)?(#.*?)?$/;
- var FIRST_SEGMENT_REGEX = /^([^\/;?#]*)(.*)$/;
- var SLASH_DOT_REGEX = /(?:\/|^)\.(?=\/)/g;
- var SLASH_DOT_DOT_REGEX = /(?:\/|^)\.\.\/(?!\.\.\/).*?(?=\/)/g;
-
- var URLToolkit = { // jshint ignore:line
- // If opts.alwaysNormalize is true then the path will always be normalized even when it starts with / or //
- // E.g
- // With opts.alwaysNormalize = false (default, spec compliant)
- // http://a.com/b/cd + /e/f/../g => http://a.com/e/f/../g
- // With opts.alwaysNormalize = true (not spec compliant)
- // http://a.com/b/cd + /e/f/../g => http://a.com/e/g
- buildAbsoluteURL: function(baseURL, relativeURL, opts) {
- opts = opts || {};
- // remove any remaining space and CRLF
- baseURL = baseURL.trim();
- relativeURL = relativeURL.trim();
- if (!relativeURL) {
- // 2a) If the embedded URL is entirely empty, it inherits the
- // entire base URL (i.e., is set equal to the base URL)
- // and we are done.
- if (!opts.alwaysNormalize) {
- return baseURL;
- }
- var basePartsForNormalise = this.parseURL(baseURL);
- if (!baseParts) {
- throw new Error('Error trying to parse base URL.');
- }
- basePartsForNormalise.path = URLToolkit.normalizePath(basePartsForNormalise.path);
- return URLToolkit.buildURLFromParts(basePartsForNormalise);
- }
- var relativeParts = this.parseURL(relativeURL);
- if (!relativeParts) {
- throw new Error('Error trying to parse relative URL.');
- }
- if (relativeParts.scheme) {
- // 2b) If the embedded URL starts with a scheme name, it is
- // interpreted as an absolute URL and we are done.
- if (!opts.alwaysNormalize) {
- return relativeURL;
- }
- relativeParts.path = URLToolkit.normalizePath(relativeParts.path);
- return URLToolkit.buildURLFromParts(relativeParts);
- }
- var baseParts = this.parseURL(baseURL);
- if (!baseParts) {
- throw new Error('Error trying to parse base URL.');
- }
- if (!baseParts.netLoc && baseParts.path && baseParts.path[0] !== '/') {
- // If netLoc missing and path doesn't start with '/', assume everthing before the first '/' is the netLoc
- // This causes 'example.com/a' to be handled as '//example.com/a' instead of '/example.com/a'
- var pathParts = FIRST_SEGMENT_REGEX.exec(baseParts.path);
- baseParts.netLoc = pathParts[1];
- baseParts.path = pathParts[2];
- }
- if (baseParts.netLoc && !baseParts.path) {
- baseParts.path = '/';
- }
- var builtParts = {
- // 2c) Otherwise, the embedded URL inherits the scheme of
- // the base URL.
- scheme: baseParts.scheme,
- netLoc: relativeParts.netLoc,
- path: null,
- params: relativeParts.params,
- query: relativeParts.query,
- fragment: relativeParts.fragment
- };
- if (!relativeParts.netLoc) {
- // 3) If the embedded URL's is non-empty, we skip to
- // Step 7. Otherwise, the embedded URL inherits the
- // (if any) of the base URL.
- builtParts.netLoc = baseParts.netLoc;
- // 4) If the embedded URL path is preceded by a slash "/", the
- // path is not relative and we skip to Step 7.
- if (relativeParts.path[0] !== '/') {
- if (!relativeParts.path) {
- // 5) If the embedded URL path is empty (and not preceded by a
- // slash), then the embedded URL inherits the base URL path
- builtParts.path = baseParts.path;
- // 5a) if the embedded URL's is non-empty, we skip to
- // step 7; otherwise, it inherits the of the base
- // URL (if any) and
- if (!relativeParts.params) {
- builtParts.params = baseParts.params;
- // 5b) if the embedded URL's is non-empty, we skip to
- // step 7; otherwise, it inherits the of the base
- // URL (if any) and we skip to step 7.
- if (!relativeParts.query) {
- builtParts.query = baseParts.query;
- }
- }
- } else {
- // 6) The last segment of the base URL's path (anything
- // following the rightmost slash "/", or the entire path if no
- // slash is present) is removed and the embedded URL's path is
- // appended in its place.
- var baseURLPath = baseParts.path;
- var newPath = baseURLPath.substring(0, baseURLPath.lastIndexOf('/') + 1) + relativeParts.path;
- builtParts.path = URLToolkit.normalizePath(newPath);
- }
- }
- }
- if (builtParts.path === null) {
- builtParts.path = opts.alwaysNormalize ? URLToolkit.normalizePath(relativeParts.path) : relativeParts.path;
- }
- return URLToolkit.buildURLFromParts(builtParts);
- },
- parseURL: function(url) {
- var parts = URL_REGEX.exec(url);
- if (!parts) {
- return null;
- }
- return {
- scheme: parts[1] || '',
- netLoc: parts[2] || '',
- path: parts[3] || '',
- params: parts[4] || '',
- query: parts[5] || '',
- fragment: parts[6] || ''
- };
- },
- normalizePath: function(path) {
- // The following operations are
- // then applied, in order, to the new path:
- // 6a) All occurrences of "./", where "." is a complete path
- // segment, are removed.
- // 6b) If the path ends with "." as a complete path segment,
- // that "." is removed.
- path = path.split('').reverse().join('').replace(SLASH_DOT_REGEX, '');
- // 6c) All occurrences of "/../", where is a
- // complete path segment not equal to "..", are removed.
- // Removal of these path segments is performed iteratively,
- // removing the leftmost matching pattern on each iteration,
- // until no matching pattern remains.
- // 6d) If the path ends with "/..", where is a
- // complete path segment not equal to "..", that
- // "/.." is removed.
- while (path.length !== (path = path.replace(SLASH_DOT_DOT_REGEX, '')).length) {} // jshint ignore:line
- return path.split('').reverse().join('');
- },
- buildURLFromParts: function(parts) {
- return parts.scheme + parts.netLoc + parts.path + parts.params + parts.query + parts.fragment;
- }
- };
-
-/* jshint ignore:start */
- if(true)
- module.exports = URLToolkit;
- else if(typeof define === 'function' && define.amd)
- define([], function() { return URLToolkit; });
- else if(typeof exports === 'object')
- exports["URLToolkit"] = URLToolkit;
- else
- root["URLToolkit"] = URLToolkit;
-})(this);
-/* jshint ignore:end */
-
-
-/***/ }),
-/* 5 */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return utf8ArrayToStr; });
-function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * ID3 parser
- */
-var ID3 = function () {
- function ID3() {
- _classCallCheck(this, ID3);
- }
-
- /**
- * Returns true if an ID3 header can be found at offset in data
- * @param {Uint8Array} data - The data to search in
- * @param {number} offset - The offset at which to start searching
- * @return {boolean} - True if an ID3 header is found
- */
- ID3.isHeader = function isHeader(data, offset) {
- /*
- * http://id3.org/id3v2.3.0
- * [0] = 'I'
- * [1] = 'D'
- * [2] = '3'
- * [3,4] = {Version}
- * [5] = {Flags}
- * [6-9] = {ID3 Size}
- *
- * An ID3v2 tag can be detected with the following pattern:
- * $49 44 33 yy yy xx zz zz zz zz
- * Where yy is less than $FF, xx is the 'flags' byte and zz is less than $80
- */
- if (offset + 10 <= data.length) {
- // look for 'ID3' identifier
- if (data[offset] === 0x49 && data[offset + 1] === 0x44 && data[offset + 2] === 0x33) {
- // check version is within range
- if (data[offset + 3] < 0xFF && data[offset + 4] < 0xFF) {
- // check size is within range
- if (data[offset + 6] < 0x80 && data[offset + 7] < 0x80 && data[offset + 8] < 0x80 && data[offset + 9] < 0x80) {
- return true;
- }
- }
- }
- }
-
- return false;
- };
-
- /**
- * Returns true if an ID3 footer can be found at offset in data
- * @param {Uint8Array} data - The data to search in
- * @param {number} offset - The offset at which to start searching
- * @return {boolean} - True if an ID3 footer is found
- */
-
-
- ID3.isFooter = function isFooter(data, offset) {
- /*
- * The footer is a copy of the header, but with a different identifier
- */
- if (offset + 10 <= data.length) {
- // look for '3DI' identifier
- if (data[offset] === 0x33 && data[offset + 1] === 0x44 && data[offset + 2] === 0x49) {
- // check version is within range
- if (data[offset + 3] < 0xFF && data[offset + 4] < 0xFF) {
- // check size is within range
- if (data[offset + 6] < 0x80 && data[offset + 7] < 0x80 && data[offset + 8] < 0x80 && data[offset + 9] < 0x80) {
- return true;
- }
- }
- }
- }
-
- return false;
- };
-
- /**
- * Returns any adjacent ID3 tags found in data starting at offset, as one block of data
- * @param {Uint8Array} data - The data to search in
- * @param {number} offset - The offset at which to start searching
- * @return {Uint8Array} - The block of data containing any ID3 tags found
- */
-
-
- ID3.getID3Data = function getID3Data(data, offset) {
- var front = offset;
- var length = 0;
-
- while (ID3.isHeader(data, offset)) {
- // ID3 header is 10 bytes
- length += 10;
-
- var size = ID3._readSize(data, offset + 6);
- length += size;
-
- if (ID3.isFooter(data, offset + 10)) {
- // ID3 footer is 10 bytes
- length += 10;
- }
-
- offset += length;
- }
-
- if (length > 0) {
- return data.subarray(front, front + length);
- }
-
- return undefined;
- };
-
- ID3._readSize = function _readSize(data, offset) {
- var size = 0;
- size = (data[offset] & 0x7f) << 21;
- size |= (data[offset + 1] & 0x7f) << 14;
- size |= (data[offset + 2] & 0x7f) << 7;
- size |= data[offset + 3] & 0x7f;
- return size;
- };
-
- /**
- * Searches for the Elementary Stream timestamp found in the ID3 data chunk
- * @param {Uint8Array} data - Block of data containing one or more ID3 tags
- * @return {number} - The timestamp
- */
-
-
- ID3.getTimeStamp = function getTimeStamp(data) {
- var frames = ID3.getID3Frames(data);
- for (var i = 0; i < frames.length; i++) {
- var frame = frames[i];
- if (ID3.isTimeStampFrame(frame)) {
- return ID3._readTimeStamp(frame);
- }
- }
-
- return undefined;
- };
-
- /**
- * Returns true if the ID3 frame is an Elementary Stream timestamp frame
- * @param {ID3 frame} frame
- */
-
-
- ID3.isTimeStampFrame = function isTimeStampFrame(frame) {
- return frame && frame.key === 'PRIV' && frame.info === 'com.apple.streaming.transportStreamTimestamp';
- };
-
- ID3._getFrameData = function _getFrameData(data) {
- /*
- Frame ID $xx xx xx xx (four characters)
- Size $xx xx xx xx
- Flags $xx xx
- */
- var type = String.fromCharCode(data[0], data[1], data[2], data[3]);
- var size = ID3._readSize(data, 4);
-
- // skip frame id, size, and flags
- var offset = 10;
-
- return { type: type, size: size, data: data.subarray(offset, offset + size) };
- };
-
- /**
- * Returns an array of ID3 frames found in all the ID3 tags in the id3Data
- * @param {Uint8Array} id3Data - The ID3 data containing one or more ID3 tags
- * @return {ID3 frame[]} - Array of ID3 frame objects
- */
-
-
- ID3.getID3Frames = function getID3Frames(id3Data) {
- var offset = 0;
- var frames = [];
-
- while (ID3.isHeader(id3Data, offset)) {
- var size = ID3._readSize(id3Data, offset + 6);
- // skip past ID3 header
- offset += 10;
- var end = offset + size;
- // loop through frames in the ID3 tag
- while (offset + 8 < end) {
- var frameData = ID3._getFrameData(id3Data.subarray(offset));
- var frame = ID3._decodeFrame(frameData);
- if (frame) {
- frames.push(frame);
- }
-
- // skip frame header and frame data
- offset += frameData.size + 10;
- }
-
- if (ID3.isFooter(id3Data, offset)) {
- offset += 10;
- }
- }
-
- return frames;
- };
-
- ID3._decodeFrame = function _decodeFrame(frame) {
- if (frame.type === 'PRIV') {
- return ID3._decodePrivFrame(frame);
- } else if (frame.type[0] === 'T') {
- return ID3._decodeTextFrame(frame);
- } else if (frame.type[0] === 'W') {
- return ID3._decodeURLFrame(frame);
- }
-
- return undefined;
- };
-
- ID3._readTimeStamp = function _readTimeStamp(timeStampFrame) {
- if (timeStampFrame.data.byteLength === 8) {
- var data = new Uint8Array(timeStampFrame.data);
- // timestamp is 33 bit expressed as a big-endian eight-octet number,
- // with the upper 31 bits set to zero.
- var pts33Bit = data[3] & 0x1;
- var timestamp = (data[4] << 23) + (data[5] << 15) + (data[6] << 7) + data[7];
- timestamp /= 45;
-
- if (pts33Bit) {
- timestamp += 47721858.84;
- } // 2^32 / 90
-
- return Math.round(timestamp);
- }
-
- return undefined;
- };
-
- ID3._decodePrivFrame = function _decodePrivFrame(frame) {
- /*
- Format: \0
- */
- if (frame.size < 2) {
- return undefined;
- }
-
- var owner = ID3._utf8ArrayToStr(frame.data, true);
- var privateData = new Uint8Array(frame.data.subarray(owner.length + 1));
-
- return { key: frame.type, info: owner, data: privateData.buffer };
- };
-
- ID3._decodeTextFrame = function _decodeTextFrame(frame) {
- if (frame.size < 2) {
- return undefined;
- }
-
- if (frame.type === 'TXXX') {
- /*
- Format:
- [0] = {Text Encoding}
- [1-?] = {Description}\0{Value}
- */
- var index = 1;
- var description = ID3._utf8ArrayToStr(frame.data.subarray(index));
-
- index += description.length + 1;
- var value = ID3._utf8ArrayToStr(frame.data.subarray(index));
-
- return { key: frame.type, info: description, data: value };
- } else {
- /*
- Format:
- [0] = {Text Encoding}
- [1-?] = {Value}
- */
- var text = ID3._utf8ArrayToStr(frame.data.subarray(1));
- return { key: frame.type, data: text };
- }
- };
-
- ID3._decodeURLFrame = function _decodeURLFrame(frame) {
- if (frame.type === 'WXXX') {
- /*
- Format:
- [0] = {Text Encoding}
- [1-?] = {Description}\0{URL}
- */
- if (frame.size < 2) {
- return undefined;
- }
-
- var index = 1;
- var description = ID3._utf8ArrayToStr(frame.data.subarray(index));
-
- index += description.length + 1;
- var value = ID3._utf8ArrayToStr(frame.data.subarray(index));
-
- return { key: frame.type, info: description, data: value };
- } else {
- /*
- Format:
- [0-?] = {URL}
- */
- var url = ID3._utf8ArrayToStr(frame.data);
- return { key: frame.type, data: url };
- }
- };
-
- // http://stackoverflow.com/questions/8936984/uint8array-to-string-in-javascript/22373197
- // http://www.onicos.com/staff/iz/amuse/javascript/expert/utf.txt
- /* utf.js - UTF-8 <=> UTF-16 convertion
- *
- * Copyright (C) 1999 Masanao Izumo
- * Version: 1.0
- * LastModified: Dec 25 1999
- * This library is free. You can redistribute it and/or modify it.
- */
-
-
- ID3._utf8ArrayToStr = function _utf8ArrayToStr(array) {
- var exitOnNull = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
-
- var len = array.length;
- var c = void 0;
- var char2 = void 0;
- var char3 = void 0;
- var out = '';
- var i = 0;
- while (i < len) {
- c = array[i++];
- if (c === 0x00 && exitOnNull) {
- return out;
- } else if (c === 0x00 || c === 0x03) {
- // If the character is 3 (END_OF_TEXT) or 0 (NULL) then skip it
- continue;
- }
- switch (c >> 4) {
- case 0:case 1:case 2:case 3:case 4:case 5:case 6:case 7:
- // 0xxxxxxx
- out += String.fromCharCode(c);
- break;
- case 12:case 13:
- // 110x xxxx 10xx xxxx
- char2 = array[i++];
- out += String.fromCharCode((c & 0x1F) << 6 | char2 & 0x3F);
- break;
- case 14:
- // 1110 xxxx 10xx xxxx 10xx xxxx
- char2 = array[i++];
- char3 = array[i++];
- out += String.fromCharCode((c & 0x0F) << 12 | (char2 & 0x3F) << 6 | (char3 & 0x3F) << 0);
- break;
- default:
- }
- }
- return out;
- };
-
- return ID3;
-}();
-
-var utf8ArrayToStr = ID3._utf8ArrayToStr;
-
-/* harmony default export */ __webpack_exports__["a"] = (ID3);
-
-
-
-/***/ }),
-/* 6 */
-/***/ (function(module, exports) {
-
-// Copyright Joyent, Inc. and other Node contributors.
-//
-// Permission is hereby granted, free of charge, to any person obtaining a
-// copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to permit
-// persons to whom the Software is furnished to do so, subject to the
-// following conditions:
-//
-// The above copyright notice and this permission notice shall be included
-// in all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
-// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
-// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
-// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
-// USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-function EventEmitter() {
- this._events = this._events || {};
- this._maxListeners = this._maxListeners || undefined;
-}
-module.exports = EventEmitter;
-
-// Backwards-compat with node 0.10.x
-EventEmitter.EventEmitter = EventEmitter;
-
-EventEmitter.prototype._events = undefined;
-EventEmitter.prototype._maxListeners = undefined;
-
-// By default EventEmitters will print a warning if more than 10 listeners are
-// added to it. This is a useful default which helps finding memory leaks.
-EventEmitter.defaultMaxListeners = 10;
-
-// Obviously not all Emitters should be limited to 10. This function allows
-// that to be increased. Set to zero for unlimited.
-EventEmitter.prototype.setMaxListeners = function(n) {
- if (!isNumber(n) || n < 0 || isNaN(n))
- throw TypeError('n must be a positive number');
- this._maxListeners = n;
- return this;
-};
-
-EventEmitter.prototype.emit = function(type) {
- var er, handler, len, args, i, listeners;
-
- if (!this._events)
- this._events = {};
-
- // If there is no 'error' event listener then throw.
- if (type === 'error') {
- if (!this._events.error ||
- (isObject(this._events.error) && !this._events.error.length)) {
- er = arguments[1];
- if (er instanceof Error) {
- throw er; // Unhandled 'error' event
- } else {
- // At least give some kind of context to the user
- var err = new Error('Uncaught, unspecified "error" event. (' + er + ')');
- err.context = er;
- throw err;
- }
- }
- }
-
- handler = this._events[type];
-
- if (isUndefined(handler))
- return false;
-
- if (isFunction(handler)) {
- switch (arguments.length) {
- // fast cases
- case 1:
- handler.call(this);
- break;
- case 2:
- handler.call(this, arguments[1]);
- break;
- case 3:
- handler.call(this, arguments[1], arguments[2]);
- break;
- // slower
- default:
- args = Array.prototype.slice.call(arguments, 1);
- handler.apply(this, args);
- }
- } else if (isObject(handler)) {
- args = Array.prototype.slice.call(arguments, 1);
- listeners = handler.slice();
- len = listeners.length;
- for (i = 0; i < len; i++)
- listeners[i].apply(this, args);
- }
-
- return true;
-};
-
-EventEmitter.prototype.addListener = function(type, listener) {
- var m;
-
- if (!isFunction(listener))
- throw TypeError('listener must be a function');
-
- if (!this._events)
- this._events = {};
-
- // To avoid recursion in the case that type === "newListener"! Before
- // adding it to the listeners, first emit "newListener".
- if (this._events.newListener)
- this.emit('newListener', type,
- isFunction(listener.listener) ?
- listener.listener : listener);
-
- if (!this._events[type])
- // Optimize the case of one listener. Don't need the extra array object.
- this._events[type] = listener;
- else if (isObject(this._events[type]))
- // If we've already got an array, just append.
- this._events[type].push(listener);
- else
- // Adding the second element, need to change to array.
- this._events[type] = [this._events[type], listener];
-
- // Check for listener leak
- if (isObject(this._events[type]) && !this._events[type].warned) {
- if (!isUndefined(this._maxListeners)) {
- m = this._maxListeners;
- } else {
- m = EventEmitter.defaultMaxListeners;
- }
-
- if (m && m > 0 && this._events[type].length > m) {
- this._events[type].warned = true;
- console.error('(node) warning: possible EventEmitter memory ' +
- 'leak detected. %d listeners added. ' +
- 'Use emitter.setMaxListeners() to increase limit.',
- this._events[type].length);
- if (typeof console.trace === 'function') {
- // not supported in IE 10
- console.trace();
- }
- }
- }
-
- return this;
-};
-
-EventEmitter.prototype.on = EventEmitter.prototype.addListener;
-
-EventEmitter.prototype.once = function(type, listener) {
- if (!isFunction(listener))
- throw TypeError('listener must be a function');
-
- var fired = false;
-
- function g() {
- this.removeListener(type, g);
-
- if (!fired) {
- fired = true;
- listener.apply(this, arguments);
- }
- }
-
- g.listener = listener;
- this.on(type, g);
-
- return this;
-};
-
-// emits a 'removeListener' event iff the listener was removed
-EventEmitter.prototype.removeListener = function(type, listener) {
- var list, position, length, i;
-
- if (!isFunction(listener))
- throw TypeError('listener must be a function');
-
- if (!this._events || !this._events[type])
- return this;
-
- list = this._events[type];
- length = list.length;
- position = -1;
-
- if (list === listener ||
- (isFunction(list.listener) && list.listener === listener)) {
- delete this._events[type];
- if (this._events.removeListener)
- this.emit('removeListener', type, listener);
-
- } else if (isObject(list)) {
- for (i = length; i-- > 0;) {
- if (list[i] === listener ||
- (list[i].listener && list[i].listener === listener)) {
- position = i;
- break;
- }
- }
-
- if (position < 0)
- return this;
-
- if (list.length === 1) {
- list.length = 0;
- delete this._events[type];
- } else {
- list.splice(position, 1);
- }
-
- if (this._events.removeListener)
- this.emit('removeListener', type, listener);
- }
-
- return this;
-};
-
-EventEmitter.prototype.removeAllListeners = function(type) {
- var key, listeners;
-
- if (!this._events)
- return this;
-
- // not listening for removeListener, no need to emit
- if (!this._events.removeListener) {
- if (arguments.length === 0)
- this._events = {};
- else if (this._events[type])
- delete this._events[type];
- return this;
- }
-
- // emit removeListener for all listeners on all events
- if (arguments.length === 0) {
- for (key in this._events) {
- if (key === 'removeListener') continue;
- this.removeAllListeners(key);
- }
- this.removeAllListeners('removeListener');
- this._events = {};
- return this;
- }
-
- listeners = this._events[type];
-
- if (isFunction(listeners)) {
- this.removeListener(type, listeners);
- } else if (listeners) {
- // LIFO order
- while (listeners.length)
- this.removeListener(type, listeners[listeners.length - 1]);
- }
- delete this._events[type];
-
- return this;
-};
-
-EventEmitter.prototype.listeners = function(type) {
- var ret;
- if (!this._events || !this._events[type])
- ret = [];
- else if (isFunction(this._events[type]))
- ret = [this._events[type]];
- else
- ret = this._events[type].slice();
- return ret;
-};
-
-EventEmitter.prototype.listenerCount = function(type) {
- if (this._events) {
- var evlistener = this._events[type];
-
- if (isFunction(evlistener))
- return 1;
- else if (evlistener)
- return evlistener.length;
- }
- return 0;
-};
-
-EventEmitter.listenerCount = function(emitter, type) {
- return emitter.listenerCount(type);
-};
-
-function isFunction(arg) {
- return typeof arg === 'function';
-}
-
-function isNumber(arg) {
- return typeof arg === 'number';
-}
-
-function isObject(arg) {
- return typeof arg === 'object' && arg !== null;
-}
-
-function isUndefined(arg) {
- return arg === void 0;
-}
-
-
-/***/ }),
-/* 7 */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-
-// CONCATENATED MODULE: ./src/crypt/aes-crypto.js
-function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-var AESCrypto = function () {
- function AESCrypto(subtle, iv) {
- _classCallCheck(this, AESCrypto);
-
- this.subtle = subtle;
- this.aesIV = iv;
- }
-
- AESCrypto.prototype.decrypt = function decrypt(data, key) {
- return this.subtle.decrypt({ name: 'AES-CBC', iv: this.aesIV }, key, data);
- };
-
- return AESCrypto;
-}();
-
-/* harmony default export */ var aes_crypto = (AESCrypto);
-// CONCATENATED MODULE: ./src/crypt/fast-aes-key.js
-function fast_aes_key__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-var FastAESKey = function () {
- function FastAESKey(subtle, key) {
- fast_aes_key__classCallCheck(this, FastAESKey);
-
- this.subtle = subtle;
- this.key = key;
- }
-
- FastAESKey.prototype.expandKey = function expandKey() {
- return this.subtle.importKey('raw', this.key, { name: 'AES-CBC' }, false, ['encrypt', 'decrypt']);
- };
-
- return FastAESKey;
-}();
-
-/* harmony default export */ var fast_aes_key = (FastAESKey);
-// CONCATENATED MODULE: ./src/crypt/aes-decryptor.js
-function aes_decryptor__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-// PKCS7
-function removePadding(buffer) {
- var outputBytes = buffer.byteLength;
- var paddingBytes = outputBytes && new DataView(buffer).getUint8(outputBytes - 1);
- if (paddingBytes) {
- return buffer.slice(0, outputBytes - paddingBytes);
- } else {
- return buffer;
- }
-}
-
-var AESDecryptor = function () {
- function AESDecryptor() {
- aes_decryptor__classCallCheck(this, AESDecryptor);
-
- // Static after running initTable
- this.rcon = [0x0, 0x1, 0x2, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36];
- this.subMix = [new Uint32Array(256), new Uint32Array(256), new Uint32Array(256), new Uint32Array(256)];
- this.invSubMix = [new Uint32Array(256), new Uint32Array(256), new Uint32Array(256), new Uint32Array(256)];
- this.sBox = new Uint32Array(256);
- this.invSBox = new Uint32Array(256);
-
- // Changes during runtime
- this.key = new Uint32Array(0);
-
- this.initTable();
- }
-
- // Using view.getUint32() also swaps the byte order.
-
-
- AESDecryptor.prototype.uint8ArrayToUint32Array_ = function uint8ArrayToUint32Array_(arrayBuffer) {
- var view = new DataView(arrayBuffer);
- var newArray = new Uint32Array(4);
- for (var i = 0; i < 4; i++) {
- newArray[i] = view.getUint32(i * 4);
- }
-
- return newArray;
- };
-
- AESDecryptor.prototype.initTable = function initTable() {
- var sBox = this.sBox;
- var invSBox = this.invSBox;
- var subMix = this.subMix;
- var subMix0 = subMix[0];
- var subMix1 = subMix[1];
- var subMix2 = subMix[2];
- var subMix3 = subMix[3];
- var invSubMix = this.invSubMix;
- var invSubMix0 = invSubMix[0];
- var invSubMix1 = invSubMix[1];
- var invSubMix2 = invSubMix[2];
- var invSubMix3 = invSubMix[3];
-
- var d = new Uint32Array(256);
- var x = 0;
- var xi = 0;
- var i = 0;
- for (i = 0; i < 256; i++) {
- if (i < 128) {
- d[i] = i << 1;
- } else {
- d[i] = i << 1 ^ 0x11b;
- }
- }
-
- for (i = 0; i < 256; i++) {
- var sx = xi ^ xi << 1 ^ xi << 2 ^ xi << 3 ^ xi << 4;
- sx = sx >>> 8 ^ sx & 0xff ^ 0x63;
- sBox[x] = sx;
- invSBox[sx] = x;
-
- // Compute multiplication
- var x2 = d[x];
- var x4 = d[x2];
- var x8 = d[x4];
-
- // Compute sub/invSub bytes, mix columns tables
- var t = d[sx] * 0x101 ^ sx * 0x1010100;
- subMix0[x] = t << 24 | t >>> 8;
- subMix1[x] = t << 16 | t >>> 16;
- subMix2[x] = t << 8 | t >>> 24;
- subMix3[x] = t;
-
- // Compute inv sub bytes, inv mix columns tables
- t = x8 * 0x1010101 ^ x4 * 0x10001 ^ x2 * 0x101 ^ x * 0x1010100;
- invSubMix0[sx] = t << 24 | t >>> 8;
- invSubMix1[sx] = t << 16 | t >>> 16;
- invSubMix2[sx] = t << 8 | t >>> 24;
- invSubMix3[sx] = t;
-
- // Compute next counter
- if (!x) {
- x = xi = 1;
- } else {
- x = x2 ^ d[d[d[x8 ^ x2]]];
- xi ^= d[d[xi]];
- }
- }
- };
-
- AESDecryptor.prototype.expandKey = function expandKey(keyBuffer) {
- // convert keyBuffer to Uint32Array
- var key = this.uint8ArrayToUint32Array_(keyBuffer);
- var sameKey = true;
- var offset = 0;
-
- while (offset < key.length && sameKey) {
- sameKey = key[offset] === this.key[offset];
- offset++;
- }
-
- if (sameKey) {
- return;
- }
-
- this.key = key;
- var keySize = this.keySize = key.length;
-
- if (keySize !== 4 && keySize !== 6 && keySize !== 8) {
- throw new Error('Invalid aes key size=' + keySize);
- }
-
- var ksRows = this.ksRows = (keySize + 6 + 1) * 4;
- var ksRow = void 0;
- var invKsRow = void 0;
-
- var keySchedule = this.keySchedule = new Uint32Array(ksRows);
- var invKeySchedule = this.invKeySchedule = new Uint32Array(ksRows);
- var sbox = this.sBox;
- var rcon = this.rcon;
-
- var invSubMix = this.invSubMix;
- var invSubMix0 = invSubMix[0];
- var invSubMix1 = invSubMix[1];
- var invSubMix2 = invSubMix[2];
- var invSubMix3 = invSubMix[3];
-
- var prev = void 0;
- var t = void 0;
-
- for (ksRow = 0; ksRow < ksRows; ksRow++) {
- if (ksRow < keySize) {
- prev = keySchedule[ksRow] = key[ksRow];
- continue;
- }
- t = prev;
-
- if (ksRow % keySize === 0) {
- // Rot word
- t = t << 8 | t >>> 24;
-
- // Sub word
- t = sbox[t >>> 24] << 24 | sbox[t >>> 16 & 0xff] << 16 | sbox[t >>> 8 & 0xff] << 8 | sbox[t & 0xff];
-
- // Mix Rcon
- t ^= rcon[ksRow / keySize | 0] << 24;
- } else if (keySize > 6 && ksRow % keySize === 4) {
- // Sub word
- t = sbox[t >>> 24] << 24 | sbox[t >>> 16 & 0xff] << 16 | sbox[t >>> 8 & 0xff] << 8 | sbox[t & 0xff];
- }
-
- keySchedule[ksRow] = prev = (keySchedule[ksRow - keySize] ^ t) >>> 0;
- }
-
- for (invKsRow = 0; invKsRow < ksRows; invKsRow++) {
- ksRow = ksRows - invKsRow;
- if (invKsRow & 3) {
- t = keySchedule[ksRow];
- } else {
- t = keySchedule[ksRow - 4];
- }
-
- if (invKsRow < 4 || ksRow <= 4) {
- invKeySchedule[invKsRow] = t;
- } else {
- invKeySchedule[invKsRow] = invSubMix0[sbox[t >>> 24]] ^ invSubMix1[sbox[t >>> 16 & 0xff]] ^ invSubMix2[sbox[t >>> 8 & 0xff]] ^ invSubMix3[sbox[t & 0xff]];
- }
-
- invKeySchedule[invKsRow] = invKeySchedule[invKsRow] >>> 0;
- }
- };
-
- // Adding this as a method greatly improves performance.
-
-
- AESDecryptor.prototype.networkToHostOrderSwap = function networkToHostOrderSwap(word) {
- return word << 24 | (word & 0xff00) << 8 | (word & 0xff0000) >> 8 | word >>> 24;
- };
-
- AESDecryptor.prototype.decrypt = function decrypt(inputArrayBuffer, offset, aesIV, removePKCS7Padding) {
- var nRounds = this.keySize + 6;
- var invKeySchedule = this.invKeySchedule;
- var invSBOX = this.invSBox;
-
- var invSubMix = this.invSubMix;
- var invSubMix0 = invSubMix[0];
- var invSubMix1 = invSubMix[1];
- var invSubMix2 = invSubMix[2];
- var invSubMix3 = invSubMix[3];
-
- var initVector = this.uint8ArrayToUint32Array_(aesIV);
- var initVector0 = initVector[0];
- var initVector1 = initVector[1];
- var initVector2 = initVector[2];
- var initVector3 = initVector[3];
-
- var inputInt32 = new Int32Array(inputArrayBuffer);
- var outputInt32 = new Int32Array(inputInt32.length);
-
- var t0 = void 0,
- t1 = void 0,
- t2 = void 0,
- t3 = void 0;
- var s0 = void 0,
- s1 = void 0,
- s2 = void 0,
- s3 = void 0;
- var inputWords0 = void 0,
- inputWords1 = void 0,
- inputWords2 = void 0,
- inputWords3 = void 0;
-
- var ksRow = void 0,
- i = void 0;
- var swapWord = this.networkToHostOrderSwap;
-
- while (offset < inputInt32.length) {
- inputWords0 = swapWord(inputInt32[offset]);
- inputWords1 = swapWord(inputInt32[offset + 1]);
- inputWords2 = swapWord(inputInt32[offset + 2]);
- inputWords3 = swapWord(inputInt32[offset + 3]);
-
- s0 = inputWords0 ^ invKeySchedule[0];
- s1 = inputWords3 ^ invKeySchedule[1];
- s2 = inputWords2 ^ invKeySchedule[2];
- s3 = inputWords1 ^ invKeySchedule[3];
-
- ksRow = 4;
-
- // Iterate through the rounds of decryption
- for (i = 1; i < nRounds; i++) {
- t0 = invSubMix0[s0 >>> 24] ^ invSubMix1[s1 >> 16 & 0xff] ^ invSubMix2[s2 >> 8 & 0xff] ^ invSubMix3[s3 & 0xff] ^ invKeySchedule[ksRow];
- t1 = invSubMix0[s1 >>> 24] ^ invSubMix1[s2 >> 16 & 0xff] ^ invSubMix2[s3 >> 8 & 0xff] ^ invSubMix3[s0 & 0xff] ^ invKeySchedule[ksRow + 1];
- t2 = invSubMix0[s2 >>> 24] ^ invSubMix1[s3 >> 16 & 0xff] ^ invSubMix2[s0 >> 8 & 0xff] ^ invSubMix3[s1 & 0xff] ^ invKeySchedule[ksRow + 2];
- t3 = invSubMix0[s3 >>> 24] ^ invSubMix1[s0 >> 16 & 0xff] ^ invSubMix2[s1 >> 8 & 0xff] ^ invSubMix3[s2 & 0xff] ^ invKeySchedule[ksRow + 3];
- // Update state
- s0 = t0;
- s1 = t1;
- s2 = t2;
- s3 = t3;
-
- ksRow = ksRow + 4;
- }
-
- // Shift rows, sub bytes, add round key
- t0 = invSBOX[s0 >>> 24] << 24 ^ invSBOX[s1 >> 16 & 0xff] << 16 ^ invSBOX[s2 >> 8 & 0xff] << 8 ^ invSBOX[s3 & 0xff] ^ invKeySchedule[ksRow];
- t1 = invSBOX[s1 >>> 24] << 24 ^ invSBOX[s2 >> 16 & 0xff] << 16 ^ invSBOX[s3 >> 8 & 0xff] << 8 ^ invSBOX[s0 & 0xff] ^ invKeySchedule[ksRow + 1];
- t2 = invSBOX[s2 >>> 24] << 24 ^ invSBOX[s3 >> 16 & 0xff] << 16 ^ invSBOX[s0 >> 8 & 0xff] << 8 ^ invSBOX[s1 & 0xff] ^ invKeySchedule[ksRow + 2];
- t3 = invSBOX[s3 >>> 24] << 24 ^ invSBOX[s0 >> 16 & 0xff] << 16 ^ invSBOX[s1 >> 8 & 0xff] << 8 ^ invSBOX[s2 & 0xff] ^ invKeySchedule[ksRow + 3];
- ksRow = ksRow + 3;
-
- // Write
- outputInt32[offset] = swapWord(t0 ^ initVector0);
- outputInt32[offset + 1] = swapWord(t3 ^ initVector1);
- outputInt32[offset + 2] = swapWord(t2 ^ initVector2);
- outputInt32[offset + 3] = swapWord(t1 ^ initVector3);
-
- // reset initVector to last 4 unsigned int
- initVector0 = inputWords0;
- initVector1 = inputWords1;
- initVector2 = inputWords2;
- initVector3 = inputWords3;
-
- offset = offset + 4;
- }
-
- return removePKCS7Padding ? removePadding(outputInt32.buffer) : outputInt32.buffer;
- };
-
- AESDecryptor.prototype.destroy = function destroy() {
- this.key = undefined;
- this.keySize = undefined;
- this.ksRows = undefined;
-
- this.sBox = undefined;
- this.invSBox = undefined;
- this.subMix = undefined;
- this.invSubMix = undefined;
- this.keySchedule = undefined;
- this.invKeySchedule = undefined;
-
- this.rcon = undefined;
- };
-
- return AESDecryptor;
-}();
-
-/* harmony default export */ var aes_decryptor = (AESDecryptor);
-// EXTERNAL MODULE: ./src/errors.js
-var errors = __webpack_require__(2);
-
-// EXTERNAL MODULE: ./src/utils/logger.js
-var logger = __webpack_require__(0);
-
-// EXTERNAL MODULE: ./src/events.js
-var events = __webpack_require__(1);
-
-// EXTERNAL MODULE: ./src/utils/get-self-scope.js
-var get_self_scope = __webpack_require__(3);
-
-// CONCATENATED MODULE: ./src/crypt/decrypter.js
-function decrypter__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-
-
-
-
-
-
-
-
-
-
-
-// see https://stackoverflow.com/a/11237259/589493
-var global = Object(get_self_scope["a" /* getSelfScope */])(); // safeguard for code that might run both on worker and main thread
-
-var decrypter_Decrypter = function () {
- function Decrypter(observer, config) {
- var _ref = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {},
- _ref$removePKCS7Paddi = _ref.removePKCS7Padding,
- removePKCS7Padding = _ref$removePKCS7Paddi === undefined ? true : _ref$removePKCS7Paddi;
-
- decrypter__classCallCheck(this, Decrypter);
-
- this.logEnabled = true;
- this.observer = observer;
- this.config = config;
- this.removePKCS7Padding = removePKCS7Padding;
- // built in decryptor expects PKCS7 padding
- if (removePKCS7Padding) {
- try {
- var browserCrypto = global.crypto;
- if (browserCrypto) {
- this.subtle = browserCrypto.subtle || browserCrypto.webkitSubtle;
- }
- } catch (e) {}
- }
- this.disableWebCrypto = !this.subtle;
- }
-
- Decrypter.prototype.isSync = function isSync() {
- return this.disableWebCrypto && this.config.enableSoftwareAES;
- };
-
- Decrypter.prototype.decrypt = function decrypt(data, key, iv, callback) {
- var _this = this;
-
- if (this.disableWebCrypto && this.config.enableSoftwareAES) {
- if (this.logEnabled) {
- logger["b" /* logger */].log('JS AES decrypt');
- this.logEnabled = false;
- }
- var decryptor = this.decryptor;
- if (!decryptor) {
- this.decryptor = decryptor = new aes_decryptor();
- }
-
- decryptor.expandKey(key);
- callback(decryptor.decrypt(data, 0, iv, this.removePKCS7Padding));
- } else {
- if (this.logEnabled) {
- logger["b" /* logger */].log('WebCrypto AES decrypt');
- this.logEnabled = false;
- }
- var subtle = this.subtle;
- if (this.key !== key) {
- this.key = key;
- this.fastAesKey = new fast_aes_key(subtle, key);
- }
-
- this.fastAesKey.expandKey().then(function (aesKey) {
- // decrypt using web crypto
- var crypto = new aes_crypto(subtle, iv);
- crypto.decrypt(data, aesKey).catch(function (err) {
- _this.onWebCryptoError(err, data, key, iv, callback);
- }).then(function (result) {
- callback(result);
- });
- }).catch(function (err) {
- _this.onWebCryptoError(err, data, key, iv, callback);
- });
- }
- };
-
- Decrypter.prototype.onWebCryptoError = function onWebCryptoError(err, data, key, iv, callback) {
- if (this.config.enableSoftwareAES) {
- logger["b" /* logger */].log('WebCrypto Error, disable WebCrypto API');
- this.disableWebCrypto = true;
- this.logEnabled = true;
- this.decrypt(data, key, iv, callback);
- } else {
- logger["b" /* logger */].error('decrypting error : ' + err.message);
- this.observer.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].MEDIA_ERROR, details: errors["a" /* ErrorDetails */].FRAG_DECRYPT_ERROR, fatal: true, reason: err.message });
- }
- };
-
- Decrypter.prototype.destroy = function destroy() {
- var decryptor = this.decryptor;
- if (decryptor) {
- decryptor.destroy();
- this.decryptor = undefined;
- }
- };
-
- return Decrypter;
-}();
-
-/* harmony default export */ var decrypter = __webpack_exports__["a"] = (decrypter_Decrypter);
-
-/***/ }),
-/* 8 */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__utils_logger__ = __webpack_require__(0);
-/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__events__ = __webpack_require__(1);
-function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * MP4 demuxer
- */
-
-
-
-var UINT32_MAX = Math.pow(2, 32) - 1;
-
-var MP4Demuxer = function () {
- function MP4Demuxer(observer, remuxer) {
- _classCallCheck(this, MP4Demuxer);
-
- this.observer = observer;
- this.remuxer = remuxer;
- }
-
- MP4Demuxer.prototype.resetTimeStamp = function resetTimeStamp(initPTS) {
- this.initPTS = initPTS;
- };
-
- MP4Demuxer.prototype.resetInitSegment = function resetInitSegment(initSegment, audioCodec, videoCodec, duration) {
- // jshint unused:false
- if (initSegment && initSegment.byteLength) {
- var initData = this.initData = MP4Demuxer.parseInitSegment(initSegment);
-
- // default audio codec if nothing specified
- // TODO : extract that from initsegment
- if (audioCodec == null) {
- audioCodec = 'mp4a.40.5';
- }
-
- if (videoCodec == null) {
- videoCodec = 'avc1.42e01e';
- }
-
- var tracks = {};
- if (initData.audio && initData.video) {
- tracks.audiovideo = { container: 'video/mp4', codec: audioCodec + ',' + videoCodec, initSegment: duration ? initSegment : null };
- } else {
- if (initData.audio) {
- tracks.audio = { container: 'audio/mp4', codec: audioCodec, initSegment: duration ? initSegment : null };
- }
-
- if (initData.video) {
- tracks.video = { container: 'video/mp4', codec: videoCodec, initSegment: duration ? initSegment : null };
- }
- }
- this.observer.trigger(__WEBPACK_IMPORTED_MODULE_1__events__["a" /* default */].FRAG_PARSING_INIT_SEGMENT, { tracks: tracks });
- } else {
- if (audioCodec) {
- this.audioCodec = audioCodec;
- }
-
- if (videoCodec) {
- this.videoCodec = videoCodec;
- }
- }
- };
-
- MP4Demuxer.probe = function probe(data) {
- // ensure we find a moof box in the first 16 kB
- return MP4Demuxer.findBox({ data: data, start: 0, end: Math.min(data.length, 16384) }, ['moof']).length > 0;
- };
-
- MP4Demuxer.bin2str = function bin2str(buffer) {
- return String.fromCharCode.apply(null, buffer);
- };
-
- MP4Demuxer.readUint16 = function readUint16(buffer, offset) {
- if (buffer.data) {
- offset += buffer.start;
- buffer = buffer.data;
- }
-
- var val = buffer[offset] << 8 | buffer[offset + 1];
-
- return val < 0 ? 65536 + val : val;
- };
-
- MP4Demuxer.readUint32 = function readUint32(buffer, offset) {
- if (buffer.data) {
- offset += buffer.start;
- buffer = buffer.data;
- }
-
- var val = buffer[offset] << 24 | buffer[offset + 1] << 16 | buffer[offset + 2] << 8 | buffer[offset + 3];
- return val < 0 ? 4294967296 + val : val;
- };
-
- MP4Demuxer.writeUint32 = function writeUint32(buffer, offset, value) {
- if (buffer.data) {
- offset += buffer.start;
- buffer = buffer.data;
- }
- buffer[offset] = value >> 24;
- buffer[offset + 1] = value >> 16 & 0xff;
- buffer[offset + 2] = value >> 8 & 0xff;
- buffer[offset + 3] = value & 0xff;
- };
-
- // Find the data for a box specified by its path
-
-
- MP4Demuxer.findBox = function findBox(data, path) {
- var results = [],
- i = void 0,
- size = void 0,
- type = void 0,
- end = void 0,
- subresults = void 0,
- start = void 0,
- endbox = void 0;
-
- if (data.data) {
- start = data.start;
- end = data.end;
- data = data.data;
- } else {
- start = 0;
- end = data.byteLength;
- }
-
- if (!path.length) {
- // short-circuit the search for empty paths
- return null;
- }
-
- for (i = start; i < end;) {
- size = MP4Demuxer.readUint32(data, i);
- type = MP4Demuxer.bin2str(data.subarray(i + 4, i + 8));
- endbox = size > 1 ? i + size : end;
-
- if (type === path[0]) {
- if (path.length === 1) {
- // this is the end of the path and we've found the box we were
- // looking for
- results.push({ data: data, start: i + 8, end: endbox });
- } else {
- // recursively search for the next box along the path
- subresults = MP4Demuxer.findBox({ data: data, start: i + 8, end: endbox }, path.slice(1));
- if (subresults.length) {
- results = results.concat(subresults);
- }
- }
- }
- i = endbox;
- }
-
- // we've finished searching all of data
- return results;
- };
-
- MP4Demuxer.parseSegmentIndex = function parseSegmentIndex(initSegment) {
- var moov = MP4Demuxer.findBox(initSegment, ['moov'])[0];
- var moovEndOffset = moov ? moov.end : null; // we need this in case we need to chop of garbage of the end of current data
-
- var index = 0;
- var sidx = MP4Demuxer.findBox(initSegment, ['sidx']);
- var references = void 0;
-
- if (!sidx || !sidx[0]) {
- return null;
- }
-
- references = [];
- sidx = sidx[0];
-
- var version = sidx.data[0];
-
- // set initial offset, we skip the reference ID (not needed)
- index = version === 0 ? 8 : 16;
-
- var timescale = MP4Demuxer.readUint32(sidx, index);
- index += 4;
-
- // TODO: parse earliestPresentationTime and firstOffset
- // usually zero in our case
- var earliestPresentationTime = 0;
- var firstOffset = 0;
-
- if (version === 0) {
- index += 8;
- } else {
- index += 16;
- }
-
- // skip reserved
- index += 2;
-
- var startByte = sidx.end + firstOffset;
-
- var referencesCount = MP4Demuxer.readUint16(sidx, index);
- index += 2;
-
- for (var i = 0; i < referencesCount; i++) {
- var referenceIndex = index;
-
- var referenceInfo = MP4Demuxer.readUint32(sidx, referenceIndex);
- referenceIndex += 4;
-
- var referenceSize = referenceInfo & 0x7FFFFFFF;
- var referenceType = (referenceInfo & 0x80000000) >>> 31;
-
- if (referenceType === 1) {
- console.warn('SIDX has hierarchical references (not supported)');
- return;
- }
-
- var subsegmentDuration = MP4Demuxer.readUint32(sidx, referenceIndex);
- referenceIndex += 4;
-
- references.push({
- referenceSize: referenceSize,
- subsegmentDuration: subsegmentDuration, // unscaled
- info: {
- duration: subsegmentDuration / timescale,
- start: startByte,
- end: startByte + referenceSize - 1
- }
- });
-
- startByte += referenceSize;
-
- // Skipping 1 bit for |startsWithSap|, 3 bits for |sapType|, and 28 bits
- // for |sapDelta|.
- referenceIndex += 4;
-
- // skip to next ref
- index = referenceIndex;
- }
-
- return {
- earliestPresentationTime: earliestPresentationTime,
- timescale: timescale,
- version: version,
- referencesCount: referencesCount,
- references: references,
- moovEndOffset: moovEndOffset
- };
- };
-
- /**
- * Parses an MP4 initialization segment and extracts stream type and
- * timescale values for any declared tracks. Timescale values indicate the
- * number of clock ticks per second to assume for time-based values
- * elsewhere in the MP4.
- *
- * To determine the start time of an MP4, you need two pieces of
- * information: the timescale unit and the earliest base media decode
- * time. Multiple timescales can be specified within an MP4 but the
- * base media decode time is always expressed in the timescale from
- * the media header box for the track:
- * ```
- * moov > trak > mdia > mdhd.timescale
- * moov > trak > mdia > hdlr
- * ```
- * @param init {Uint8Array} the bytes of the init segment
- * @return {object} a hash of track type to timescale values or null if
- * the init segment is malformed.
- */
-
-
- MP4Demuxer.parseInitSegment = function parseInitSegment(initSegment) {
- var result = [];
- var traks = MP4Demuxer.findBox(initSegment, ['moov', 'trak']);
-
- traks.forEach(function (trak) {
- var tkhd = MP4Demuxer.findBox(trak, ['tkhd'])[0];
- if (tkhd) {
- var version = tkhd.data[tkhd.start];
- var index = version === 0 ? 12 : 20;
- var trackId = MP4Demuxer.readUint32(tkhd, index);
-
- var mdhd = MP4Demuxer.findBox(trak, ['mdia', 'mdhd'])[0];
- if (mdhd) {
- version = mdhd.data[mdhd.start];
- index = version === 0 ? 12 : 20;
- var timescale = MP4Demuxer.readUint32(mdhd, index);
-
- var hdlr = MP4Demuxer.findBox(trak, ['mdia', 'hdlr'])[0];
- if (hdlr) {
- var hdlrType = MP4Demuxer.bin2str(hdlr.data.subarray(hdlr.start + 8, hdlr.start + 12));
- var type = { 'soun': 'audio', 'vide': 'video' }[hdlrType];
- if (type) {
- // extract codec info. TODO : parse codec details to be able to build MIME type
- var codecBox = MP4Demuxer.findBox(trak, ['mdia', 'minf', 'stbl', 'stsd']);
- if (codecBox.length) {
- codecBox = codecBox[0];
- var codecType = MP4Demuxer.bin2str(codecBox.data.subarray(codecBox.start + 12, codecBox.start + 16));
- __WEBPACK_IMPORTED_MODULE_0__utils_logger__["b" /* logger */].log('MP4Demuxer:' + type + ':' + codecType + ' found');
- }
- result[trackId] = { timescale: timescale, type: type };
- result[type] = { timescale: timescale, id: trackId };
- }
- }
- }
- }
- });
- return result;
- };
-
- /**
- * Determine the base media decode start time, in seconds, for an MP4
- * fragment. If multiple fragments are specified, the earliest time is
- * returned.
- *
- * The base media decode time can be parsed from track fragment
- * metadata:
- * ```
- * moof > traf > tfdt.baseMediaDecodeTime
- * ```
- * It requires the timescale value from the mdhd to interpret.
- *
- * @param timescale {object} a hash of track ids to timescale values.
- * @return {number} the earliest base media decode start time for the
- * fragment, in seconds
- */
-
-
- MP4Demuxer.getStartDTS = function getStartDTS(initData, fragment) {
- var trafs = void 0,
- baseTimes = void 0,
- result = void 0;
-
- // we need info from two childrend of each track fragment box
- trafs = MP4Demuxer.findBox(fragment, ['moof', 'traf']);
-
- // determine the start times for each track
- baseTimes = [].concat.apply([], trafs.map(function (traf) {
- return MP4Demuxer.findBox(traf, ['tfhd']).map(function (tfhd) {
- var id = void 0,
- scale = void 0,
- baseTime = void 0;
-
- // get the track id from the tfhd
- id = MP4Demuxer.readUint32(tfhd, 4);
- // assume a 90kHz clock if no timescale was specified
- scale = initData[id].timescale || 90e3;
-
- // get the base media decode time from the tfdt
- baseTime = MP4Demuxer.findBox(traf, ['tfdt']).map(function (tfdt) {
- var version = void 0,
- result = void 0;
-
- version = tfdt.data[tfdt.start];
- result = MP4Demuxer.readUint32(tfdt, 4);
- if (version === 1) {
- result *= Math.pow(2, 32);
-
- result += MP4Demuxer.readUint32(tfdt, 8);
- }
- return result;
- })[0];
- // convert base time to seconds
- return baseTime / scale;
- });
- }));
-
- // return the minimum
- result = Math.min.apply(null, baseTimes);
- return isFinite(result) ? result : 0;
- };
-
- MP4Demuxer.offsetStartDTS = function offsetStartDTS(initData, fragment, timeOffset) {
- MP4Demuxer.findBox(fragment, ['moof', 'traf']).map(function (traf) {
- return MP4Demuxer.findBox(traf, ['tfhd']).map(function (tfhd) {
- // get the track id from the tfhd
- var id = MP4Demuxer.readUint32(tfhd, 4);
- // assume a 90kHz clock if no timescale was specified
- var timescale = initData[id].timescale || 90e3;
-
- // get the base media decode time from the tfdt
- MP4Demuxer.findBox(traf, ['tfdt']).map(function (tfdt) {
- var version = tfdt.data[tfdt.start];
- var baseMediaDecodeTime = MP4Demuxer.readUint32(tfdt, 4);
- if (version === 0) {
- MP4Demuxer.writeUint32(tfdt, 4, baseMediaDecodeTime - timeOffset * timescale);
- } else {
- baseMediaDecodeTime *= Math.pow(2, 32);
- baseMediaDecodeTime += MP4Demuxer.readUint32(tfdt, 8);
- baseMediaDecodeTime -= timeOffset * timescale;
- baseMediaDecodeTime = Math.max(baseMediaDecodeTime, 0);
- var upper = Math.floor(baseMediaDecodeTime / (UINT32_MAX + 1));
- var lower = Math.floor(baseMediaDecodeTime % (UINT32_MAX + 1));
- MP4Demuxer.writeUint32(tfdt, 4, upper);
- MP4Demuxer.writeUint32(tfdt, 8, lower);
- }
- });
- });
- });
- };
-
- // feed incoming data to the front of the parsing pipeline
-
-
- MP4Demuxer.prototype.append = function append(data, timeOffset, contiguous, accurateTimeOffset) {
- var initData = this.initData;
- if (!initData) {
- this.resetInitSegment(data, this.audioCodec, this.videoCodec, false);
- initData = this.initData;
- }
- var startDTS = void 0,
- initPTS = this.initPTS;
- if (initPTS === undefined) {
- var _startDTS = MP4Demuxer.getStartDTS(initData, data);
- this.initPTS = initPTS = _startDTS - timeOffset;
- this.observer.trigger(__WEBPACK_IMPORTED_MODULE_1__events__["a" /* default */].INIT_PTS_FOUND, { initPTS: initPTS });
- }
- MP4Demuxer.offsetStartDTS(initData, data, initPTS);
- startDTS = MP4Demuxer.getStartDTS(initData, data);
- this.remuxer.remux(initData.audio, initData.video, null, null, startDTS, contiguous, accurateTimeOffset, data);
- };
-
- MP4Demuxer.prototype.destroy = function destroy() {};
-
- return MP4Demuxer;
-}();
-
-/* harmony default export */ __webpack_exports__["a"] = (MP4Demuxer);
-
-/***/ }),
-/* 9 */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-
-// EXTERNAL MODULE: ./src/events.js
-var events = __webpack_require__(1);
-
-// EXTERNAL MODULE: ./src/errors.js
-var errors = __webpack_require__(2);
-
-// EXTERNAL MODULE: ./src/crypt/decrypter.js + 3 modules
-var crypt_decrypter = __webpack_require__(7);
-
-// EXTERNAL MODULE: ./src/utils/logger.js
-var logger = __webpack_require__(0);
-
-// EXTERNAL MODULE: ./src/utils/get-self-scope.js
-var get_self_scope = __webpack_require__(3);
-
-// CONCATENATED MODULE: ./src/demux/adts.js
-/**
- * ADTS parser helper
- */
-
-
-
-
-
-
-
-function getAudioConfig(observer, data, offset, audioCodec) {
- var adtsObjectType = void 0,
- // :int
- adtsSampleingIndex = void 0,
- // :int
- adtsExtensionSampleingIndex = void 0,
- // :int
- adtsChanelConfig = void 0,
- // :int
- config = void 0,
- userAgent = navigator.userAgent.toLowerCase(),
- manifestCodec = audioCodec,
- adtsSampleingRates = [96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050, 16000, 12000, 11025, 8000, 7350];
- // byte 2
- adtsObjectType = ((data[offset + 2] & 0xC0) >>> 6) + 1;
- adtsSampleingIndex = (data[offset + 2] & 0x3C) >>> 2;
- if (adtsSampleingIndex > adtsSampleingRates.length - 1) {
- observer.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].MEDIA_ERROR, details: errors["a" /* ErrorDetails */].FRAG_PARSING_ERROR, fatal: true, reason: 'invalid ADTS sampling index:' + adtsSampleingIndex });
- return;
- }
- adtsChanelConfig = (data[offset + 2] & 0x01) << 2;
- // byte 3
- adtsChanelConfig |= (data[offset + 3] & 0xC0) >>> 6;
- logger["b" /* logger */].log('manifest codec:' + audioCodec + ',ADTS data:type:' + adtsObjectType + ',sampleingIndex:' + adtsSampleingIndex + '[' + adtsSampleingRates[adtsSampleingIndex] + 'Hz],channelConfig:' + adtsChanelConfig);
- // firefox: freq less than 24kHz = AAC SBR (HE-AAC)
- if (/firefox/i.test(userAgent)) {
- if (adtsSampleingIndex >= 6) {
- adtsObjectType = 5;
- config = new Array(4);
- // HE-AAC uses SBR (Spectral Band Replication) , high frequencies are constructed from low frequencies
- // there is a factor 2 between frame sample rate and output sample rate
- // multiply frequency by 2 (see table below, equivalent to substract 3)
- adtsExtensionSampleingIndex = adtsSampleingIndex - 3;
- } else {
- adtsObjectType = 2;
- config = new Array(2);
- adtsExtensionSampleingIndex = adtsSampleingIndex;
- }
- // Android : always use AAC
- } else if (userAgent.indexOf('android') !== -1) {
- adtsObjectType = 2;
- config = new Array(2);
- adtsExtensionSampleingIndex = adtsSampleingIndex;
- } else {
- /* for other browsers (Chrome/Vivaldi/Opera ...)
- always force audio type to be HE-AAC SBR, as some browsers do not support audio codec switch properly (like Chrome ...)
- */
- adtsObjectType = 5;
- config = new Array(4);
- // if (manifest codec is HE-AAC or HE-AACv2) OR (manifest codec not specified AND frequency less than 24kHz)
- if (audioCodec && (audioCodec.indexOf('mp4a.40.29') !== -1 || audioCodec.indexOf('mp4a.40.5') !== -1) || !audioCodec && adtsSampleingIndex >= 6) {
- // HE-AAC uses SBR (Spectral Band Replication) , high frequencies are constructed from low frequencies
- // there is a factor 2 between frame sample rate and output sample rate
- // multiply frequency by 2 (see table below, equivalent to substract 3)
- adtsExtensionSampleingIndex = adtsSampleingIndex - 3;
- } else {
- // if (manifest codec is AAC) AND (frequency less than 24kHz AND nb channel is 1) OR (manifest codec not specified and mono audio)
- // Chrome fails to play back with low frequency AAC LC mono when initialized with HE-AAC. This is not a problem with stereo.
- if (audioCodec && audioCodec.indexOf('mp4a.40.2') !== -1 && (adtsSampleingIndex >= 6 && adtsChanelConfig === 1 || /vivaldi/i.test(userAgent)) || !audioCodec && adtsChanelConfig === 1) {
- adtsObjectType = 2;
- config = new Array(2);
- }
- adtsExtensionSampleingIndex = adtsSampleingIndex;
- }
- }
- /* refer to http://wiki.multimedia.cx/index.php?title=MPEG-4_Audio#Audio_Specific_Config
- ISO 14496-3 (AAC).pdf - Table 1.13 — Syntax of AudioSpecificConfig()
- Audio Profile / Audio Object Type
- 0: Null
- 1: AAC Main
- 2: AAC LC (Low Complexity)
- 3: AAC SSR (Scalable Sample Rate)
- 4: AAC LTP (Long Term Prediction)
- 5: SBR (Spectral Band Replication)
- 6: AAC Scalable
- sampling freq
- 0: 96000 Hz
- 1: 88200 Hz
- 2: 64000 Hz
- 3: 48000 Hz
- 4: 44100 Hz
- 5: 32000 Hz
- 6: 24000 Hz
- 7: 22050 Hz
- 8: 16000 Hz
- 9: 12000 Hz
- 10: 11025 Hz
- 11: 8000 Hz
- 12: 7350 Hz
- 13: Reserved
- 14: Reserved
- 15: frequency is written explictly
- Channel Configurations
- These are the channel configurations:
- 0: Defined in AOT Specifc Config
- 1: 1 channel: front-center
- 2: 2 channels: front-left, front-right
- */
- // audioObjectType = profile => profile, the MPEG-4 Audio Object Type minus 1
- config[0] = adtsObjectType << 3;
- // samplingFrequencyIndex
- config[0] |= (adtsSampleingIndex & 0x0E) >> 1;
- config[1] |= (adtsSampleingIndex & 0x01) << 7;
- // channelConfiguration
- config[1] |= adtsChanelConfig << 3;
- if (adtsObjectType === 5) {
- // adtsExtensionSampleingIndex
- config[1] |= (adtsExtensionSampleingIndex & 0x0E) >> 1;
- config[2] = (adtsExtensionSampleingIndex & 0x01) << 7;
- // adtsObjectType (force to 2, chrome is checking that object type is less than 5 ???
- // https://chromium.googlesource.com/chromium/src.git/+/master/media/formats/mp4/aac.cc
- config[2] |= 2 << 2;
- config[3] = 0;
- }
- return { config: config, samplerate: adtsSampleingRates[adtsSampleingIndex], channelCount: adtsChanelConfig, codec: 'mp4a.40.' + adtsObjectType, manifestCodec: manifestCodec };
-}
-
-function isHeaderPattern(data, offset) {
- return data[offset] === 0xff && (data[offset + 1] & 0xf6) === 0xf0;
-}
-
-function getHeaderLength(data, offset) {
- return data[offset + 1] & 0x01 ? 7 : 9;
-}
-
-function getFullFrameLength(data, offset) {
- return (data[offset + 3] & 0x03) << 11 | data[offset + 4] << 3 | (data[offset + 5] & 0xE0) >>> 5;
-}
-
-function isHeader(data, offset) {
- // Look for ADTS header | 1111 1111 | 1111 X00X | where X can be either 0 or 1
- // Layer bits (position 14 and 15) in header should be always 0 for ADTS
- // More info https://wiki.multimedia.cx/index.php?title=ADTS
- if (offset + 1 < data.length && isHeaderPattern(data, offset)) {
- return true;
- }
-
- return false;
-}
-
-function adts_probe(data, offset) {
- // same as isHeader but we also check that ADTS frame follows last ADTS frame
- // or end of data is reached
- if (offset + 1 < data.length && isHeaderPattern(data, offset)) {
- // ADTS header Length
- var headerLength = getHeaderLength(data, offset);
- // ADTS frame Length
- var frameLength = headerLength;
- if (offset + 5 < data.length) {
- frameLength = getFullFrameLength(data, offset);
- }
-
- var newOffset = offset + frameLength;
- if (newOffset === data.length || newOffset + 1 < data.length && isHeaderPattern(data, newOffset)) {
- return true;
- }
- }
- return false;
-}
-
-function initTrackConfig(track, observer, data, offset, audioCodec) {
- if (!track.samplerate) {
- var config = getAudioConfig(observer, data, offset, audioCodec);
- track.config = config.config;
- track.samplerate = config.samplerate;
- track.channelCount = config.channelCount;
- track.codec = config.codec;
- track.manifestCodec = config.manifestCodec;
- logger["b" /* logger */].log('parsed codec:' + track.codec + ',rate:' + config.samplerate + ',nb channel:' + config.channelCount);
- }
-}
-
-function getFrameDuration(samplerate) {
- return 1024 * 90000 / samplerate;
-}
-
-function parseFrameHeader(data, offset, pts, frameIndex, frameDuration) {
- var headerLength = void 0,
- frameLength = void 0,
- stamp = void 0;
- var length = data.length;
-
- // The protection skip bit tells us if we have 2 bytes of CRC data at the end of the ADTS header
- headerLength = getHeaderLength(data, offset);
- // retrieve frame size
- frameLength = getFullFrameLength(data, offset);
- frameLength -= headerLength;
-
- if (frameLength > 0 && offset + headerLength + frameLength <= length) {
- stamp = pts + frameIndex * frameDuration;
- // logger.log(`AAC frame, offset/length/total/pts:${offset+headerLength}/${frameLength}/${data.byteLength}/${(stamp/90).toFixed(0)}`);
- return { headerLength: headerLength, frameLength: frameLength, stamp: stamp };
- }
-
- return undefined;
-}
-
-function appendFrame(track, data, offset, pts, frameIndex) {
- var frameDuration = getFrameDuration(track.samplerate);
- var header = parseFrameHeader(data, offset, pts, frameIndex, frameDuration);
- if (header) {
- var stamp = header.stamp;
- var headerLength = header.headerLength;
- var frameLength = header.frameLength;
-
- // logger.log(`AAC frame, offset/length/total/pts:${offset+headerLength}/${frameLength}/${data.byteLength}/${(stamp/90).toFixed(0)}`);
- var aacSample = {
- unit: data.subarray(offset + headerLength, offset + headerLength + frameLength),
- pts: stamp,
- dts: stamp
- };
-
- track.samples.push(aacSample);
- track.len += frameLength;
-
- return { sample: aacSample, length: frameLength + headerLength };
- }
-
- return undefined;
-}
-// EXTERNAL MODULE: ./src/demux/id3.js
-var id3 = __webpack_require__(5);
-
-// CONCATENATED MODULE: ./src/demux/aacdemuxer.js
-function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * AAC demuxer
- */
-
-
-
-
-var aacdemuxer_AACDemuxer = function () {
- function AACDemuxer(observer, remuxer, config) {
- _classCallCheck(this, AACDemuxer);
-
- this.observer = observer;
- this.config = config;
- this.remuxer = remuxer;
- }
-
- AACDemuxer.prototype.resetInitSegment = function resetInitSegment(initSegment, audioCodec, videoCodec, duration) {
- this._audioTrack = { container: 'audio/adts', type: 'audio', id: 0, sequenceNumber: 0, isAAC: true, samples: [], len: 0, manifestCodec: audioCodec, duration: duration, inputTimeScale: 90000 };
- };
-
- AACDemuxer.prototype.resetTimeStamp = function resetTimeStamp() {};
-
- AACDemuxer.probe = function probe(data) {
- if (!data) {
- return false;
- }
-
- // Check for the ADTS sync word
- // Look for ADTS header | 1111 1111 | 1111 X00X | where X can be either 0 or 1
- // Layer bits (position 14 and 15) in header should be always 0 for ADTS
- // More info https://wiki.multimedia.cx/index.php?title=ADTS
- var id3Data = id3["a" /* default */].getID3Data(data, 0) || [];
- var offset = id3Data.length;
-
- for (var length = data.length; offset < length; offset++) {
- if (adts_probe(data, offset)) {
- logger["b" /* logger */].log('ADTS sync word found !');
- return true;
- }
- }
- return false;
- };
-
- // feed incoming data to the front of the parsing pipeline
-
-
- AACDemuxer.prototype.append = function append(data, timeOffset, contiguous, accurateTimeOffset) {
- var track = this._audioTrack;
- var id3Data = id3["a" /* default */].getID3Data(data, 0) || [];
- var timestamp = id3["a" /* default */].getTimeStamp(id3Data);
- var pts = timestamp ? 90 * timestamp : timeOffset * 90000;
- var frameIndex = 0;
- var stamp = pts;
- var length = data.length;
- var offset = id3Data.length;
-
- var id3Samples = [{ pts: stamp, dts: stamp, data: id3Data }];
-
- while (offset < length - 1) {
- if (isHeader(data, offset) && offset + 5 < length) {
- initTrackConfig(track, this.observer, data, offset, track.manifestCodec);
- var frame = appendFrame(track, data, offset, pts, frameIndex);
- if (frame) {
- offset += frame.length;
- stamp = frame.sample.pts;
- frameIndex++;
- } else {
- logger["b" /* logger */].log('Unable to parse AAC frame');
- break;
- }
- } else if (id3["a" /* default */].isHeader(data, offset)) {
- id3Data = id3["a" /* default */].getID3Data(data, offset);
- id3Samples.push({ pts: stamp, dts: stamp, data: id3Data });
- offset += id3Data.length;
- } else {
- // nothing found, keep looking
- offset++;
- }
- }
-
- this.remuxer.remux(track, { samples: [] }, { samples: id3Samples, inputTimeScale: 90000 }, { samples: [] }, timeOffset, contiguous, accurateTimeOffset);
- };
-
- AACDemuxer.prototype.destroy = function destroy() {};
-
- return AACDemuxer;
-}();
-
-/* harmony default export */ var aacdemuxer = (aacdemuxer_AACDemuxer);
-// EXTERNAL MODULE: ./src/demux/mp4demuxer.js
-var mp4demuxer = __webpack_require__(8);
-
-// CONCATENATED MODULE: ./src/demux/mpegaudio.js
-/**
- * MPEG parser helper
- */
-
-var MpegAudio = {
-
- BitratesMap: [32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 448, 32, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 384, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 32, 48, 56, 64, 80, 96, 112, 128, 144, 160, 176, 192, 224, 256, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160],
-
- SamplingRateMap: [44100, 48000, 32000, 22050, 24000, 16000, 11025, 12000, 8000],
-
- SamplesCoefficients: [
- // MPEG 2.5
- [0, // Reserved
- 72, // Layer3
- 144, // Layer2
- 12 // Layer1
- ],
- // Reserved
- [0, // Reserved
- 0, // Layer3
- 0, // Layer2
- 0 // Layer1
- ],
- // MPEG 2
- [0, // Reserved
- 72, // Layer3
- 144, // Layer2
- 12 // Layer1
- ],
- // MPEG 1
- [0, // Reserved
- 144, // Layer3
- 144, // Layer2
- 12 // Layer1
- ]],
-
- BytesInSlot: [0, // Reserved
- 1, // Layer3
- 1, // Layer2
- 4 // Layer1
- ],
-
- appendFrame: function appendFrame(track, data, offset, pts, frameIndex) {
- // Using http://www.datavoyage.com/mpgscript/mpeghdr.htm as a reference
- if (offset + 24 > data.length) {
- return undefined;
- }
-
- var header = this.parseHeader(data, offset);
- if (header && offset + header.frameLength <= data.length) {
- var frameDuration = header.samplesPerFrame * 90000 / header.sampleRate;
- var stamp = pts + frameIndex * frameDuration;
- var sample = { unit: data.subarray(offset, offset + header.frameLength), pts: stamp, dts: stamp };
-
- track.config = [];
- track.channelCount = header.channelCount;
- track.samplerate = header.sampleRate;
- track.samples.push(sample);
- track.len += header.frameLength;
-
- return { sample: sample, length: header.frameLength };
- }
-
- return undefined;
- },
-
- parseHeader: function parseHeader(data, offset) {
- var headerB = data[offset + 1] >> 3 & 3;
- var headerC = data[offset + 1] >> 1 & 3;
- var headerE = data[offset + 2] >> 4 & 15;
- var headerF = data[offset + 2] >> 2 & 3;
- var headerG = data[offset + 2] >> 1 & 1;
- if (headerB !== 1 && headerE !== 0 && headerE !== 15 && headerF !== 3) {
- var columnInBitrates = headerB === 3 ? 3 - headerC : headerC === 3 ? 3 : 4;
- var bitRate = MpegAudio.BitratesMap[columnInBitrates * 14 + headerE - 1] * 1000;
- var columnInSampleRates = headerB === 3 ? 0 : headerB === 2 ? 1 : 2;
- var sampleRate = MpegAudio.SamplingRateMap[columnInSampleRates * 3 + headerF];
- var channelCount = data[offset + 3] >> 6 === 3 ? 1 : 2; // If bits of channel mode are `11` then it is a single channel (Mono)
- var sampleCoefficient = MpegAudio.SamplesCoefficients[headerB][headerC];
- var bytesInSlot = MpegAudio.BytesInSlot[headerC];
- var samplesPerFrame = sampleCoefficient * 8 * bytesInSlot;
- var frameLength = parseInt(sampleCoefficient * bitRate / sampleRate + headerG, 10) * bytesInSlot;
-
- return { sampleRate: sampleRate, channelCount: channelCount, frameLength: frameLength, samplesPerFrame: samplesPerFrame };
- }
-
- return undefined;
- },
-
- isHeaderPattern: function isHeaderPattern(data, offset) {
- return data[offset] === 0xff && (data[offset + 1] & 0xe0) === 0xe0 && (data[offset + 1] & 0x06) !== 0x00;
- },
-
- isHeader: function isHeader(data, offset) {
- // Look for MPEG header | 1111 1111 | 111X XYZX | where X can be either 0 or 1 and Y or Z should be 1
- // Layer bits (position 14 and 15) in header should be always different from 0 (Layer I or Layer II or Layer III)
- // More info http://www.mp3-tech.org/programmer/frame_header.html
- if (offset + 1 < data.length && this.isHeaderPattern(data, offset)) {
- return true;
- }
-
- return false;
- },
-
- probe: function probe(data, offset) {
- // same as isHeader but we also check that MPEG frame follows last MPEG frame
- // or end of data is reached
- if (offset + 1 < data.length && this.isHeaderPattern(data, offset)) {
- // MPEG header Length
- var headerLength = 4;
- // MPEG frame Length
- var header = this.parseHeader(data, offset);
- var frameLength = headerLength;
- if (header && header.frameLength) {
- frameLength = header.frameLength;
- }
-
- var newOffset = offset + frameLength;
- if (newOffset === data.length || newOffset + 1 < data.length && this.isHeaderPattern(data, newOffset)) {
- return true;
- }
- }
- return false;
- }
-};
-
-/* harmony default export */ var mpegaudio = (MpegAudio);
-// CONCATENATED MODULE: ./src/demux/exp-golomb.js
-function exp_golomb__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * Parser for exponential Golomb codes, a variable-bitwidth number encoding scheme used by h264.
-*/
-
-
-
-var exp_golomb_ExpGolomb = function () {
- function ExpGolomb(data) {
- exp_golomb__classCallCheck(this, ExpGolomb);
-
- this.data = data;
- // the number of bytes left to examine in this.data
- this.bytesAvailable = data.byteLength;
- // the current word being examined
- this.word = 0; // :uint
- // the number of bits left to examine in the current word
- this.bitsAvailable = 0; // :uint
- }
-
- // ():void
-
-
- ExpGolomb.prototype.loadWord = function loadWord() {
- var data = this.data,
- bytesAvailable = this.bytesAvailable,
- position = data.byteLength - bytesAvailable,
- workingBytes = new Uint8Array(4),
- availableBytes = Math.min(4, bytesAvailable);
- if (availableBytes === 0) {
- throw new Error('no bytes available');
- }
-
- workingBytes.set(data.subarray(position, position + availableBytes));
- this.word = new DataView(workingBytes.buffer).getUint32(0);
- // track the amount of this.data that has been processed
- this.bitsAvailable = availableBytes * 8;
- this.bytesAvailable -= availableBytes;
- };
-
- // (count:int):void
-
-
- ExpGolomb.prototype.skipBits = function skipBits(count) {
- var skipBytes = void 0; // :int
- if (this.bitsAvailable > count) {
- this.word <<= count;
- this.bitsAvailable -= count;
- } else {
- count -= this.bitsAvailable;
- skipBytes = count >> 3;
- count -= skipBytes >> 3;
- this.bytesAvailable -= skipBytes;
- this.loadWord();
- this.word <<= count;
- this.bitsAvailable -= count;
- }
- };
-
- // (size:int):uint
-
-
- ExpGolomb.prototype.readBits = function readBits(size) {
- var bits = Math.min(this.bitsAvailable, size),
- // :uint
- valu = this.word >>> 32 - bits; // :uint
- if (size > 32) {
- logger["b" /* logger */].error('Cannot read more than 32 bits at a time');
- }
-
- this.bitsAvailable -= bits;
- if (this.bitsAvailable > 0) {
- this.word <<= bits;
- } else if (this.bytesAvailable > 0) {
- this.loadWord();
- }
-
- bits = size - bits;
- if (bits > 0 && this.bitsAvailable) {
- return valu << bits | this.readBits(bits);
- } else {
- return valu;
- }
- };
-
- // ():uint
-
-
- ExpGolomb.prototype.skipLZ = function skipLZ() {
- var leadingZeroCount = void 0; // :uint
- for (leadingZeroCount = 0; leadingZeroCount < this.bitsAvailable; ++leadingZeroCount) {
- if ((this.word & 0x80000000 >>> leadingZeroCount) !== 0) {
- // the first bit of working word is 1
- this.word <<= leadingZeroCount;
- this.bitsAvailable -= leadingZeroCount;
- return leadingZeroCount;
- }
- }
- // we exhausted word and still have not found a 1
- this.loadWord();
- return leadingZeroCount + this.skipLZ();
- };
-
- // ():void
-
-
- ExpGolomb.prototype.skipUEG = function skipUEG() {
- this.skipBits(1 + this.skipLZ());
- };
-
- // ():void
-
-
- ExpGolomb.prototype.skipEG = function skipEG() {
- this.skipBits(1 + this.skipLZ());
- };
-
- // ():uint
-
-
- ExpGolomb.prototype.readUEG = function readUEG() {
- var clz = this.skipLZ(); // :uint
- return this.readBits(clz + 1) - 1;
- };
-
- // ():int
-
-
- ExpGolomb.prototype.readEG = function readEG() {
- var valu = this.readUEG(); // :int
- if (0x01 & valu) {
- // the number is odd if the low order bit is set
- return 1 + valu >>> 1; // add 1 to make it even, and divide by 2
- } else {
- return -1 * (valu >>> 1); // divide by two then make it negative
- }
- };
-
- // Some convenience functions
- // :Boolean
-
-
- ExpGolomb.prototype.readBoolean = function readBoolean() {
- return this.readBits(1) === 1;
- };
-
- // ():int
-
-
- ExpGolomb.prototype.readUByte = function readUByte() {
- return this.readBits(8);
- };
-
- // ():int
-
-
- ExpGolomb.prototype.readUShort = function readUShort() {
- return this.readBits(16);
- };
- // ():int
-
-
- ExpGolomb.prototype.readUInt = function readUInt() {
- return this.readBits(32);
- };
-
- /**
- * Advance the ExpGolomb decoder past a scaling list. The scaling
- * list is optionally transmitted as part of a sequence parameter
- * set and is not relevant to transmuxing.
- * @param count {number} the number of entries in this scaling list
- * @see Recommendation ITU-T H.264, Section 7.3.2.1.1.1
- */
-
-
- ExpGolomb.prototype.skipScalingList = function skipScalingList(count) {
- var lastScale = 8,
- nextScale = 8,
- j = void 0,
- deltaScale = void 0;
- for (j = 0; j < count; j++) {
- if (nextScale !== 0) {
- deltaScale = this.readEG();
- nextScale = (lastScale + deltaScale + 256) % 256;
- }
- lastScale = nextScale === 0 ? lastScale : nextScale;
- }
- };
-
- /**
- * Read a sequence parameter set and return some interesting video
- * properties. A sequence parameter set is the H264 metadata that
- * describes the properties of upcoming video frames.
- * @param data {Uint8Array} the bytes of a sequence parameter set
- * @return {object} an object with configuration parsed from the
- * sequence parameter set, including the dimensions of the
- * associated video frames.
- */
-
-
- ExpGolomb.prototype.readSPS = function readSPS() {
- var frameCropLeftOffset = 0,
- frameCropRightOffset = 0,
- frameCropTopOffset = 0,
- frameCropBottomOffset = 0,
- profileIdc = void 0,
- profileCompat = void 0,
- levelIdc = void 0,
- numRefFramesInPicOrderCntCycle = void 0,
- picWidthInMbsMinus1 = void 0,
- picHeightInMapUnitsMinus1 = void 0,
- frameMbsOnlyFlag = void 0,
- scalingListCount = void 0,
- i = void 0,
- readUByte = this.readUByte.bind(this),
- readBits = this.readBits.bind(this),
- readUEG = this.readUEG.bind(this),
- readBoolean = this.readBoolean.bind(this),
- skipBits = this.skipBits.bind(this),
- skipEG = this.skipEG.bind(this),
- skipUEG = this.skipUEG.bind(this),
- skipScalingList = this.skipScalingList.bind(this);
-
- readUByte();
- profileIdc = readUByte(); // profile_idc
- profileCompat = readBits(5); // constraint_set[0-4]_flag, u(5)
- skipBits(3); // reserved_zero_3bits u(3),
- levelIdc = readUByte(); // level_idc u(8)
- skipUEG(); // seq_parameter_set_id
- // some profiles have more optional data we don't need
- if (profileIdc === 100 || profileIdc === 110 || profileIdc === 122 || profileIdc === 244 || profileIdc === 44 || profileIdc === 83 || profileIdc === 86 || profileIdc === 118 || profileIdc === 128) {
- var chromaFormatIdc = readUEG();
- if (chromaFormatIdc === 3) {
- skipBits(1);
- } // separate_colour_plane_flag
-
- skipUEG(); // bit_depth_luma_minus8
- skipUEG(); // bit_depth_chroma_minus8
- skipBits(1); // qpprime_y_zero_transform_bypass_flag
- if (readBoolean()) {
- // seq_scaling_matrix_present_flag
- scalingListCount = chromaFormatIdc !== 3 ? 8 : 12;
- for (i = 0; i < scalingListCount; i++) {
- if (readBoolean()) {
- // seq_scaling_list_present_flag[ i ]
- if (i < 6) {
- skipScalingList(16);
- } else {
- skipScalingList(64);
- }
- }
- }
- }
- }
- skipUEG(); // log2_max_frame_num_minus4
- var picOrderCntType = readUEG();
- if (picOrderCntType === 0) {
- readUEG(); // log2_max_pic_order_cnt_lsb_minus4
- } else if (picOrderCntType === 1) {
- skipBits(1); // delta_pic_order_always_zero_flag
- skipEG(); // offset_for_non_ref_pic
- skipEG(); // offset_for_top_to_bottom_field
- numRefFramesInPicOrderCntCycle = readUEG();
- for (i = 0; i < numRefFramesInPicOrderCntCycle; i++) {
- skipEG();
- } // offset_for_ref_frame[ i ]
- }
- skipUEG(); // max_num_ref_frames
- skipBits(1); // gaps_in_frame_num_value_allowed_flag
- picWidthInMbsMinus1 = readUEG();
- picHeightInMapUnitsMinus1 = readUEG();
- frameMbsOnlyFlag = readBits(1);
- if (frameMbsOnlyFlag === 0) {
- skipBits(1);
- } // mb_adaptive_frame_field_flag
-
- skipBits(1); // direct_8x8_inference_flag
- if (readBoolean()) {
- // frame_cropping_flag
- frameCropLeftOffset = readUEG();
- frameCropRightOffset = readUEG();
- frameCropTopOffset = readUEG();
- frameCropBottomOffset = readUEG();
- }
- var pixelRatio = [1, 1];
- if (readBoolean()) {
- // vui_parameters_present_flag
- if (readBoolean()) {
- // aspect_ratio_info_present_flag
- var aspectRatioIdc = readUByte();
- switch (aspectRatioIdc) {
- case 1:
- pixelRatio = [1, 1];break;
- case 2:
- pixelRatio = [12, 11];break;
- case 3:
- pixelRatio = [10, 11];break;
- case 4:
- pixelRatio = [16, 11];break;
- case 5:
- pixelRatio = [40, 33];break;
- case 6:
- pixelRatio = [24, 11];break;
- case 7:
- pixelRatio = [20, 11];break;
- case 8:
- pixelRatio = [32, 11];break;
- case 9:
- pixelRatio = [80, 33];break;
- case 10:
- pixelRatio = [18, 11];break;
- case 11:
- pixelRatio = [15, 11];break;
- case 12:
- pixelRatio = [64, 33];break;
- case 13:
- pixelRatio = [160, 99];break;
- case 14:
- pixelRatio = [4, 3];break;
- case 15:
- pixelRatio = [3, 2];break;
- case 16:
- pixelRatio = [2, 1];break;
- case 255:
- {
- pixelRatio = [readUByte() << 8 | readUByte(), readUByte() << 8 | readUByte()];
- break;
- }
- }
- }
- }
- return {
- width: Math.ceil((picWidthInMbsMinus1 + 1) * 16 - frameCropLeftOffset * 2 - frameCropRightOffset * 2),
- height: (2 - frameMbsOnlyFlag) * (picHeightInMapUnitsMinus1 + 1) * 16 - (frameMbsOnlyFlag ? 2 : 4) * (frameCropTopOffset + frameCropBottomOffset),
- pixelRatio: pixelRatio
- };
- };
-
- ExpGolomb.prototype.readSliceType = function readSliceType() {
- // skip NALu type
- this.readUByte();
- // discard first_mb_in_slice
- this.readUEG();
- // return slice_type
- return this.readUEG();
- };
-
- return ExpGolomb;
-}();
-
-/* harmony default export */ var exp_golomb = (exp_golomb_ExpGolomb);
-// CONCATENATED MODULE: ./src/demux/sample-aes.js
-function sample_aes__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * SAMPLE-AES decrypter
-*/
-
-
-
-var sample_aes_SampleAesDecrypter = function () {
- function SampleAesDecrypter(observer, config, decryptdata, discardEPB) {
- sample_aes__classCallCheck(this, SampleAesDecrypter);
-
- this.decryptdata = decryptdata;
- this.discardEPB = discardEPB;
- this.decrypter = new crypt_decrypter["a" /* default */](observer, config, { removePKCS7Padding: false });
- }
-
- SampleAesDecrypter.prototype.decryptBuffer = function decryptBuffer(encryptedData, callback) {
- this.decrypter.decrypt(encryptedData, this.decryptdata.key.buffer, this.decryptdata.iv.buffer, callback);
- };
-
- // AAC - encrypt all full 16 bytes blocks starting from offset 16
-
-
- SampleAesDecrypter.prototype.decryptAacSample = function decryptAacSample(samples, sampleIndex, callback, sync) {
- var curUnit = samples[sampleIndex].unit;
- var encryptedData = curUnit.subarray(16, curUnit.length - curUnit.length % 16);
- var encryptedBuffer = encryptedData.buffer.slice(encryptedData.byteOffset, encryptedData.byteOffset + encryptedData.length);
-
- var localthis = this;
- this.decryptBuffer(encryptedBuffer, function (decryptedData) {
- decryptedData = new Uint8Array(decryptedData);
- curUnit.set(decryptedData, 16);
-
- if (!sync) {
- localthis.decryptAacSamples(samples, sampleIndex + 1, callback);
- }
- });
- };
-
- SampleAesDecrypter.prototype.decryptAacSamples = function decryptAacSamples(samples, sampleIndex, callback) {
- for (;; sampleIndex++) {
- if (sampleIndex >= samples.length) {
- callback();
- return;
- }
-
- if (samples[sampleIndex].unit.length < 32) {
- continue;
- }
-
- var sync = this.decrypter.isSync();
-
- this.decryptAacSample(samples, sampleIndex, callback, sync);
-
- if (!sync) {
- return;
- }
- }
- };
-
- // AVC - encrypt one 16 bytes block out of ten, starting from offset 32
-
-
- SampleAesDecrypter.prototype.getAvcEncryptedData = function getAvcEncryptedData(decodedData) {
- var encryptedDataLen = Math.floor((decodedData.length - 48) / 160) * 16 + 16;
- var encryptedData = new Int8Array(encryptedDataLen);
- var outputPos = 0;
- for (var inputPos = 32; inputPos <= decodedData.length - 16; inputPos += 160, outputPos += 16) {
- encryptedData.set(decodedData.subarray(inputPos, inputPos + 16), outputPos);
- }
-
- return encryptedData;
- };
-
- SampleAesDecrypter.prototype.getAvcDecryptedUnit = function getAvcDecryptedUnit(decodedData, decryptedData) {
- decryptedData = new Uint8Array(decryptedData);
- var inputPos = 0;
- for (var outputPos = 32; outputPos <= decodedData.length - 16; outputPos += 160, inputPos += 16) {
- decodedData.set(decryptedData.subarray(inputPos, inputPos + 16), outputPos);
- }
-
- return decodedData;
- };
-
- SampleAesDecrypter.prototype.decryptAvcSample = function decryptAvcSample(samples, sampleIndex, unitIndex, callback, curUnit, sync) {
- var decodedData = this.discardEPB(curUnit.data);
- var encryptedData = this.getAvcEncryptedData(decodedData);
- var localthis = this;
-
- this.decryptBuffer(encryptedData.buffer, function (decryptedData) {
- curUnit.data = localthis.getAvcDecryptedUnit(decodedData, decryptedData);
-
- if (!sync) {
- localthis.decryptAvcSamples(samples, sampleIndex, unitIndex + 1, callback);
- }
- });
- };
-
- SampleAesDecrypter.prototype.decryptAvcSamples = function decryptAvcSamples(samples, sampleIndex, unitIndex, callback) {
- for (;; sampleIndex++, unitIndex = 0) {
- if (sampleIndex >= samples.length) {
- callback();
- return;
- }
-
- var curUnits = samples[sampleIndex].units;
- for (;; unitIndex++) {
- if (unitIndex >= curUnits.length) {
- break;
- }
-
- var curUnit = curUnits[unitIndex];
- if (curUnit.length <= 48 || curUnit.type !== 1 && curUnit.type !== 5) {
- continue;
- }
-
- var sync = this.decrypter.isSync();
-
- this.decryptAvcSample(samples, sampleIndex, unitIndex, callback, curUnit, sync);
-
- if (!sync) {
- return;
- }
- }
- }
- };
-
- return SampleAesDecrypter;
-}();
-
-/* harmony default export */ var sample_aes = (sample_aes_SampleAesDecrypter);
-// CONCATENATED MODULE: ./src/demux/tsdemuxer.js
-function tsdemuxer__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * highly optimized TS demuxer:
- * parse PAT, PMT
- * extract PES packet from audio and video PIDs
- * extract AVC/H264 NAL units and AAC/ADTS samples from PES packet
- * trigger the remuxer upon parsing completion
- * it also tries to workaround as best as it can audio codec switch (HE-AAC to AAC and vice versa), without having to restart the MediaSource.
- * it also controls the remuxing process :
- * upon discontinuity or level switch detection, it will also notifies the remuxer so that it can reset its state.
-*/
-
-
-
-
-
-
-// import Hex from '../utils/hex';
-
-
-
-// We are using fixed track IDs for driving the MP4 remuxer
-// instead of following the TS PIDs.
-// There is no reason not to do this and some browsers/SourceBuffer-demuxers
-// may not like if there are TrackID "switches"
-// See https://github.com/video-dev/hls.js/issues/1331
-// Here we are mapping our internal track types to constant MP4 track IDs
-// With MSE currently one can only have one track of each, and we are muxing
-// whatever video/audio rendition in them.
-var RemuxerTrackIdConfig = {
- video: 1,
- audio: 2,
- id3: 3,
- text: 4
-};
-
-var tsdemuxer_TSDemuxer = function () {
- function TSDemuxer(observer, remuxer, config, typeSupported) {
- tsdemuxer__classCallCheck(this, TSDemuxer);
-
- this.observer = observer;
- this.config = config;
- this.typeSupported = typeSupported;
- this.remuxer = remuxer;
- this.sampleAes = null;
- }
-
- TSDemuxer.prototype.setDecryptData = function setDecryptData(decryptdata) {
- if (decryptdata != null && decryptdata.key != null && decryptdata.method === 'SAMPLE-AES') {
- this.sampleAes = new sample_aes(this.observer, this.config, decryptdata, this.discardEPB);
- } else {
- this.sampleAes = null;
- }
- };
-
- TSDemuxer.probe = function probe(data) {
- var syncOffset = TSDemuxer._syncOffset(data);
- if (syncOffset < 0) {
- return false;
- } else {
- if (syncOffset) {
- logger["b" /* logger */].warn('MPEG2-TS detected but first sync word found @ offset ' + syncOffset + ', junk ahead ?');
- }
-
- return true;
- }
- };
-
- TSDemuxer._syncOffset = function _syncOffset(data) {
- // scan 1000 first bytes
- var scanwindow = Math.min(1000, data.length - 3 * 188);
- var i = 0;
- while (i < scanwindow) {
- // a TS fragment should contain at least 3 TS packets, a PAT, a PMT, and one PID, each starting with 0x47
- if (data[i] === 0x47 && data[i + 188] === 0x47 && data[i + 2 * 188] === 0x47) {
- return i;
- } else {
- i++;
- }
- }
- return -1;
- };
-
- /**
- * Creates a track model internal to demuxer used to drive remuxing input
- *
- * @param {string} type 'audio' | 'video' | 'id3' | 'text'
- * @param {number} duration
- * @return {object} TSDemuxer's internal track model
- */
-
-
- TSDemuxer.createTrack = function createTrack(type, duration) {
- return {
- container: type === 'video' || type === 'audio' ? 'video/mp2t' : undefined,
- type: type,
- id: RemuxerTrackIdConfig[type],
- pid: -1,
- inputTimeScale: 90000,
- sequenceNumber: 0,
- samples: [],
- len: 0,
- dropped: type === 'video' ? 0 : undefined,
- isAAC: type === 'audio' ? true : undefined,
- duration: type === 'audio' ? duration : undefined
- };
- };
-
- /**
- * Initializes a new init segment on the demuxer/remuxer interface. Needed for discontinuities/track-switches (or at stream start)
- * Resets all internal track instances of the demuxer.
- *
- * @override Implements generic demuxing/remuxing interface (see DemuxerInline)
- * @param {object} initSegment
- * @param {string} audioCodec
- * @param {string} videoCodec
- * @param {number} duration (in TS timescale = 90kHz)
- */
-
-
- TSDemuxer.prototype.resetInitSegment = function resetInitSegment(initSegment, audioCodec, videoCodec, duration) {
- this.pmtParsed = false;
- this._pmtId = -1;
-
- this._avcTrack = TSDemuxer.createTrack('video', duration);
- this._audioTrack = TSDemuxer.createTrack('audio', duration);
- this._id3Track = TSDemuxer.createTrack('id3', duration);
- this._txtTrack = TSDemuxer.createTrack('text', duration);
-
- // flush any partial content
- this.aacOverFlow = null;
- this.aacLastPTS = null;
- this.avcSample = null;
- this.audioCodec = audioCodec;
- this.videoCodec = videoCodec;
- this._duration = duration;
- };
-
- /**
- *
- * @override
- */
-
-
- TSDemuxer.prototype.resetTimeStamp = function resetTimeStamp() {};
-
- // feed incoming data to the front of the parsing pipeline
-
-
- TSDemuxer.prototype.append = function append(data, timeOffset, contiguous, accurateTimeOffset) {
- var start = void 0,
- len = data.length,
- stt = void 0,
- pid = void 0,
- atf = void 0,
- offset = void 0,
- pes = void 0,
- unknownPIDs = false;
- this.contiguous = contiguous;
- var pmtParsed = this.pmtParsed,
- avcTrack = this._avcTrack,
- audioTrack = this._audioTrack,
- id3Track = this._id3Track,
- avcId = avcTrack.pid,
- audioId = audioTrack.pid,
- id3Id = id3Track.pid,
- pmtId = this._pmtId,
- avcData = avcTrack.pesData,
- audioData = audioTrack.pesData,
- id3Data = id3Track.pesData,
- parsePAT = this._parsePAT,
- parsePMT = this._parsePMT,
- parsePES = this._parsePES,
- parseAVCPES = this._parseAVCPES.bind(this),
- parseAACPES = this._parseAACPES.bind(this),
- parseMPEGPES = this._parseMPEGPES.bind(this),
- parseID3PES = this._parseID3PES.bind(this);
-
- var syncOffset = TSDemuxer._syncOffset(data);
-
- // don't parse last TS packet if incomplete
- len -= (len + syncOffset) % 188;
-
- // loop through TS packets
- for (start = syncOffset; start < len; start += 188) {
- if (data[start] === 0x47) {
- stt = !!(data[start + 1] & 0x40);
- // pid is a 13-bit field starting at the last bit of TS[1]
- pid = ((data[start + 1] & 0x1f) << 8) + data[start + 2];
- atf = (data[start + 3] & 0x30) >> 4;
- // if an adaption field is present, its length is specified by the fifth byte of the TS packet header.
- if (atf > 1) {
- offset = start + 5 + data[start + 4];
- // continue if there is only adaptation field
- if (offset === start + 188) {
- continue;
- }
- } else {
- offset = start + 4;
- }
- switch (pid) {
- case avcId:
- if (stt) {
- if (avcData && (pes = parsePES(avcData)) && pes.pts !== undefined) {
- parseAVCPES(pes, false);
- }
-
- avcData = { data: [], size: 0 };
- }
- if (avcData) {
- avcData.data.push(data.subarray(offset, start + 188));
- avcData.size += start + 188 - offset;
- }
- break;
- case audioId:
- if (stt) {
- if (audioData && (pes = parsePES(audioData)) && pes.pts !== undefined) {
- if (audioTrack.isAAC) {
- parseAACPES(pes);
- } else {
- parseMPEGPES(pes);
- }
- }
- audioData = { data: [], size: 0 };
- }
- if (audioData) {
- audioData.data.push(data.subarray(offset, start + 188));
- audioData.size += start + 188 - offset;
- }
- break;
- case id3Id:
- if (stt) {
- if (id3Data && (pes = parsePES(id3Data)) && pes.pts !== undefined) {
- parseID3PES(pes);
- }
-
- id3Data = { data: [], size: 0 };
- }
- if (id3Data) {
- id3Data.data.push(data.subarray(offset, start + 188));
- id3Data.size += start + 188 - offset;
- }
- break;
- case 0:
- if (stt) {
- offset += data[offset] + 1;
- }
-
- pmtId = this._pmtId = parsePAT(data, offset);
- break;
- case pmtId:
- if (stt) {
- offset += data[offset] + 1;
- }
-
- var parsedPIDs = parsePMT(data, offset, this.typeSupported.mpeg === true || this.typeSupported.mp3 === true, this.sampleAes != null);
-
- // only update track id if track PID found while parsing PMT
- // this is to avoid resetting the PID to -1 in case
- // track PID transiently disappears from the stream
- // this could happen in case of transient missing audio samples for example
- // NOTE this is only the PID of the track as found in TS,
- // but we are not using this for MP4 track IDs.
- avcId = parsedPIDs.avc;
- if (avcId > 0) {
- avcTrack.pid = avcId;
- }
-
- audioId = parsedPIDs.audio;
- if (audioId > 0) {
- audioTrack.pid = audioId;
- audioTrack.isAAC = parsedPIDs.isAAC;
- }
- id3Id = parsedPIDs.id3;
- if (id3Id > 0) {
- id3Track.pid = id3Id;
- }
-
- if (unknownPIDs && !pmtParsed) {
- logger["b" /* logger */].log('reparse from beginning');
- unknownPIDs = false;
- // we set it to -188, the += 188 in the for loop will reset start to 0
- start = syncOffset - 188;
- }
- pmtParsed = this.pmtParsed = true;
- break;
- case 17:
- case 0x1fff:
- break;
- default:
- unknownPIDs = true;
- break;
- }
- } else {
- this.observer.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].MEDIA_ERROR, details: errors["a" /* ErrorDetails */].FRAG_PARSING_ERROR, fatal: false, reason: 'TS packet did not start with 0x47' });
- }
- }
- // try to parse last PES packets
- if (avcData && (pes = parsePES(avcData)) && pes.pts !== undefined) {
- parseAVCPES(pes, true);
- avcTrack.pesData = null;
- } else {
- // either avcData null or PES truncated, keep it for next frag parsing
- avcTrack.pesData = avcData;
- }
-
- if (audioData && (pes = parsePES(audioData)) && pes.pts !== undefined) {
- if (audioTrack.isAAC) {
- parseAACPES(pes);
- } else {
- parseMPEGPES(pes);
- }
-
- audioTrack.pesData = null;
- } else {
- if (audioData && audioData.size) {
- logger["b" /* logger */].log('last AAC PES packet truncated,might overlap between fragments');
- }
-
- // either audioData null or PES truncated, keep it for next frag parsing
- audioTrack.pesData = audioData;
- }
-
- if (id3Data && (pes = parsePES(id3Data)) && pes.pts !== undefined) {
- parseID3PES(pes);
- id3Track.pesData = null;
- } else {
- // either id3Data null or PES truncated, keep it for next frag parsing
- id3Track.pesData = id3Data;
- }
-
- if (this.sampleAes == null) {
- this.remuxer.remux(audioTrack, avcTrack, id3Track, this._txtTrack, timeOffset, contiguous, accurateTimeOffset);
- } else {
- this.decryptAndRemux(audioTrack, avcTrack, id3Track, this._txtTrack, timeOffset, contiguous, accurateTimeOffset);
- }
- };
-
- TSDemuxer.prototype.decryptAndRemux = function decryptAndRemux(audioTrack, videoTrack, id3Track, textTrack, timeOffset, contiguous, accurateTimeOffset) {
- if (audioTrack.samples && audioTrack.isAAC) {
- var localthis = this;
- this.sampleAes.decryptAacSamples(audioTrack.samples, 0, function () {
- localthis.decryptAndRemuxAvc(audioTrack, videoTrack, id3Track, textTrack, timeOffset, contiguous, accurateTimeOffset);
- });
- } else {
- this.decryptAndRemuxAvc(audioTrack, videoTrack, id3Track, textTrack, timeOffset, contiguous, accurateTimeOffset);
- }
- };
-
- TSDemuxer.prototype.decryptAndRemuxAvc = function decryptAndRemuxAvc(audioTrack, videoTrack, id3Track, textTrack, timeOffset, contiguous, accurateTimeOffset) {
- if (videoTrack.samples) {
- var localthis = this;
- this.sampleAes.decryptAvcSamples(videoTrack.samples, 0, 0, function () {
- localthis.remuxer.remux(audioTrack, videoTrack, id3Track, textTrack, timeOffset, contiguous, accurateTimeOffset);
- });
- } else {
- this.remuxer.remux(audioTrack, videoTrack, id3Track, textTrack, timeOffset, contiguous, accurateTimeOffset);
- }
- };
-
- TSDemuxer.prototype.destroy = function destroy() {
- this._initPTS = this._initDTS = undefined;
- this._duration = 0;
- };
-
- TSDemuxer.prototype._parsePAT = function _parsePAT(data, offset) {
- // skip the PSI header and parse the first PMT entry
- return (data[offset + 10] & 0x1F) << 8 | data[offset + 11];
- // logger.log('PMT PID:' + this._pmtId);
- };
-
- TSDemuxer.prototype._parsePMT = function _parsePMT(data, offset, mpegSupported, isSampleAes) {
- var sectionLength = void 0,
- tableEnd = void 0,
- programInfoLength = void 0,
- pid = void 0,
- result = { audio: -1, avc: -1, id3: -1, isAAC: true };
- sectionLength = (data[offset + 1] & 0x0f) << 8 | data[offset + 2];
- tableEnd = offset + 3 + sectionLength - 4;
- // to determine where the table is, we have to figure out how
- // long the program info descriptors are
- programInfoLength = (data[offset + 10] & 0x0f) << 8 | data[offset + 11];
- // advance the offset to the first entry in the mapping table
- offset += 12 + programInfoLength;
- while (offset < tableEnd) {
- pid = (data[offset + 1] & 0x1F) << 8 | data[offset + 2];
- switch (data[offset]) {
- case 0xcf:
- // SAMPLE-AES AAC
- if (!isSampleAes) {
- logger["b" /* logger */].log('unkown stream type:' + data[offset]);
- break;
- }
- /* falls through */
-
- // ISO/IEC 13818-7 ADTS AAC (MPEG-2 lower bit-rate audio)
- case 0x0f:
- // logger.log('AAC PID:' + pid);
- if (result.audio === -1) {
- result.audio = pid;
- }
-
- break;
-
- // Packetized metadata (ID3)
- case 0x15:
- // logger.log('ID3 PID:' + pid);
- if (result.id3 === -1) {
- result.id3 = pid;
- }
-
- break;
-
- case 0xdb:
- // SAMPLE-AES AVC
- if (!isSampleAes) {
- logger["b" /* logger */].log('unkown stream type:' + data[offset]);
- break;
- }
- /* falls through */
-
- // ITU-T Rec. H.264 and ISO/IEC 14496-10 (lower bit-rate video)
- case 0x1b:
- // logger.log('AVC PID:' + pid);
- if (result.avc === -1) {
- result.avc = pid;
- }
-
- break;
-
- // ISO/IEC 11172-3 (MPEG-1 audio)
- // or ISO/IEC 13818-3 (MPEG-2 halved sample rate audio)
- case 0x03:
- case 0x04:
- // logger.log('MPEG PID:' + pid);
- if (!mpegSupported) {
- logger["b" /* logger */].log('MPEG audio found, not supported in this browser for now');
- } else if (result.audio === -1) {
- result.audio = pid;
- result.isAAC = false;
- }
- break;
-
- case 0x24:
- logger["b" /* logger */].warn('HEVC stream type found, not supported for now');
- break;
-
- default:
- logger["b" /* logger */].log('unkown stream type:' + data[offset]);
- break;
- }
- // move to the next table entry
- // skip past the elementary stream descriptors, if present
- offset += ((data[offset + 3] & 0x0F) << 8 | data[offset + 4]) + 5;
- }
- return result;
- };
-
- TSDemuxer.prototype._parsePES = function _parsePES(stream) {
- var i = 0,
- frag = void 0,
- pesFlags = void 0,
- pesPrefix = void 0,
- pesLen = void 0,
- pesHdrLen = void 0,
- pesData = void 0,
- pesPts = void 0,
- pesDts = void 0,
- payloadStartOffset = void 0,
- data = stream.data;
- // safety check
- if (!stream || stream.size === 0) {
- return null;
- }
-
- // we might need up to 19 bytes to read PES header
- // if first chunk of data is less than 19 bytes, let's merge it with following ones until we get 19 bytes
- // usually only one merge is needed (and this is rare ...)
- while (data[0].length < 19 && data.length > 1) {
- var newData = new Uint8Array(data[0].length + data[1].length);
- newData.set(data[0]);
- newData.set(data[1], data[0].length);
- data[0] = newData;
- data.splice(1, 1);
- }
- // retrieve PTS/DTS from first fragment
- frag = data[0];
- pesPrefix = (frag[0] << 16) + (frag[1] << 8) + frag[2];
- if (pesPrefix === 1) {
- pesLen = (frag[4] << 8) + frag[5];
- // if PES parsed length is not zero and greater than total received length, stop parsing. PES might be truncated
- // minus 6 : PES header size
- if (pesLen && pesLen > stream.size - 6) {
- return null;
- }
-
- pesFlags = frag[7];
- if (pesFlags & 0xC0) {
- /* PES header described here : http://dvd.sourceforge.net/dvdinfo/pes-hdr.html
- as PTS / DTS is 33 bit we cannot use bitwise operator in JS,
- as Bitwise operators treat their operands as a sequence of 32 bits */
- pesPts = (frag[9] & 0x0E) * 536870912 + // 1 << 29
- (frag[10] & 0xFF) * 4194304 + // 1 << 22
- (frag[11] & 0xFE) * 16384 + // 1 << 14
- (frag[12] & 0xFF) * 128 + // 1 << 7
- (frag[13] & 0xFE) / 2;
- // check if greater than 2^32 -1
- if (pesPts > 4294967295) {
- // decrement 2^33
- pesPts -= 8589934592;
- }
- if (pesFlags & 0x40) {
- pesDts = (frag[14] & 0x0E) * 536870912 + // 1 << 29
- (frag[15] & 0xFF) * 4194304 + // 1 << 22
- (frag[16] & 0xFE) * 16384 + // 1 << 14
- (frag[17] & 0xFF) * 128 + // 1 << 7
- (frag[18] & 0xFE) / 2;
- // check if greater than 2^32 -1
- if (pesDts > 4294967295) {
- // decrement 2^33
- pesDts -= 8589934592;
- }
- if (pesPts - pesDts > 60 * 90000) {
- logger["b" /* logger */].warn(Math.round((pesPts - pesDts) / 90000) + 's delta between PTS and DTS, align them');
- pesPts = pesDts;
- }
- } else {
- pesDts = pesPts;
- }
- }
- pesHdrLen = frag[8];
- // 9 bytes : 6 bytes for PES header + 3 bytes for PES extension
- payloadStartOffset = pesHdrLen + 9;
-
- stream.size -= payloadStartOffset;
- // reassemble PES packet
- pesData = new Uint8Array(stream.size);
- for (var j = 0, dataLen = data.length; j < dataLen; j++) {
- frag = data[j];
- var len = frag.byteLength;
- if (payloadStartOffset) {
- if (payloadStartOffset > len) {
- // trim full frag if PES header bigger than frag
- payloadStartOffset -= len;
- continue;
- } else {
- // trim partial frag if PES header smaller than frag
- frag = frag.subarray(payloadStartOffset);
- len -= payloadStartOffset;
- payloadStartOffset = 0;
- }
- }
- pesData.set(frag, i);
- i += len;
- }
- if (pesLen) {
- // payload size : remove PES header + PES extension
- pesLen -= pesHdrLen + 3;
- }
- return { data: pesData, pts: pesPts, dts: pesDts, len: pesLen };
- } else {
- return null;
- }
- };
-
- TSDemuxer.prototype.pushAccesUnit = function pushAccesUnit(avcSample, avcTrack) {
- if (avcSample.units.length && avcSample.frame) {
- var samples = avcTrack.samples;
- var nbSamples = samples.length;
- // only push AVC sample if starting with a keyframe is not mandatory OR
- // if keyframe already found in this fragment OR
- // keyframe found in last fragment (track.sps) AND
- // samples already appended (we already found a keyframe in this fragment) OR fragment is contiguous
- if (!this.config.forceKeyFrameOnDiscontinuity || avcSample.key === true || avcTrack.sps && (nbSamples || this.contiguous)) {
- avcSample.id = nbSamples;
- samples.push(avcSample);
- } else {
- // dropped samples, track it
- avcTrack.dropped++;
- }
- }
- if (avcSample.debug.length) {
- logger["b" /* logger */].log(avcSample.pts + '/' + avcSample.dts + ':' + avcSample.debug);
- }
- };
-
- TSDemuxer.prototype._parseAVCPES = function _parseAVCPES(pes, last) {
- var _this = this;
-
- // logger.log('parse new PES');
- var track = this._avcTrack,
- units = this._parseAVCNALu(pes.data),
- debug = false,
- expGolombDecoder = void 0,
- avcSample = this.avcSample,
- push = void 0,
- spsfound = false,
- i = void 0,
- pushAccesUnit = this.pushAccesUnit.bind(this),
- createAVCSample = function createAVCSample(key, pts, dts, debug) {
- return { key: key, pts: pts, dts: dts, units: [], debug: debug };
- };
- // free pes.data to save up some memory
- pes.data = null;
-
- // if new NAL units found and last sample still there, let's push ...
- // this helps parsing streams with missing AUD (only do this if AUD never found)
- if (avcSample && units.length && !track.audFound) {
- pushAccesUnit(avcSample, track);
- avcSample = this.avcSample = createAVCSample(false, pes.pts, pes.dts, '');
- }
-
- units.forEach(function (unit) {
- switch (unit.type) {
- // NDR
- case 1:
- push = true;
- if (!avcSample) {
- avcSample = _this.avcSample = createAVCSample(true, pes.pts, pes.dts, '');
- }
-
- if (debug) {
- avcSample.debug += 'NDR ';
- }
-
- avcSample.frame = true;
- var data = unit.data;
- // only check slice type to detect KF in case SPS found in same packet (any keyframe is preceded by SPS ...)
- if (spsfound && data.length > 4) {
- // retrieve slice type by parsing beginning of NAL unit (follow H264 spec, slice_header definition) to detect keyframe embedded in NDR
- var sliceType = new exp_golomb(data).readSliceType();
- // 2 : I slice, 4 : SI slice, 7 : I slice, 9: SI slice
- // SI slice : A slice that is coded using intra prediction only and using quantisation of the prediction samples.
- // An SI slice can be coded such that its decoded samples can be constructed identically to an SP slice.
- // I slice: A slice that is not an SI slice that is decoded using intra prediction only.
- // if (sliceType === 2 || sliceType === 7) {
- if (sliceType === 2 || sliceType === 4 || sliceType === 7 || sliceType === 9) {
- avcSample.key = true;
- }
- }
- break;
- // IDR
- case 5:
- push = true;
- // handle PES not starting with AUD
- if (!avcSample) {
- avcSample = _this.avcSample = createAVCSample(true, pes.pts, pes.dts, '');
- }
-
- if (debug) {
- avcSample.debug += 'IDR ';
- }
-
- avcSample.key = true;
- avcSample.frame = true;
- break;
- // SEI
- case 6:
- push = true;
- if (debug && avcSample) {
- avcSample.debug += 'SEI ';
- }
-
- expGolombDecoder = new exp_golomb(_this.discardEPB(unit.data));
-
- // skip frameType
- expGolombDecoder.readUByte();
-
- var payloadType = 0;
- var payloadSize = 0;
- var endOfCaptions = false;
- var b = 0;
-
- while (!endOfCaptions && expGolombDecoder.bytesAvailable > 1) {
- payloadType = 0;
- do {
- b = expGolombDecoder.readUByte();
- payloadType += b;
- } while (b === 0xFF);
-
- // Parse payload size.
- payloadSize = 0;
- do {
- b = expGolombDecoder.readUByte();
- payloadSize += b;
- } while (b === 0xFF);
-
- // TODO: there can be more than one payload in an SEI packet...
- // TODO: need to read type and size in a while loop to get them all
- if (payloadType === 4 && expGolombDecoder.bytesAvailable !== 0) {
- endOfCaptions = true;
-
- var countryCode = expGolombDecoder.readUByte();
-
- if (countryCode === 181) {
- var providerCode = expGolombDecoder.readUShort();
-
- if (providerCode === 49) {
- var userStructure = expGolombDecoder.readUInt();
-
- if (userStructure === 0x47413934) {
- var userDataType = expGolombDecoder.readUByte();
-
- // Raw CEA-608 bytes wrapped in CEA-708 packet
- if (userDataType === 3) {
- var firstByte = expGolombDecoder.readUByte();
- var secondByte = expGolombDecoder.readUByte();
-
- var totalCCs = 31 & firstByte;
- var byteArray = [firstByte, secondByte];
-
- for (i = 0; i < totalCCs; i++) {
- // 3 bytes per CC
- byteArray.push(expGolombDecoder.readUByte());
- byteArray.push(expGolombDecoder.readUByte());
- byteArray.push(expGolombDecoder.readUByte());
- }
-
- _this._insertSampleInOrder(_this._txtTrack.samples, { type: 3, pts: pes.pts, bytes: byteArray });
- }
- }
- }
- }
- } else if (payloadSize < expGolombDecoder.bytesAvailable) {
- for (i = 0; i < payloadSize; i++) {
- expGolombDecoder.readUByte();
- }
- }
- }
- break;
- // SPS
- case 7:
- push = true;
- spsfound = true;
- if (debug && avcSample) {
- avcSample.debug += 'SPS ';
- }
-
- if (!track.sps) {
- expGolombDecoder = new exp_golomb(unit.data);
- var config = expGolombDecoder.readSPS();
- track.width = config.width;
- track.height = config.height;
- track.pixelRatio = config.pixelRatio;
- track.sps = [unit.data];
- track.duration = _this._duration;
- var codecarray = unit.data.subarray(1, 4);
- var codecstring = 'avc1.';
- for (i = 0; i < 3; i++) {
- var h = codecarray[i].toString(16);
- if (h.length < 2) {
- h = '0' + h;
- }
-
- codecstring += h;
- }
- track.codec = codecstring;
- }
- break;
- // PPS
- case 8:
- push = true;
- if (debug && avcSample) {
- avcSample.debug += 'PPS ';
- }
-
- if (!track.pps) {
- track.pps = [unit.data];
- }
-
- break;
- // AUD
- case 9:
- push = false;
- track.audFound = true;
- if (avcSample) {
- pushAccesUnit(avcSample, track);
- }
-
- avcSample = _this.avcSample = createAVCSample(false, pes.pts, pes.dts, debug ? 'AUD ' : '');
- break;
- // Filler Data
- case 12:
- push = false;
- break;
- default:
- push = false;
- if (avcSample) {
- avcSample.debug += 'unknown NAL ' + unit.type + ' ';
- }
-
- break;
- }
- if (avcSample && push) {
- var _units = avcSample.units;
- _units.push(unit);
- }
- });
- // if last PES packet, push samples
- if (last && avcSample) {
- pushAccesUnit(avcSample, track);
- this.avcSample = null;
- }
- };
-
- TSDemuxer.prototype._insertSampleInOrder = function _insertSampleInOrder(arr, data) {
- var len = arr.length;
- if (len > 0) {
- if (data.pts >= arr[len - 1].pts) {
- arr.push(data);
- } else {
- for (var pos = len - 1; pos >= 0; pos--) {
- if (data.pts < arr[pos].pts) {
- arr.splice(pos, 0, data);
- break;
- }
- }
- }
- } else {
- arr.push(data);
- }
- };
-
- TSDemuxer.prototype._getLastNalUnit = function _getLastNalUnit() {
- var avcSample = this.avcSample,
- lastUnit = void 0;
- // try to fallback to previous sample if current one is empty
- if (!avcSample || avcSample.units.length === 0) {
- var track = this._avcTrack,
- samples = track.samples;
- avcSample = samples[samples.length - 1];
- }
- if (avcSample) {
- var units = avcSample.units;
- lastUnit = units[units.length - 1];
- }
- return lastUnit;
- };
-
- TSDemuxer.prototype._parseAVCNALu = function _parseAVCNALu(array) {
- var i = 0,
- len = array.byteLength,
- value = void 0,
- overflow = void 0,
- track = this._avcTrack,
- state = track.naluState || 0,
- lastState = state;
- var units = [],
- unit = void 0,
- unitType = void 0,
- lastUnitStart = -1,
- lastUnitType = void 0;
- // logger.log('PES:' + Hex.hexDump(array));
-
- if (state === -1) {
- // special use case where we found 3 or 4-byte start codes exactly at the end of previous PES packet
- lastUnitStart = 0;
- // NALu type is value read from offset 0
- lastUnitType = array[0] & 0x1f;
- state = 0;
- i = 1;
- }
-
- while (i < len) {
- value = array[i++];
- // optimization. state 0 and 1 are the predominant case. let's handle them outside of the switch/case
- if (!state) {
- state = value ? 0 : 1;
- continue;
- }
- if (state === 1) {
- state = value ? 0 : 2;
- continue;
- }
- // here we have state either equal to 2 or 3
- if (!value) {
- state = 3;
- } else if (value === 1) {
- if (lastUnitStart >= 0) {
- unit = { data: array.subarray(lastUnitStart, i - state - 1), type: lastUnitType };
- // logger.log('pushing NALU, type/size:' + unit.type + '/' + unit.data.byteLength);
- units.push(unit);
- } else {
- // lastUnitStart is undefined => this is the first start code found in this PES packet
- // first check if start code delimiter is overlapping between 2 PES packets,
- // ie it started in last packet (lastState not zero)
- // and ended at the beginning of this PES packet (i <= 4 - lastState)
- var lastUnit = this._getLastNalUnit();
- if (lastUnit) {
- if (lastState && i <= 4 - lastState) {
- // start delimiter overlapping between PES packets
- // strip start delimiter bytes from the end of last NAL unit
- // check if lastUnit had a state different from zero
- if (lastUnit.state) {
- // strip last bytes
- lastUnit.data = lastUnit.data.subarray(0, lastUnit.data.byteLength - lastState);
- }
- }
- // If NAL units are not starting right at the beginning of the PES packet, push preceding data into previous NAL unit.
- overflow = i - state - 1;
- if (overflow > 0) {
- // logger.log('first NALU found with overflow:' + overflow);
- var tmp = new Uint8Array(lastUnit.data.byteLength + overflow);
- tmp.set(lastUnit.data, 0);
- tmp.set(array.subarray(0, overflow), lastUnit.data.byteLength);
- lastUnit.data = tmp;
- }
- }
- }
- // check if we can read unit type
- if (i < len) {
- unitType = array[i] & 0x1f;
- // logger.log('find NALU @ offset:' + i + ',type:' + unitType);
- lastUnitStart = i;
- lastUnitType = unitType;
- state = 0;
- } else {
- // not enough byte to read unit type. let's read it on next PES parsing
- state = -1;
- }
- } else {
- state = 0;
- }
- }
- if (lastUnitStart >= 0 && state >= 0) {
- unit = { data: array.subarray(lastUnitStart, len), type: lastUnitType, state: state };
- units.push(unit);
- // logger.log('pushing NALU, type/size/state:' + unit.type + '/' + unit.data.byteLength + '/' + state);
- }
- // no NALu found
- if (units.length === 0) {
- // append pes.data to previous NAL unit
- var _lastUnit = this._getLastNalUnit();
- if (_lastUnit) {
- var _tmp = new Uint8Array(_lastUnit.data.byteLength + array.byteLength);
- _tmp.set(_lastUnit.data, 0);
- _tmp.set(array, _lastUnit.data.byteLength);
- _lastUnit.data = _tmp;
- }
- }
- track.naluState = state;
- return units;
- };
-
- /**
- * remove Emulation Prevention bytes from a RBSP
- */
-
-
- TSDemuxer.prototype.discardEPB = function discardEPB(data) {
- var length = data.byteLength,
- EPBPositions = [],
- i = 1,
- newLength = void 0,
- newData = void 0;
-
- // Find all `Emulation Prevention Bytes`
- while (i < length - 2) {
- if (data[i] === 0 && data[i + 1] === 0 && data[i + 2] === 0x03) {
- EPBPositions.push(i + 2);
- i += 2;
- } else {
- i++;
- }
- }
-
- // If no Emulation Prevention Bytes were found just return the original
- // array
- if (EPBPositions.length === 0) {
- return data;
- }
-
- // Create a new array to hold the NAL unit data
- newLength = length - EPBPositions.length;
- newData = new Uint8Array(newLength);
- var sourceIndex = 0;
-
- for (i = 0; i < newLength; sourceIndex++, i++) {
- if (sourceIndex === EPBPositions[0]) {
- // Skip this byte
- sourceIndex++;
- // Remove this position index
- EPBPositions.shift();
- }
- newData[i] = data[sourceIndex];
- }
- return newData;
- };
-
- TSDemuxer.prototype._parseAACPES = function _parseAACPES(pes) {
- var track = this._audioTrack,
- data = pes.data,
- pts = pes.pts,
- startOffset = 0,
- aacOverFlow = this.aacOverFlow,
- aacLastPTS = this.aacLastPTS,
- frameDuration = void 0,
- frameIndex = void 0,
- offset = void 0,
- stamp = void 0,
- len = void 0;
- if (aacOverFlow) {
- var tmp = new Uint8Array(aacOverFlow.byteLength + data.byteLength);
- tmp.set(aacOverFlow, 0);
- tmp.set(data, aacOverFlow.byteLength);
- // logger.log(`AAC: append overflowing ${aacOverFlow.byteLength} bytes to beginning of new PES`);
- data = tmp;
- }
- // look for ADTS header (0xFFFx)
- for (offset = startOffset, len = data.length; offset < len - 1; offset++) {
- if (isHeader(data, offset)) {
- break;
- }
- }
- // if ADTS header does not start straight from the beginning of the PES payload, raise an error
- if (offset) {
- var reason = void 0,
- fatal = void 0;
- if (offset < len - 1) {
- reason = 'AAC PES did not start with ADTS header,offset:' + offset;
- fatal = false;
- } else {
- reason = 'no ADTS header found in AAC PES';
- fatal = true;
- }
- logger["b" /* logger */].warn('parsing error:' + reason);
- this.observer.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].MEDIA_ERROR, details: errors["a" /* ErrorDetails */].FRAG_PARSING_ERROR, fatal: fatal, reason: reason });
- if (fatal) {
- return;
- }
- }
-
- initTrackConfig(track, this.observer, data, offset, this.audioCodec);
- frameIndex = 0;
- frameDuration = getFrameDuration(track.samplerate);
-
- // if last AAC frame is overflowing, we should ensure timestamps are contiguous:
- // first sample PTS should be equal to last sample PTS + frameDuration
- if (aacOverFlow && aacLastPTS) {
- var newPTS = aacLastPTS + frameDuration;
- if (Math.abs(newPTS - pts) > 1) {
- logger["b" /* logger */].log('AAC: align PTS for overlapping frames by ' + Math.round((newPTS - pts) / 90));
- pts = newPTS;
- }
- }
-
- // scan for aac samples
- while (offset < len) {
- if (isHeader(data, offset) && offset + 5 < len) {
- var frame = appendFrame(track, data, offset, pts, frameIndex);
- if (frame) {
- // logger.log(`${Math.round(frame.sample.pts)} : AAC`);
- offset += frame.length;
- stamp = frame.sample.pts;
- frameIndex++;
- } else {
- // logger.log('Unable to parse AAC frame');
- break;
- }
- } else {
- // nothing found, keep looking
- offset++;
- }
- }
-
- if (offset < len) {
- aacOverFlow = data.subarray(offset, len);
- // logger.log(`AAC: overflow detected:${len-offset}`);
- } else {
- aacOverFlow = null;
- }
-
- this.aacOverFlow = aacOverFlow;
- this.aacLastPTS = stamp;
- };
-
- TSDemuxer.prototype._parseMPEGPES = function _parseMPEGPES(pes) {
- var data = pes.data;
- var length = data.length;
- var frameIndex = 0;
- var offset = 0;
- var pts = pes.pts;
-
- while (offset < length) {
- if (mpegaudio.isHeader(data, offset)) {
- var frame = mpegaudio.appendFrame(this._audioTrack, data, offset, pts, frameIndex);
- if (frame) {
- offset += frame.length;
- frameIndex++;
- } else {
- // logger.log('Unable to parse Mpeg audio frame');
- break;
- }
- } else {
- // nothing found, keep looking
- offset++;
- }
- }
- };
-
- TSDemuxer.prototype._parseID3PES = function _parseID3PES(pes) {
- this._id3Track.samples.push(pes);
- };
-
- return TSDemuxer;
-}();
-
-/* harmony default export */ var tsdemuxer = (tsdemuxer_TSDemuxer);
-// CONCATENATED MODULE: ./src/demux/mp3demuxer.js
-function mp3demuxer__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * MP3 demuxer
- */
-
-
-
-
-var mp3demuxer_MP3Demuxer = function () {
- function MP3Demuxer(observer, remuxer, config) {
- mp3demuxer__classCallCheck(this, MP3Demuxer);
-
- this.observer = observer;
- this.config = config;
- this.remuxer = remuxer;
- }
-
- MP3Demuxer.prototype.resetInitSegment = function resetInitSegment(initSegment, audioCodec, videoCodec, duration) {
- this._audioTrack = { container: 'audio/mpeg', type: 'audio', id: -1, sequenceNumber: 0, isAAC: false, samples: [], len: 0, manifestCodec: audioCodec, duration: duration, inputTimeScale: 90000 };
- };
-
- MP3Demuxer.prototype.resetTimeStamp = function resetTimeStamp() {};
-
- MP3Demuxer.probe = function probe(data) {
- // check if data contains ID3 timestamp and MPEG sync word
- var offset = void 0,
- length = void 0;
- var id3Data = id3["a" /* default */].getID3Data(data, 0);
- if (id3Data && id3["a" /* default */].getTimeStamp(id3Data) !== undefined) {
- // Look for MPEG header | 1111 1111 | 111X XYZX | where X can be either 0 or 1 and Y or Z should be 1
- // Layer bits (position 14 and 15) in header should be always different from 0 (Layer I or Layer II or Layer III)
- // More info http://www.mp3-tech.org/programmer/frame_header.html
- for (offset = id3Data.length, length = Math.min(data.length - 1, offset + 100); offset < length; offset++) {
- if (mpegaudio.probe(data, offset)) {
- logger["b" /* logger */].log('MPEG Audio sync word found !');
- return true;
- }
- }
- }
- return false;
- };
-
- // feed incoming data to the front of the parsing pipeline
-
-
- MP3Demuxer.prototype.append = function append(data, timeOffset, contiguous, accurateTimeOffset) {
- var id3Data = id3["a" /* default */].getID3Data(data, 0);
- var timestamp = id3["a" /* default */].getTimeStamp(id3Data);
- var pts = timestamp ? 90 * timestamp : timeOffset * 90000;
- var offset = id3Data.length;
- var length = data.length;
- var frameIndex = 0,
- stamp = 0;
- var track = this._audioTrack;
-
- var id3Samples = [{ pts: pts, dts: pts, data: id3Data }];
-
- while (offset < length) {
- if (mpegaudio.isHeader(data, offset)) {
- var frame = mpegaudio.appendFrame(track, data, offset, pts, frameIndex);
- if (frame) {
- offset += frame.length;
- stamp = frame.sample.pts;
- frameIndex++;
- } else {
- // logger.log('Unable to parse Mpeg audio frame');
- break;
- }
- } else if (id3["a" /* default */].isHeader(data, offset)) {
- id3Data = id3["a" /* default */].getID3Data(data, offset);
- id3Samples.push({ pts: stamp, dts: stamp, data: id3Data });
- offset += id3Data.length;
- } else {
- // nothing found, keep looking
- offset++;
- }
- }
-
- this.remuxer.remux(track, { samples: [] }, { samples: id3Samples, inputTimeScale: 90000 }, { samples: [] }, timeOffset, contiguous, accurateTimeOffset);
- };
-
- MP3Demuxer.prototype.destroy = function destroy() {};
-
- return MP3Demuxer;
-}();
-
-/* harmony default export */ var mp3demuxer = (mp3demuxer_MP3Demuxer);
-// CONCATENATED MODULE: ./src/remux/aac-helper.js
-function aac_helper__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * AAC helper
- */
-
-var AAC = function () {
- function AAC() {
- aac_helper__classCallCheck(this, AAC);
- }
-
- AAC.getSilentFrame = function getSilentFrame(codec, channelCount) {
- switch (codec) {
- case 'mp4a.40.2':
- if (channelCount === 1) {
- return new Uint8Array([0x00, 0xc8, 0x00, 0x80, 0x23, 0x80]);
- } else if (channelCount === 2) {
- return new Uint8Array([0x21, 0x00, 0x49, 0x90, 0x02, 0x19, 0x00, 0x23, 0x80]);
- } else if (channelCount === 3) {
- return new Uint8Array([0x00, 0xc8, 0x00, 0x80, 0x20, 0x84, 0x01, 0x26, 0x40, 0x08, 0x64, 0x00, 0x8e]);
- } else if (channelCount === 4) {
- return new Uint8Array([0x00, 0xc8, 0x00, 0x80, 0x20, 0x84, 0x01, 0x26, 0x40, 0x08, 0x64, 0x00, 0x80, 0x2c, 0x80, 0x08, 0x02, 0x38]);
- } else if (channelCount === 5) {
- return new Uint8Array([0x00, 0xc8, 0x00, 0x80, 0x20, 0x84, 0x01, 0x26, 0x40, 0x08, 0x64, 0x00, 0x82, 0x30, 0x04, 0x99, 0x00, 0x21, 0x90, 0x02, 0x38]);
- } else if (channelCount === 6) {
- return new Uint8Array([0x00, 0xc8, 0x00, 0x80, 0x20, 0x84, 0x01, 0x26, 0x40, 0x08, 0x64, 0x00, 0x82, 0x30, 0x04, 0x99, 0x00, 0x21, 0x90, 0x02, 0x00, 0xb2, 0x00, 0x20, 0x08, 0xe0]);
- }
-
- break;
- // handle HE-AAC below (mp4a.40.5 / mp4a.40.29)
- default:
- if (channelCount === 1) {
- // ffmpeg -y -f lavfi -i "aevalsrc=0:d=0.05" -c:a libfdk_aac -profile:a aac_he -b:a 4k output.aac && hexdump -v -e '16/1 "0x%x," "\n"' -v output.aac
- return new Uint8Array([0x1, 0x40, 0x22, 0x80, 0xa3, 0x4e, 0xe6, 0x80, 0xba, 0x8, 0x0, 0x0, 0x0, 0x1c, 0x6, 0xf1, 0xc1, 0xa, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5e]);
- } else if (channelCount === 2) {
- // ffmpeg -y -f lavfi -i "aevalsrc=0|0:d=0.05" -c:a libfdk_aac -profile:a aac_he_v2 -b:a 4k output.aac && hexdump -v -e '16/1 "0x%x," "\n"' -v output.aac
- return new Uint8Array([0x1, 0x40, 0x22, 0x80, 0xa3, 0x5e, 0xe6, 0x80, 0xba, 0x8, 0x0, 0x0, 0x0, 0x0, 0x95, 0x0, 0x6, 0xf1, 0xa1, 0xa, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5e]);
- } else if (channelCount === 3) {
- // ffmpeg -y -f lavfi -i "aevalsrc=0|0|0:d=0.05" -c:a libfdk_aac -profile:a aac_he_v2 -b:a 4k output.aac && hexdump -v -e '16/1 "0x%x," "\n"' -v output.aac
- return new Uint8Array([0x1, 0x40, 0x22, 0x80, 0xa3, 0x5e, 0xe6, 0x80, 0xba, 0x8, 0x0, 0x0, 0x0, 0x0, 0x95, 0x0, 0x6, 0xf1, 0xa1, 0xa, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5e]);
- }
- break;
- }
- return null;
- };
-
- return AAC;
-}();
-
-/* harmony default export */ var aac_helper = (AAC);
-// CONCATENATED MODULE: ./src/remux/mp4-generator.js
-function mp4_generator__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * Generate MP4 Box
-*/
-
-var UINT32_MAX = Math.pow(2, 32) - 1;
-
-var MP4 = function () {
- function MP4() {
- mp4_generator__classCallCheck(this, MP4);
- }
-
- MP4.init = function init() {
- MP4.types = {
- avc1: [], // codingname
- avcC: [],
- btrt: [],
- dinf: [],
- dref: [],
- esds: [],
- ftyp: [],
- hdlr: [],
- mdat: [],
- mdhd: [],
- mdia: [],
- mfhd: [],
- minf: [],
- moof: [],
- moov: [],
- mp4a: [],
- '.mp3': [],
- mvex: [],
- mvhd: [],
- pasp: [],
- sdtp: [],
- stbl: [],
- stco: [],
- stsc: [],
- stsd: [],
- stsz: [],
- stts: [],
- tfdt: [],
- tfhd: [],
- traf: [],
- trak: [],
- trun: [],
- trex: [],
- tkhd: [],
- vmhd: [],
- smhd: []
- };
-
- var i = void 0;
- for (i in MP4.types) {
- if (MP4.types.hasOwnProperty(i)) {
- MP4.types[i] = [i.charCodeAt(0), i.charCodeAt(1), i.charCodeAt(2), i.charCodeAt(3)];
- }
- }
-
- var videoHdlr = new Uint8Array([0x00, // version 0
- 0x00, 0x00, 0x00, // flags
- 0x00, 0x00, 0x00, 0x00, // pre_defined
- 0x76, 0x69, 0x64, 0x65, // handler_type: 'vide'
- 0x00, 0x00, 0x00, 0x00, // reserved
- 0x00, 0x00, 0x00, 0x00, // reserved
- 0x00, 0x00, 0x00, 0x00, // reserved
- 0x56, 0x69, 0x64, 0x65, 0x6f, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00 // name: 'VideoHandler'
- ]);
-
- var audioHdlr = new Uint8Array([0x00, // version 0
- 0x00, 0x00, 0x00, // flags
- 0x00, 0x00, 0x00, 0x00, // pre_defined
- 0x73, 0x6f, 0x75, 0x6e, // handler_type: 'soun'
- 0x00, 0x00, 0x00, 0x00, // reserved
- 0x00, 0x00, 0x00, 0x00, // reserved
- 0x00, 0x00, 0x00, 0x00, // reserved
- 0x53, 0x6f, 0x75, 0x6e, 0x64, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00 // name: 'SoundHandler'
- ]);
-
- MP4.HDLR_TYPES = {
- 'video': videoHdlr,
- 'audio': audioHdlr
- };
-
- var dref = new Uint8Array([0x00, // version 0
- 0x00, 0x00, 0x00, // flags
- 0x00, 0x00, 0x00, 0x01, // entry_count
- 0x00, 0x00, 0x00, 0x0c, // entry_size
- 0x75, 0x72, 0x6c, 0x20, // 'url' type
- 0x00, // version 0
- 0x00, 0x00, 0x01 // entry_flags
- ]);
-
- var stco = new Uint8Array([0x00, // version
- 0x00, 0x00, 0x00, // flags
- 0x00, 0x00, 0x00, 0x00 // entry_count
- ]);
-
- MP4.STTS = MP4.STSC = MP4.STCO = stco;
-
- MP4.STSZ = new Uint8Array([0x00, // version
- 0x00, 0x00, 0x00, // flags
- 0x00, 0x00, 0x00, 0x00, // sample_size
- 0x00, 0x00, 0x00, 0x00 // sample_count
- ]);
- MP4.VMHD = new Uint8Array([0x00, // version
- 0x00, 0x00, 0x01, // flags
- 0x00, 0x00, // graphicsmode
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 // opcolor
- ]);
- MP4.SMHD = new Uint8Array([0x00, // version
- 0x00, 0x00, 0x00, // flags
- 0x00, 0x00, // balance
- 0x00, 0x00 // reserved
- ]);
-
- MP4.STSD = new Uint8Array([0x00, // version 0
- 0x00, 0x00, 0x00, // flags
- 0x00, 0x00, 0x00, 0x01]); // entry_count
-
- var majorBrand = new Uint8Array([105, 115, 111, 109]); // isom
- var avc1Brand = new Uint8Array([97, 118, 99, 49]); // avc1
- var minorVersion = new Uint8Array([0, 0, 0, 1]);
-
- MP4.FTYP = MP4.box(MP4.types.ftyp, majorBrand, minorVersion, majorBrand, avc1Brand);
- MP4.DINF = MP4.box(MP4.types.dinf, MP4.box(MP4.types.dref, dref));
- };
-
- MP4.box = function box(type) {
- var payload = Array.prototype.slice.call(arguments, 1),
- size = 8,
- i = payload.length,
- len = i,
- result = void 0;
- // calculate the total size we need to allocate
- while (i--) {
- size += payload[i].byteLength;
- }
-
- result = new Uint8Array(size);
- result[0] = size >> 24 & 0xff;
- result[1] = size >> 16 & 0xff;
- result[2] = size >> 8 & 0xff;
- result[3] = size & 0xff;
- result.set(type, 4);
- // copy the payload into the result
- for (i = 0, size = 8; i < len; i++) {
- // copy payload[i] array @ offset size
- result.set(payload[i], size);
- size += payload[i].byteLength;
- }
- return result;
- };
-
- MP4.hdlr = function hdlr(type) {
- return MP4.box(MP4.types.hdlr, MP4.HDLR_TYPES[type]);
- };
-
- MP4.mdat = function mdat(data) {
- return MP4.box(MP4.types.mdat, data);
- };
-
- MP4.mdhd = function mdhd(timescale, duration) {
- duration *= timescale;
- var upperWordDuration = Math.floor(duration / (UINT32_MAX + 1));
- var lowerWordDuration = Math.floor(duration % (UINT32_MAX + 1));
- return MP4.box(MP4.types.mdhd, new Uint8Array([0x01, // version 1
- 0x00, 0x00, 0x00, // flags
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, // creation_time
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, // modification_time
- timescale >> 24 & 0xFF, timescale >> 16 & 0xFF, timescale >> 8 & 0xFF, timescale & 0xFF, // timescale
- upperWordDuration >> 24, upperWordDuration >> 16 & 0xFF, upperWordDuration >> 8 & 0xFF, upperWordDuration & 0xFF, lowerWordDuration >> 24, lowerWordDuration >> 16 & 0xFF, lowerWordDuration >> 8 & 0xFF, lowerWordDuration & 0xFF, 0x55, 0xc4, // 'und' language (undetermined)
- 0x00, 0x00]));
- };
-
- MP4.mdia = function mdia(track) {
- return MP4.box(MP4.types.mdia, MP4.mdhd(track.timescale, track.duration), MP4.hdlr(track.type), MP4.minf(track));
- };
-
- MP4.mfhd = function mfhd(sequenceNumber) {
- return MP4.box(MP4.types.mfhd, new Uint8Array([0x00, 0x00, 0x00, 0x00, // flags
- sequenceNumber >> 24, sequenceNumber >> 16 & 0xFF, sequenceNumber >> 8 & 0xFF, sequenceNumber & 0xFF // sequence_number
- ]));
- };
-
- MP4.minf = function minf(track) {
- if (track.type === 'audio') {
- return MP4.box(MP4.types.minf, MP4.box(MP4.types.smhd, MP4.SMHD), MP4.DINF, MP4.stbl(track));
- } else {
- return MP4.box(MP4.types.minf, MP4.box(MP4.types.vmhd, MP4.VMHD), MP4.DINF, MP4.stbl(track));
- }
- };
-
- MP4.moof = function moof(sn, baseMediaDecodeTime, track) {
- return MP4.box(MP4.types.moof, MP4.mfhd(sn), MP4.traf(track, baseMediaDecodeTime));
- };
- /**
- * @param tracks... (optional) {array} the tracks associated with this movie
- */
-
-
- MP4.moov = function moov(tracks) {
- var i = tracks.length,
- boxes = [];
-
- while (i--) {
- boxes[i] = MP4.trak(tracks[i]);
- }
-
- return MP4.box.apply(null, [MP4.types.moov, MP4.mvhd(tracks[0].timescale, tracks[0].duration)].concat(boxes).concat(MP4.mvex(tracks)));
- };
-
- MP4.mvex = function mvex(tracks) {
- var i = tracks.length,
- boxes = [];
-
- while (i--) {
- boxes[i] = MP4.trex(tracks[i]);
- }
-
- return MP4.box.apply(null, [MP4.types.mvex].concat(boxes));
- };
-
- MP4.mvhd = function mvhd(timescale, duration) {
- duration *= timescale;
- var upperWordDuration = Math.floor(duration / (UINT32_MAX + 1));
- var lowerWordDuration = Math.floor(duration % (UINT32_MAX + 1));
- var bytes = new Uint8Array([0x01, // version 1
- 0x00, 0x00, 0x00, // flags
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, // creation_time
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, // modification_time
- timescale >> 24 & 0xFF, timescale >> 16 & 0xFF, timescale >> 8 & 0xFF, timescale & 0xFF, // timescale
- upperWordDuration >> 24, upperWordDuration >> 16 & 0xFF, upperWordDuration >> 8 & 0xFF, upperWordDuration & 0xFF, lowerWordDuration >> 24, lowerWordDuration >> 16 & 0xFF, lowerWordDuration >> 8 & 0xFF, lowerWordDuration & 0xFF, 0x00, 0x01, 0x00, 0x00, // 1.0 rate
- 0x01, 0x00, // 1.0 volume
- 0x00, 0x00, // reserved
- 0x00, 0x00, 0x00, 0x00, // reserved
- 0x00, 0x00, 0x00, 0x00, // reserved
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // transformation: unity matrix
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // pre_defined
- 0xff, 0xff, 0xff, 0xff // next_track_ID
- ]);
- return MP4.box(MP4.types.mvhd, bytes);
- };
-
- MP4.sdtp = function sdtp(track) {
- var samples = track.samples || [],
- bytes = new Uint8Array(4 + samples.length),
- flags = void 0,
- i = void 0;
- // leave the full box header (4 bytes) all zero
- // write the sample table
- for (i = 0; i < samples.length; i++) {
- flags = samples[i].flags;
- bytes[i + 4] = flags.dependsOn << 4 | flags.isDependedOn << 2 | flags.hasRedundancy;
- }
-
- return MP4.box(MP4.types.sdtp, bytes);
- };
-
- MP4.stbl = function stbl(track) {
- return MP4.box(MP4.types.stbl, MP4.stsd(track), MP4.box(MP4.types.stts, MP4.STTS), MP4.box(MP4.types.stsc, MP4.STSC), MP4.box(MP4.types.stsz, MP4.STSZ), MP4.box(MP4.types.stco, MP4.STCO));
- };
-
- MP4.avc1 = function avc1(track) {
- var sps = [],
- pps = [],
- i = void 0,
- data = void 0,
- len = void 0;
- // assemble the SPSs
-
- for (i = 0; i < track.sps.length; i++) {
- data = track.sps[i];
- len = data.byteLength;
- sps.push(len >>> 8 & 0xFF);
- sps.push(len & 0xFF);
-
- // SPS
- sps = sps.concat(Array.prototype.slice.call(data));
- }
-
- // assemble the PPSs
- for (i = 0; i < track.pps.length; i++) {
- data = track.pps[i];
- len = data.byteLength;
- pps.push(len >>> 8 & 0xFF);
- pps.push(len & 0xFF);
-
- pps = pps.concat(Array.prototype.slice.call(data));
- }
-
- var avcc = MP4.box(MP4.types.avcC, new Uint8Array([0x01, // version
- sps[3], // profile
- sps[4], // profile compat
- sps[5], // level
- 0xfc | 3, // lengthSizeMinusOne, hard-coded to 4 bytes
- 0xE0 | track.sps.length // 3bit reserved (111) + numOfSequenceParameterSets
- ].concat(sps).concat([track.pps.length // numOfPictureParameterSets
- ]).concat(pps))),
- // "PPS"
- width = track.width,
- height = track.height,
- hSpacing = track.pixelRatio[0],
- vSpacing = track.pixelRatio[1];
-
- return MP4.box(MP4.types.avc1, new Uint8Array([0x00, 0x00, 0x00, // reserved
- 0x00, 0x00, 0x00, // reserved
- 0x00, 0x01, // data_reference_index
- 0x00, 0x00, // pre_defined
- 0x00, 0x00, // reserved
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // pre_defined
- width >> 8 & 0xFF, width & 0xff, // width
- height >> 8 & 0xFF, height & 0xff, // height
- 0x00, 0x48, 0x00, 0x00, // horizresolution
- 0x00, 0x48, 0x00, 0x00, // vertresolution
- 0x00, 0x00, 0x00, 0x00, // reserved
- 0x00, 0x01, // frame_count
- 0x12, 0x64, 0x61, 0x69, 0x6C, // dailymotion/hls.js
- 0x79, 0x6D, 0x6F, 0x74, 0x69, 0x6F, 0x6E, 0x2F, 0x68, 0x6C, 0x73, 0x2E, 0x6A, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // compressorname
- 0x00, 0x18, // depth = 24
- 0x11, 0x11]), // pre_defined = -1
- avcc, MP4.box(MP4.types.btrt, new Uint8Array([0x00, 0x1c, 0x9c, 0x80, // bufferSizeDB
- 0x00, 0x2d, 0xc6, 0xc0, // maxBitrate
- 0x00, 0x2d, 0xc6, 0xc0])), // avgBitrate
- MP4.box(MP4.types.pasp, new Uint8Array([hSpacing >> 24, // hSpacing
- hSpacing >> 16 & 0xFF, hSpacing >> 8 & 0xFF, hSpacing & 0xFF, vSpacing >> 24, // vSpacing
- vSpacing >> 16 & 0xFF, vSpacing >> 8 & 0xFF, vSpacing & 0xFF])));
- };
-
- MP4.esds = function esds(track) {
- var configlen = track.config.length;
- return new Uint8Array([0x00, // version 0
- 0x00, 0x00, 0x00, // flags
-
- 0x03, // descriptor_type
- 0x17 + configlen, // length
- 0x00, 0x01, // es_id
- 0x00, // stream_priority
-
- 0x04, // descriptor_type
- 0x0f + configlen, // length
- 0x40, // codec : mpeg4_audio
- 0x15, // stream_type
- 0x00, 0x00, 0x00, // buffer_size
- 0x00, 0x00, 0x00, 0x00, // maxBitrate
- 0x00, 0x00, 0x00, 0x00, // avgBitrate
-
- 0x05 // descriptor_type
- ].concat([configlen]).concat(track.config).concat([0x06, 0x01, 0x02])); // GASpecificConfig)); // length + audio config descriptor
- };
-
- MP4.mp4a = function mp4a(track) {
- var samplerate = track.samplerate;
- return MP4.box(MP4.types.mp4a, new Uint8Array([0x00, 0x00, 0x00, // reserved
- 0x00, 0x00, 0x00, // reserved
- 0x00, 0x01, // data_reference_index
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // reserved
- 0x00, track.channelCount, // channelcount
- 0x00, 0x10, // sampleSize:16bits
- 0x00, 0x00, 0x00, 0x00, // reserved2
- samplerate >> 8 & 0xFF, samplerate & 0xff, //
- 0x00, 0x00]), MP4.box(MP4.types.esds, MP4.esds(track)));
- };
-
- MP4.mp3 = function mp3(track) {
- var samplerate = track.samplerate;
- return MP4.box(MP4.types['.mp3'], new Uint8Array([0x00, 0x00, 0x00, // reserved
- 0x00, 0x00, 0x00, // reserved
- 0x00, 0x01, // data_reference_index
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // reserved
- 0x00, track.channelCount, // channelcount
- 0x00, 0x10, // sampleSize:16bits
- 0x00, 0x00, 0x00, 0x00, // reserved2
- samplerate >> 8 & 0xFF, samplerate & 0xff, //
- 0x00, 0x00]));
- };
-
- MP4.stsd = function stsd(track) {
- if (track.type === 'audio') {
- if (!track.isAAC && track.codec === 'mp3') {
- return MP4.box(MP4.types.stsd, MP4.STSD, MP4.mp3(track));
- }
-
- return MP4.box(MP4.types.stsd, MP4.STSD, MP4.mp4a(track));
- } else {
- return MP4.box(MP4.types.stsd, MP4.STSD, MP4.avc1(track));
- }
- };
-
- MP4.tkhd = function tkhd(track) {
- var id = track.id,
- duration = track.duration * track.timescale,
- width = track.width,
- height = track.height,
- upperWordDuration = Math.floor(duration / (UINT32_MAX + 1)),
- lowerWordDuration = Math.floor(duration % (UINT32_MAX + 1));
- return MP4.box(MP4.types.tkhd, new Uint8Array([0x01, // version 1
- 0x00, 0x00, 0x07, // flags
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, // creation_time
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, // modification_time
- id >> 24 & 0xFF, id >> 16 & 0xFF, id >> 8 & 0xFF, id & 0xFF, // track_ID
- 0x00, 0x00, 0x00, 0x00, // reserved
- upperWordDuration >> 24, upperWordDuration >> 16 & 0xFF, upperWordDuration >> 8 & 0xFF, upperWordDuration & 0xFF, lowerWordDuration >> 24, lowerWordDuration >> 16 & 0xFF, lowerWordDuration >> 8 & 0xFF, lowerWordDuration & 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // reserved
- 0x00, 0x00, // layer
- 0x00, 0x00, // alternate_group
- 0x00, 0x00, // non-audio track volume
- 0x00, 0x00, // reserved
- 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // transformation: unity matrix
- width >> 8 & 0xFF, width & 0xFF, 0x00, 0x00, // width
- height >> 8 & 0xFF, height & 0xFF, 0x00, 0x00 // height
- ]));
- };
-
- MP4.traf = function traf(track, baseMediaDecodeTime) {
- var sampleDependencyTable = MP4.sdtp(track),
- id = track.id,
- upperWordBaseMediaDecodeTime = Math.floor(baseMediaDecodeTime / (UINT32_MAX + 1)),
- lowerWordBaseMediaDecodeTime = Math.floor(baseMediaDecodeTime % (UINT32_MAX + 1));
- return MP4.box(MP4.types.traf, MP4.box(MP4.types.tfhd, new Uint8Array([0x00, // version 0
- 0x00, 0x00, 0x00, // flags
- id >> 24, id >> 16 & 0XFF, id >> 8 & 0XFF, id & 0xFF]) // track_ID
- ), MP4.box(MP4.types.tfdt, new Uint8Array([0x01, // version 1
- 0x00, 0x00, 0x00, // flags
- upperWordBaseMediaDecodeTime >> 24, upperWordBaseMediaDecodeTime >> 16 & 0XFF, upperWordBaseMediaDecodeTime >> 8 & 0XFF, upperWordBaseMediaDecodeTime & 0xFF, lowerWordBaseMediaDecodeTime >> 24, lowerWordBaseMediaDecodeTime >> 16 & 0XFF, lowerWordBaseMediaDecodeTime >> 8 & 0XFF, lowerWordBaseMediaDecodeTime & 0xFF])), MP4.trun(track, sampleDependencyTable.length + 16 + // tfhd
- 20 + // tfdt
- 8 + // traf header
- 16 + // mfhd
- 8 + // moof header
- 8), // mdat header
- sampleDependencyTable);
- };
-
- /**
- * Generate a track box.
- * @param track {object} a track definition
- * @return {Uint8Array} the track box
- */
-
-
- MP4.trak = function trak(track) {
- track.duration = track.duration || 0xffffffff;
- return MP4.box(MP4.types.trak, MP4.tkhd(track), MP4.mdia(track));
- };
-
- MP4.trex = function trex(track) {
- var id = track.id;
- return MP4.box(MP4.types.trex, new Uint8Array([0x00, // version 0
- 0x00, 0x00, 0x00, // flags
- id >> 24, id >> 16 & 0XFF, id >> 8 & 0XFF, id & 0xFF, // track_ID
- 0x00, 0x00, 0x00, 0x01, // default_sample_description_index
- 0x00, 0x00, 0x00, 0x00, // default_sample_duration
- 0x00, 0x00, 0x00, 0x00, // default_sample_size
- 0x00, 0x01, 0x00, 0x01 // default_sample_flags
- ]));
- };
-
- MP4.trun = function trun(track, offset) {
- var samples = track.samples || [],
- len = samples.length,
- arraylen = 12 + 16 * len,
- array = new Uint8Array(arraylen),
- i = void 0,
- sample = void 0,
- duration = void 0,
- size = void 0,
- flags = void 0,
- cts = void 0;
- offset += 8 + arraylen;
- array.set([0x00, // version 0
- 0x00, 0x0f, 0x01, // flags
- len >>> 24 & 0xFF, len >>> 16 & 0xFF, len >>> 8 & 0xFF, len & 0xFF, // sample_count
- offset >>> 24 & 0xFF, offset >>> 16 & 0xFF, offset >>> 8 & 0xFF, offset & 0xFF // data_offset
- ], 0);
- for (i = 0; i < len; i++) {
- sample = samples[i];
- duration = sample.duration;
- size = sample.size;
- flags = sample.flags;
- cts = sample.cts;
- array.set([duration >>> 24 & 0xFF, duration >>> 16 & 0xFF, duration >>> 8 & 0xFF, duration & 0xFF, // sample_duration
- size >>> 24 & 0xFF, size >>> 16 & 0xFF, size >>> 8 & 0xFF, size & 0xFF, // sample_size
- flags.isLeading << 2 | flags.dependsOn, flags.isDependedOn << 6 | flags.hasRedundancy << 4 | flags.paddingValue << 1 | flags.isNonSync, flags.degradPrio & 0xF0 << 8, flags.degradPrio & 0x0F, // sample_flags
- cts >>> 24 & 0xFF, cts >>> 16 & 0xFF, cts >>> 8 & 0xFF, cts & 0xFF // sample_composition_time_offset
- ], 12 + 16 * i);
- }
- return MP4.box(MP4.types.trun, array);
- };
-
- MP4.initSegment = function initSegment(tracks) {
- if (!MP4.types) {
- MP4.init();
- }
-
- var movie = MP4.moov(tracks),
- result = void 0;
- result = new Uint8Array(MP4.FTYP.byteLength + movie.byteLength);
- result.set(MP4.FTYP);
- result.set(movie, MP4.FTYP.byteLength);
- return result;
- };
-
- return MP4;
-}();
-
-/* harmony default export */ var mp4_generator = (MP4);
-// CONCATENATED MODULE: ./src/remux/mp4-remuxer.js
-function mp4_remuxer__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * fMP4 remuxer
-*/
-
-
-
-
-
-
-
-
-
-// 10 seconds
-var MAX_SILENT_FRAME_DURATION = 10 * 1000;
-
-var mp4_remuxer_MP4Remuxer = function () {
- function MP4Remuxer(observer, config, typeSupported, vendor) {
- mp4_remuxer__classCallCheck(this, MP4Remuxer);
-
- this.observer = observer;
- this.config = config;
- this.typeSupported = typeSupported;
- var userAgent = navigator.userAgent;
- this.isSafari = vendor && vendor.indexOf('Apple') > -1 && userAgent && !userAgent.match('CriOS');
- this.ISGenerated = false;
- }
-
- MP4Remuxer.prototype.destroy = function destroy() {};
-
- MP4Remuxer.prototype.resetTimeStamp = function resetTimeStamp(defaultTimeStamp) {
- this._initPTS = this._initDTS = defaultTimeStamp;
- };
-
- MP4Remuxer.prototype.resetInitSegment = function resetInitSegment() {
- this.ISGenerated = false;
- };
-
- MP4Remuxer.prototype.remux = function remux(audioTrack, videoTrack, id3Track, textTrack, timeOffset, contiguous, accurateTimeOffset) {
- // generate Init Segment if needed
- if (!this.ISGenerated) {
- this.generateIS(audioTrack, videoTrack, timeOffset);
- }
-
- if (this.ISGenerated) {
- var nbAudioSamples = audioTrack.samples.length;
- var nbVideoSamples = videoTrack.samples.length;
- var audioTimeOffset = timeOffset;
- var videoTimeOffset = timeOffset;
- if (nbAudioSamples && nbVideoSamples) {
- // timeOffset is expected to be the offset of the first timestamp of this fragment (first DTS)
- // if first audio DTS is not aligned with first video DTS then we need to take that into account
- // when providing timeOffset to remuxAudio / remuxVideo. if we don't do that, there might be a permanent / small
- // drift between audio and video streams
- var audiovideoDeltaDts = (audioTrack.samples[0].dts - videoTrack.samples[0].dts) / videoTrack.inputTimeScale;
- audioTimeOffset += Math.max(0, audiovideoDeltaDts);
- videoTimeOffset += Math.max(0, -audiovideoDeltaDts);
- }
- // Purposefully remuxing audio before video, so that remuxVideo can use nextAudioPts, which is
- // calculated in remuxAudio.
- // logger.log('nb AAC samples:' + audioTrack.samples.length);
- if (nbAudioSamples) {
- // if initSegment was generated without video samples, regenerate it again
- if (!audioTrack.timescale) {
- logger["b" /* logger */].warn('regenerate InitSegment as audio detected');
- this.generateIS(audioTrack, videoTrack, timeOffset);
- }
- var audioData = this.remuxAudio(audioTrack, audioTimeOffset, contiguous, accurateTimeOffset);
- // logger.log('nb AVC samples:' + videoTrack.samples.length);
- if (nbVideoSamples) {
- var audioTrackLength = void 0;
- if (audioData) {
- audioTrackLength = audioData.endPTS - audioData.startPTS;
- }
-
- // if initSegment was generated without video samples, regenerate it again
- if (!videoTrack.timescale) {
- logger["b" /* logger */].warn('regenerate InitSegment as video detected');
- this.generateIS(audioTrack, videoTrack, timeOffset);
- }
- this.remuxVideo(videoTrack, videoTimeOffset, contiguous, audioTrackLength, accurateTimeOffset);
- }
- } else {
- // logger.log('nb AVC samples:' + videoTrack.samples.length);
- if (nbVideoSamples) {
- var videoData = this.remuxVideo(videoTrack, videoTimeOffset, contiguous, 0, accurateTimeOffset);
- if (videoData && audioTrack.codec) {
- this.remuxEmptyAudio(audioTrack, audioTimeOffset, contiguous, videoData);
- }
- }
- }
- }
- // logger.log('nb ID3 samples:' + audioTrack.samples.length);
- if (id3Track.samples.length) {
- this.remuxID3(id3Track, timeOffset);
- }
-
- // logger.log('nb ID3 samples:' + audioTrack.samples.length);
- if (textTrack.samples.length) {
- this.remuxText(textTrack, timeOffset);
- }
-
- // notify end of parsing
- this.observer.trigger(events["a" /* default */].FRAG_PARSED);
- };
-
- MP4Remuxer.prototype.generateIS = function generateIS(audioTrack, videoTrack, timeOffset) {
- var observer = this.observer,
- audioSamples = audioTrack.samples,
- videoSamples = videoTrack.samples,
- typeSupported = this.typeSupported,
- container = 'audio/mp4',
- tracks = {},
- data = { tracks: tracks },
- computePTSDTS = this._initPTS === undefined,
- initPTS = void 0,
- initDTS = void 0;
-
- if (computePTSDTS) {
- initPTS = initDTS = Infinity;
- }
-
- if (audioTrack.config && audioSamples.length) {
- // let's use audio sampling rate as MP4 time scale.
- // rationale is that there is a integer nb of audio frames per audio sample (1024 for AAC)
- // using audio sampling rate here helps having an integer MP4 frame duration
- // this avoids potential rounding issue and AV sync issue
- audioTrack.timescale = audioTrack.samplerate;
- logger["b" /* logger */].log('audio sampling rate : ' + audioTrack.samplerate);
- if (!audioTrack.isAAC) {
- if (typeSupported.mpeg) {
- // Chrome and Safari
- container = 'audio/mpeg';
- audioTrack.codec = '';
- } else if (typeSupported.mp3) {
- // Firefox
- audioTrack.codec = 'mp3';
- }
- }
- tracks.audio = {
- container: container,
- codec: audioTrack.codec,
- initSegment: !audioTrack.isAAC && typeSupported.mpeg ? new Uint8Array() : mp4_generator.initSegment([audioTrack]),
- metadata: {
- channelCount: audioTrack.channelCount
- }
- };
- if (computePTSDTS) {
- // remember first PTS of this demuxing context. for audio, PTS = DTS
- initPTS = initDTS = audioSamples[0].pts - audioTrack.inputTimeScale * timeOffset;
- }
- }
-
- if (videoTrack.sps && videoTrack.pps && videoSamples.length) {
- // let's use input time scale as MP4 video timescale
- // we use input time scale straight away to avoid rounding issues on frame duration / cts computation
- var inputTimeScale = videoTrack.inputTimeScale;
- videoTrack.timescale = inputTimeScale;
- tracks.video = {
- container: 'video/mp4',
- codec: videoTrack.codec,
- initSegment: mp4_generator.initSegment([videoTrack]),
- metadata: {
- width: videoTrack.width,
- height: videoTrack.height
- }
- };
- if (computePTSDTS) {
- initPTS = Math.min(initPTS, videoSamples[0].pts - inputTimeScale * timeOffset);
- initDTS = Math.min(initDTS, videoSamples[0].dts - inputTimeScale * timeOffset);
- this.observer.trigger(events["a" /* default */].INIT_PTS_FOUND, { initPTS: initPTS });
- }
- }
-
- if (Object.keys(tracks).length) {
- observer.trigger(events["a" /* default */].FRAG_PARSING_INIT_SEGMENT, data);
- this.ISGenerated = true;
- if (computePTSDTS) {
- this._initPTS = initPTS;
- this._initDTS = initDTS;
- }
- } else {
- observer.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].MEDIA_ERROR, details: errors["a" /* ErrorDetails */].FRAG_PARSING_ERROR, fatal: false, reason: 'no audio/video samples found' });
- }
- };
-
- MP4Remuxer.prototype.remuxVideo = function remuxVideo(track, timeOffset, contiguous, audioTrackLength, accurateTimeOffset) {
- var offset = 8,
- timeScale = track.timescale,
- mp4SampleDuration = void 0,
- mdat = void 0,
- moof = void 0,
- firstPTS = void 0,
- firstDTS = void 0,
- nextDTS = void 0,
- lastPTS = void 0,
- lastDTS = void 0,
- inputSamples = track.samples,
- outputSamples = [],
- nbSamples = inputSamples.length,
- ptsNormalize = this._PTSNormalize,
- initDTS = this._initDTS;
-
- // for (let i = 0; i < track.samples.length; i++) {
- // let avcSample = track.samples[i];
- // let units = avcSample.units;
- // let unitsString = '';
- // for (let j = 0; j < units.length ; j++) {
- // unitsString += units[j].type + ',';
- // if (units[j].data.length < 500) {
- // unitsString += Hex.hexDump(units[j].data);
- // }
- // }
- // logger.log(avcSample.pts + '/' + avcSample.dts + ',' + unitsString + avcSample.units.length);
- // }
-
- // if parsed fragment is contiguous with last one, let's use last DTS value as reference
- var nextAvcDts = this.nextAvcDts;
-
- var isSafari = this.isSafari;
-
- if (nbSamples === 0) {
- return;
- }
-
- // Safari does not like overlapping DTS on consecutive fragments. let's use nextAvcDts to overcome this if fragments are consecutive
- if (isSafari) {
- // also consider consecutive fragments as being contiguous (even if a level switch occurs),
- // for sake of clarity:
- // consecutive fragments are frags with
- // - less than 100ms gaps between new time offset (if accurate) and next expected PTS OR
- // - less than 200 ms PTS gaps (timeScale/5)
- contiguous |= inputSamples.length && nextAvcDts && (accurateTimeOffset && Math.abs(timeOffset - nextAvcDts / timeScale) < 0.1 || Math.abs(inputSamples[0].pts - nextAvcDts - initDTS) < timeScale / 5);
- }
-
- if (!contiguous) {
- // if not contiguous, let's use target timeOffset
- nextAvcDts = timeOffset * timeScale;
- }
-
- // PTS is coded on 33bits, and can loop from -2^32 to 2^32
- // ptsNormalize will make PTS/DTS value monotonic, we use last known DTS value as reference value
- inputSamples.forEach(function (sample) {
- sample.pts = ptsNormalize(sample.pts - initDTS, nextAvcDts);
- sample.dts = ptsNormalize(sample.dts - initDTS, nextAvcDts);
- });
-
- // sort video samples by DTS then PTS then demux id order
- inputSamples.sort(function (a, b) {
- var deltadts = a.dts - b.dts;
- var deltapts = a.pts - b.pts;
- return deltadts || deltapts || a.id - b.id;
- });
-
- // handle broken streams with PTS < DTS, tolerance up 200ms (18000 in 90kHz timescale)
- var PTSDTSshift = inputSamples.reduce(function (prev, curr) {
- return Math.max(Math.min(prev, curr.pts - curr.dts), -18000);
- }, 0);
- if (PTSDTSshift < 0) {
- logger["b" /* logger */].warn('PTS < DTS detected in video samples, shifting DTS by ' + Math.round(PTSDTSshift / 90) + ' ms to overcome this issue');
- for (var i = 0; i < inputSamples.length; i++) {
- inputSamples[i].dts += PTSDTSshift;
- }
- }
-
- // compute first DTS and last DTS, normalize them against reference value
- var sample = inputSamples[0];
- firstDTS = Math.max(sample.dts, 0);
- firstPTS = Math.max(sample.pts, 0);
-
- // check timestamp continuity accross consecutive fragments (this is to remove inter-fragment gap/hole)
- var delta = Math.round((firstDTS - nextAvcDts) / 90);
- // if fragment are contiguous, detect hole/overlapping between fragments
- if (contiguous) {
- if (delta) {
- if (delta > 1) {
- logger["b" /* logger */].log('AVC:' + delta + ' ms hole between fragments detected,filling it');
- } else if (delta < -1) {
- logger["b" /* logger */].log('AVC:' + -delta + ' ms overlapping between fragments detected');
- }
-
- // remove hole/gap : set DTS to next expected DTS
- firstDTS = nextAvcDts;
- inputSamples[0].dts = firstDTS;
- // offset PTS as well, ensure that PTS is smaller or equal than new DTS
- firstPTS = Math.max(firstPTS - delta, nextAvcDts);
- inputSamples[0].pts = firstPTS;
- logger["b" /* logger */].log('Video/PTS/DTS adjusted: ' + Math.round(firstPTS / 90) + '/' + Math.round(firstDTS / 90) + ',delta:' + delta + ' ms');
- }
- }
- nextDTS = firstDTS;
-
- // compute lastPTS/lastDTS
- sample = inputSamples[inputSamples.length - 1];
- lastDTS = Math.max(sample.dts, 0);
- lastPTS = Math.max(sample.pts, 0, lastDTS);
-
- // on Safari let's signal the same sample duration for all samples
- // sample duration (as expected by trun MP4 boxes), should be the delta between sample DTS
- // set this constant duration as being the avg delta between consecutive DTS.
- if (isSafari) {
- mp4SampleDuration = Math.round((lastDTS - firstDTS) / (inputSamples.length - 1));
- }
-
- var nbNalu = 0,
- naluLen = 0;
- for (var _i = 0; _i < nbSamples; _i++) {
- // compute total/avc sample length and nb of NAL units
- var _sample = inputSamples[_i],
- units = _sample.units,
- nbUnits = units.length,
- sampleLen = 0;
- for (var j = 0; j < nbUnits; j++) {
- sampleLen += units[j].data.length;
- }
-
- naluLen += sampleLen;
- nbNalu += nbUnits;
- _sample.length = sampleLen;
-
- // normalize PTS/DTS
- if (isSafari) {
- // sample DTS is computed using a constant decoding offset (mp4SampleDuration) between samples
- _sample.dts = firstDTS + _i * mp4SampleDuration;
- } else {
- // ensure sample monotonic DTS
- _sample.dts = Math.max(_sample.dts, firstDTS);
- }
- // ensure that computed value is greater or equal than sample DTS
- _sample.pts = Math.max(_sample.pts, _sample.dts);
- }
-
- /* concatenate the video data and construct the mdat in place
- (need 8 more bytes to fill length and mpdat type) */
- var mdatSize = naluLen + 4 * nbNalu + 8;
- try {
- mdat = new Uint8Array(mdatSize);
- } catch (err) {
- this.observer.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].MUX_ERROR, details: errors["a" /* ErrorDetails */].REMUX_ALLOC_ERROR, fatal: false, bytes: mdatSize, reason: 'fail allocating video mdat ' + mdatSize });
- return;
- }
- var view = new DataView(mdat.buffer);
- view.setUint32(0, mdatSize);
- mdat.set(mp4_generator.types.mdat, 4);
-
- for (var _i2 = 0; _i2 < nbSamples; _i2++) {
- var avcSample = inputSamples[_i2],
- avcSampleUnits = avcSample.units,
- mp4SampleLength = 0,
- compositionTimeOffset = void 0;
- // convert NALU bitstream to MP4 format (prepend NALU with size field)
- for (var _j = 0, _nbUnits = avcSampleUnits.length; _j < _nbUnits; _j++) {
- var unit = avcSampleUnits[_j],
- unitData = unit.data,
- unitDataLen = unit.data.byteLength;
- view.setUint32(offset, unitDataLen);
- offset += 4;
- mdat.set(unitData, offset);
- offset += unitDataLen;
- mp4SampleLength += 4 + unitDataLen;
- }
-
- if (!isSafari) {
- // expected sample duration is the Decoding Timestamp diff of consecutive samples
- if (_i2 < nbSamples - 1) {
- mp4SampleDuration = inputSamples[_i2 + 1].dts - avcSample.dts;
- } else {
- var config = this.config,
- lastFrameDuration = avcSample.dts - inputSamples[_i2 > 0 ? _i2 - 1 : _i2].dts;
- if (config.stretchShortVideoTrack) {
- // In some cases, a segment's audio track duration may exceed the video track duration.
- // Since we've already remuxed audio, and we know how long the audio track is, we look to
- // see if the delta to the next segment is longer than maxBufferHole.
- // If so, playback would potentially get stuck, so we artificially inflate
- // the duration of the last frame to minimize any potential gap between segments.
- var maxBufferHole = config.maxBufferHole,
- gapTolerance = Math.floor(maxBufferHole * timeScale),
- deltaToFrameEnd = (audioTrackLength ? firstPTS + audioTrackLength * timeScale : this.nextAudioPts) - avcSample.pts;
- if (deltaToFrameEnd > gapTolerance) {
- // We subtract lastFrameDuration from deltaToFrameEnd to try to prevent any video
- // frame overlap. maxBufferHole should be >> lastFrameDuration anyway.
- mp4SampleDuration = deltaToFrameEnd - lastFrameDuration;
- if (mp4SampleDuration < 0) {
- mp4SampleDuration = lastFrameDuration;
- }
-
- logger["b" /* logger */].log('It is approximately ' + deltaToFrameEnd / 90 + ' ms to the next segment; using duration ' + mp4SampleDuration / 90 + ' ms for the last video frame.');
- } else {
- mp4SampleDuration = lastFrameDuration;
- }
- } else {
- mp4SampleDuration = lastFrameDuration;
- }
- }
- compositionTimeOffset = Math.round(avcSample.pts - avcSample.dts);
- } else {
- compositionTimeOffset = Math.max(0, mp4SampleDuration * Math.round((avcSample.pts - avcSample.dts) / mp4SampleDuration));
- }
-
- // console.log('PTS/DTS/initDTS/normPTS/normDTS/relative PTS : ${avcSample.pts}/${avcSample.dts}/${initDTS}/${ptsnorm}/${dtsnorm}/${(avcSample.pts/4294967296).toFixed(3)}');
- outputSamples.push({
- size: mp4SampleLength,
- // constant duration
- duration: mp4SampleDuration,
- cts: compositionTimeOffset,
- flags: {
- isLeading: 0,
- isDependedOn: 0,
- hasRedundancy: 0,
- degradPrio: 0,
- dependsOn: avcSample.key ? 2 : 1,
- isNonSync: avcSample.key ? 0 : 1
- }
- });
- }
- // next AVC sample DTS should be equal to last sample DTS + last sample duration (in PES timescale)
- this.nextAvcDts = lastDTS + mp4SampleDuration;
- var dropped = track.dropped;
- track.len = 0;
- track.nbNalu = 0;
- track.dropped = 0;
- if (outputSamples.length && navigator.userAgent.toLowerCase().indexOf('chrome') > -1) {
- var flags = outputSamples[0].flags;
- // chrome workaround, mark first sample as being a Random Access Point to avoid sourcebuffer append issue
- // https://code.google.com/p/chromium/issues/detail?id=229412
- flags.dependsOn = 2;
- flags.isNonSync = 0;
- }
- track.samples = outputSamples;
- moof = mp4_generator.moof(track.sequenceNumber++, firstDTS, track);
- track.samples = [];
-
- var data = {
- data1: moof,
- data2: mdat,
- startPTS: firstPTS / timeScale,
- endPTS: (lastPTS + mp4SampleDuration) / timeScale,
- startDTS: firstDTS / timeScale,
- endDTS: this.nextAvcDts / timeScale,
- type: 'video',
- hasAudio: false,
- hasVideo: true,
- nb: outputSamples.length,
- dropped: dropped
- };
- this.observer.trigger(events["a" /* default */].FRAG_PARSING_DATA, data);
- return data;
- };
-
- MP4Remuxer.prototype.remuxAudio = function remuxAudio(track, timeOffset, contiguous, accurateTimeOffset) {
- var inputTimeScale = track.inputTimeScale,
- mp4timeScale = track.timescale,
- scaleFactor = inputTimeScale / mp4timeScale,
- mp4SampleDuration = track.isAAC ? 1024 : 1152,
- inputSampleDuration = mp4SampleDuration * scaleFactor,
- ptsNormalize = this._PTSNormalize,
- initDTS = this._initDTS,
- rawMPEG = !track.isAAC && this.typeSupported.mpeg;
-
- var offset = void 0,
- mp4Sample = void 0,
- fillFrame = void 0,
- mdat = void 0,
- moof = void 0,
- firstPTS = void 0,
- lastPTS = void 0,
- inputSamples = track.samples,
- outputSamples = [],
- nextAudioPts = this.nextAudioPts;
-
- // for audio samples, also consider consecutive fragments as being contiguous (even if a level switch occurs),
- // for sake of clarity:
- // consecutive fragments are frags with
- // - less than 100ms gaps between new time offset (if accurate) and next expected PTS OR
- // - less than 20 audio frames distance
- // contiguous fragments are consecutive fragments from same quality level (same level, new SN = old SN + 1)
- // this helps ensuring audio continuity
- // and this also avoids audio glitches/cut when switching quality, or reporting wrong duration on first audio frame
- contiguous |= inputSamples.length && nextAudioPts && (accurateTimeOffset && Math.abs(timeOffset - nextAudioPts / inputTimeScale) < 0.1 || Math.abs(inputSamples[0].pts - nextAudioPts - initDTS) < 20 * inputSampleDuration);
-
- // compute normalized PTS
- inputSamples.forEach(function (sample) {
- sample.pts = sample.dts = ptsNormalize(sample.pts - initDTS, timeOffset * inputTimeScale);
- });
-
- // filter out sample with negative PTS that are not playable anyway
- // if we don't remove these negative samples, they will shift all audio samples forward.
- // leading to audio overlap between current / next fragment
- inputSamples = inputSamples.filter(function (sample) {
- return sample.pts >= 0;
- });
-
- // in case all samples have negative PTS, and have been filtered out, return now
- if (inputSamples.length === 0) {
- return;
- }
-
- if (!contiguous) {
- if (!accurateTimeOffset) {
- // if frag are mot contiguous and if we cant trust time offset, let's use first sample PTS as next audio PTS
- nextAudioPts = inputSamples[0].pts;
- } else {
- // if timeOffset is accurate, let's use it as predicted next audio PTS
- nextAudioPts = timeOffset * inputTimeScale;
- }
- }
-
- // If the audio track is missing samples, the frames seem to get "left-shifted" within the
- // resulting mp4 segment, causing sync issues and leaving gaps at the end of the audio segment.
- // In an effort to prevent this from happening, we inject frames here where there are gaps.
- // When possible, we inject a silent frame; when that's not possible, we duplicate the last
- // frame.
-
- if (track.isAAC) {
- var maxAudioFramesDrift = this.config.maxAudioFramesDrift;
- for (var i = 0, nextPts = nextAudioPts; i < inputSamples.length;) {
- // First, let's see how far off this frame is from where we expect it to be
- var sample = inputSamples[i],
- delta;
- var pts = sample.pts;
- delta = pts - nextPts;
-
- var duration = Math.abs(1000 * delta / inputTimeScale);
-
- // If we're overlapping by more than a duration, drop this sample
- if (delta <= -maxAudioFramesDrift * inputSampleDuration) {
- logger["b" /* logger */].warn('Dropping 1 audio frame @ ' + (nextPts / inputTimeScale).toFixed(3) + 's due to ' + Math.round(duration) + ' ms overlap.');
- inputSamples.splice(i, 1);
- track.len -= sample.unit.length;
- // Don't touch nextPtsNorm or i
- } // eslint-disable-line brace-style
-
- // Insert missing frames if:
- // 1: We're more than maxAudioFramesDrift frame away
- // 2: Not more than MAX_SILENT_FRAME_DURATION away
- // 3: currentTime (aka nextPtsNorm) is not 0
- else if (delta >= maxAudioFramesDrift * inputSampleDuration && duration < MAX_SILENT_FRAME_DURATION && nextPts) {
- var missing = Math.round(delta / inputSampleDuration);
- logger["b" /* logger */].warn('Injecting ' + missing + ' audio frame @ ' + (nextPts / inputTimeScale).toFixed(3) + 's due to ' + Math.round(1000 * delta / inputTimeScale) + ' ms gap.');
- for (var j = 0; j < missing; j++) {
- var newStamp = Math.max(nextPts, 0);
- fillFrame = aac_helper.getSilentFrame(track.manifestCodec || track.codec, track.channelCount);
- if (!fillFrame) {
- logger["b" /* logger */].log('Unable to get silent frame for given audio codec; duplicating last frame instead.');
- fillFrame = sample.unit.subarray();
- }
- inputSamples.splice(i, 0, { unit: fillFrame, pts: newStamp, dts: newStamp });
- track.len += fillFrame.length;
- nextPts += inputSampleDuration;
- i++;
- }
-
- // Adjust sample to next expected pts
- sample.pts = sample.dts = nextPts;
- nextPts += inputSampleDuration;
- i++;
- } else {
- // Otherwise, just adjust pts
- if (Math.abs(delta) > 0.1 * inputSampleDuration) {
- // logger.log(`Invalid frame delta ${Math.round(delta + inputSampleDuration)} at PTS ${Math.round(pts / 90)} (should be ${Math.round(inputSampleDuration)}).`);
- }
- sample.pts = sample.dts = nextPts;
- nextPts += inputSampleDuration;
- i++;
- }
- }
- }
-
- for (var _j2 = 0, _nbSamples = inputSamples.length; _j2 < _nbSamples; _j2++) {
- var audioSample = inputSamples[_j2];
- var unit = audioSample.unit;
- var _pts = audioSample.pts;
- // logger.log(`Audio/PTS:${Math.round(pts/90)}`);
- // if not first sample
- if (lastPTS !== undefined) {
- mp4Sample.duration = Math.round((_pts - lastPTS) / scaleFactor);
- } else {
- var _delta = Math.round(1000 * (_pts - nextAudioPts) / inputTimeScale),
- numMissingFrames = 0;
- // if fragment are contiguous, detect hole/overlapping between fragments
- // contiguous fragments are consecutive fragments from same quality level (same level, new SN = old SN + 1)
- if (contiguous && track.isAAC) {
- // log delta
- if (_delta) {
- if (_delta > 0 && _delta < MAX_SILENT_FRAME_DURATION) {
- numMissingFrames = Math.round((_pts - nextAudioPts) / inputSampleDuration);
- logger["b" /* logger */].log(_delta + ' ms hole between AAC samples detected,filling it');
- if (numMissingFrames > 0) {
- fillFrame = aac_helper.getSilentFrame(track.manifestCodec || track.codec, track.channelCount);
- if (!fillFrame) {
- fillFrame = unit.subarray();
- }
-
- track.len += numMissingFrames * fillFrame.length;
- }
- // if we have frame overlap, overlapping for more than half a frame duraion
- } else if (_delta < -12) {
- // drop overlapping audio frames... browser will deal with it
- logger["b" /* logger */].log('drop overlapping AAC sample, expected/parsed/delta:' + (nextAudioPts / inputTimeScale).toFixed(3) + 's/' + (_pts / inputTimeScale).toFixed(3) + 's/' + -_delta + 'ms');
- track.len -= unit.byteLength;
- continue;
- }
- // set PTS/DTS to expected PTS/DTS
- _pts = nextAudioPts;
- }
- }
- // remember first PTS of our audioSamples
- firstPTS = _pts;
- if (track.len > 0) {
- /* concatenate the audio data and construct the mdat in place
- (need 8 more bytes to fill length and mdat type) */
- var mdatSize = rawMPEG ? track.len : track.len + 8;
- offset = rawMPEG ? 0 : 8;
- try {
- mdat = new Uint8Array(mdatSize);
- } catch (err) {
- this.observer.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].MUX_ERROR, details: errors["a" /* ErrorDetails */].REMUX_ALLOC_ERROR, fatal: false, bytes: mdatSize, reason: 'fail allocating audio mdat ' + mdatSize });
- return;
- }
- if (!rawMPEG) {
- var view = new DataView(mdat.buffer);
- view.setUint32(0, mdatSize);
- mdat.set(mp4_generator.types.mdat, 4);
- }
- } else {
- // no audio samples
- return;
- }
- for (var _i3 = 0; _i3 < numMissingFrames; _i3++) {
- fillFrame = aac_helper.getSilentFrame(track.manifestCodec || track.codec, track.channelCount);
- if (!fillFrame) {
- logger["b" /* logger */].log('Unable to get silent frame for given audio codec; duplicating this frame instead.');
- fillFrame = unit.subarray();
- }
- mdat.set(fillFrame, offset);
- offset += fillFrame.byteLength;
- mp4Sample = {
- size: fillFrame.byteLength,
- cts: 0,
- duration: 1024,
- flags: {
- isLeading: 0,
- isDependedOn: 0,
- hasRedundancy: 0,
- degradPrio: 0,
- dependsOn: 1
- }
- };
- outputSamples.push(mp4Sample);
- }
- }
- mdat.set(unit, offset);
- var unitLen = unit.byteLength;
- offset += unitLen;
- // console.log('PTS/DTS/initDTS/normPTS/normDTS/relative PTS : ${audioSample.pts}/${audioSample.dts}/${initDTS}/${ptsnorm}/${dtsnorm}/${(audioSample.pts/4294967296).toFixed(3)}');
- mp4Sample = {
- size: unitLen,
- cts: 0,
- duration: 0,
- flags: {
- isLeading: 0,
- isDependedOn: 0,
- hasRedundancy: 0,
- degradPrio: 0,
- dependsOn: 1
- }
- };
- outputSamples.push(mp4Sample);
- lastPTS = _pts;
- }
- var lastSampleDuration = 0;
- var nbSamples = outputSamples.length;
- // set last sample duration as being identical to previous sample
- if (nbSamples >= 2) {
- lastSampleDuration = outputSamples[nbSamples - 2].duration;
- mp4Sample.duration = lastSampleDuration;
- }
- if (nbSamples) {
- // next audio sample PTS should be equal to last sample PTS + duration
- this.nextAudioPts = nextAudioPts = lastPTS + scaleFactor * lastSampleDuration;
- // logger.log('Audio/PTS/PTSend:' + audioSample.pts.toFixed(0) + '/' + this.nextAacDts.toFixed(0));
- track.len = 0;
- track.samples = outputSamples;
- if (rawMPEG) {
- moof = new Uint8Array();
- } else {
- moof = mp4_generator.moof(track.sequenceNumber++, firstPTS / scaleFactor, track);
- }
-
- track.samples = [];
- var start = firstPTS / inputTimeScale;
- var end = nextAudioPts / inputTimeScale;
- var audioData = {
- data1: moof,
- data2: mdat,
- startPTS: start,
- endPTS: end,
- startDTS: start,
- endDTS: end,
- type: 'audio',
- hasAudio: true,
- hasVideo: false,
- nb: nbSamples
- };
- this.observer.trigger(events["a" /* default */].FRAG_PARSING_DATA, audioData);
- return audioData;
- }
- return null;
- };
-
- MP4Remuxer.prototype.remuxEmptyAudio = function remuxEmptyAudio(track, timeOffset, contiguous, videoData) {
- var inputTimeScale = track.inputTimeScale,
- mp4timeScale = track.samplerate ? track.samplerate : inputTimeScale,
- scaleFactor = inputTimeScale / mp4timeScale,
- nextAudioPts = this.nextAudioPts,
-
-
- // sync with video's timestamp
- startDTS = (nextAudioPts !== undefined ? nextAudioPts : videoData.startDTS * inputTimeScale) + this._initDTS,
- endDTS = videoData.endDTS * inputTimeScale + this._initDTS,
-
- // one sample's duration value
- sampleDuration = 1024,
- frameDuration = scaleFactor * sampleDuration,
-
-
- // samples count of this segment's duration
- nbSamples = Math.ceil((endDTS - startDTS) / frameDuration),
-
-
- // silent frame
- silentFrame = aac_helper.getSilentFrame(track.manifestCodec || track.codec, track.channelCount);
-
- logger["b" /* logger */].warn('remux empty Audio');
- // Can't remux if we can't generate a silent frame...
- if (!silentFrame) {
- logger["b" /* logger */].trace('Unable to remuxEmptyAudio since we were unable to get a silent frame for given audio codec!');
- return;
- }
-
- var samples = [];
- for (var i = 0; i < nbSamples; i++) {
- var stamp = startDTS + i * frameDuration;
- samples.push({ unit: silentFrame, pts: stamp, dts: stamp });
- track.len += silentFrame.length;
- }
- track.samples = samples;
-
- this.remuxAudio(track, timeOffset, contiguous);
- };
-
- MP4Remuxer.prototype.remuxID3 = function remuxID3(track, timeOffset) {
- var length = track.samples.length,
- sample = void 0;
- var inputTimeScale = track.inputTimeScale;
- var initPTS = this._initPTS;
- var initDTS = this._initDTS;
- // consume samples
- if (length) {
- for (var index = 0; index < length; index++) {
- sample = track.samples[index];
- // setting id3 pts, dts to relative time
- // using this._initPTS and this._initDTS to calculate relative time
- sample.pts = (sample.pts - initPTS) / inputTimeScale;
- sample.dts = (sample.dts - initDTS) / inputTimeScale;
- }
- this.observer.trigger(events["a" /* default */].FRAG_PARSING_METADATA, {
- samples: track.samples
- });
- }
-
- track.samples = [];
- timeOffset = timeOffset;
- };
-
- MP4Remuxer.prototype.remuxText = function remuxText(track, timeOffset) {
- track.samples.sort(function (a, b) {
- return a.pts - b.pts;
- });
-
- var length = track.samples.length,
- sample = void 0;
- var inputTimeScale = track.inputTimeScale;
- var initPTS = this._initPTS;
- // consume samples
- if (length) {
- for (var index = 0; index < length; index++) {
- sample = track.samples[index];
- // setting text pts, dts to relative time
- // using this._initPTS and this._initDTS to calculate relative time
- sample.pts = (sample.pts - initPTS) / inputTimeScale;
- }
- this.observer.trigger(events["a" /* default */].FRAG_PARSING_USERDATA, {
- samples: track.samples
- });
- }
-
- track.samples = [];
- timeOffset = timeOffset;
- };
-
- MP4Remuxer.prototype._PTSNormalize = function _PTSNormalize(value, reference) {
- var offset = void 0;
- if (reference === undefined) {
- return value;
- }
-
- if (reference < value) {
- // - 2^33
- offset = -8589934592;
- } else {
- // + 2^33
- offset = 8589934592;
- }
- /* PTS is 33bit (from 0 to 2^33 -1)
- if diff between value and reference is bigger than half of the amplitude (2^32) then it means that
- PTS looping occured. fill the gap */
- while (Math.abs(value - reference) > 4294967296) {
- value += offset;
- }
-
- return value;
- };
-
- return MP4Remuxer;
-}();
-
-/* harmony default export */ var mp4_remuxer = (mp4_remuxer_MP4Remuxer);
-// CONCATENATED MODULE: ./src/remux/passthrough-remuxer.js
-function passthrough_remuxer__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * passthrough remuxer
-*/
-
-
-var passthrough_remuxer_PassThroughRemuxer = function () {
- function PassThroughRemuxer(observer) {
- passthrough_remuxer__classCallCheck(this, PassThroughRemuxer);
-
- this.observer = observer;
- }
-
- PassThroughRemuxer.prototype.destroy = function destroy() {};
-
- PassThroughRemuxer.prototype.resetTimeStamp = function resetTimeStamp() {};
-
- PassThroughRemuxer.prototype.resetInitSegment = function resetInitSegment() {};
-
- PassThroughRemuxer.prototype.remux = function remux(audioTrack, videoTrack, id3Track, textTrack, timeOffset, contiguous, accurateTimeOffset, rawData) {
- var observer = this.observer;
- var streamType = '';
- if (audioTrack) {
- streamType += 'audio';
- }
-
- if (videoTrack) {
- streamType += 'video';
- }
-
- observer.trigger(events["a" /* default */].FRAG_PARSING_DATA, {
- data1: rawData,
- startPTS: timeOffset,
- startDTS: timeOffset,
- type: streamType,
- hasAudio: !!audioTrack,
- hasVideo: !!videoTrack,
- nb: 1,
- dropped: 0
- });
- // notify end of parsing
- observer.trigger(events["a" /* default */].FRAG_PARSED);
- };
-
- return PassThroughRemuxer;
-}();
-
-/* harmony default export */ var passthrough_remuxer = (passthrough_remuxer_PassThroughRemuxer);
-// CONCATENATED MODULE: ./src/demux/demuxer-inline.js
-function demuxer_inline__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- *
- * inline demuxer: probe fragments and instantiate
- * appropriate demuxer depending on content type (TSDemuxer, AACDemuxer, ...)
- *
- */
-
-
-
-
-
-
-
-
-
-
-
-
-
-// see https://stackoverflow.com/a/11237259/589493
-var global = Object(get_self_scope["a" /* getSelfScope */])(); // safeguard for code that might run both on worker and main thread
-var performance = global;
-
-var demuxer_inline_DemuxerInline = function () {
- function DemuxerInline(observer, typeSupported, config, vendor) {
- demuxer_inline__classCallCheck(this, DemuxerInline);
-
- this.observer = observer;
- this.typeSupported = typeSupported;
- this.config = config;
- this.vendor = vendor;
- }
-
- DemuxerInline.prototype.destroy = function destroy() {
- var demuxer = this.demuxer;
- if (demuxer) {
- demuxer.destroy();
- }
- };
-
- DemuxerInline.prototype.push = function push(data, decryptdata, initSegment, audioCodec, videoCodec, timeOffset, discontinuity, trackSwitch, contiguous, duration, accurateTimeOffset, defaultInitPTS) {
- if (data.byteLength > 0 && decryptdata != null && decryptdata.key != null && decryptdata.method === 'AES-128') {
- var decrypter = this.decrypter;
- if (decrypter == null) {
- decrypter = this.decrypter = new crypt_decrypter["a" /* default */](this.observer, this.config);
- }
-
- var localthis = this;
- // performance.now() not available on WebWorker, at least on Safari Desktop
- var startTime = void 0;
- try {
- startTime = performance.now();
- } catch (error) {
- startTime = Date.now();
- }
- decrypter.decrypt(data, decryptdata.key.buffer, decryptdata.iv.buffer, function (decryptedData) {
- var endTime = void 0;
- try {
- endTime = performance.now();
- } catch (error) {
- endTime = Date.now();
- }
- localthis.observer.trigger(events["a" /* default */].FRAG_DECRYPTED, { stats: { tstart: startTime, tdecrypt: endTime } });
- localthis.pushDecrypted(new Uint8Array(decryptedData), decryptdata, new Uint8Array(initSegment), audioCodec, videoCodec, timeOffset, discontinuity, trackSwitch, contiguous, duration, accurateTimeOffset, defaultInitPTS);
- });
- } else {
- this.pushDecrypted(new Uint8Array(data), decryptdata, new Uint8Array(initSegment), audioCodec, videoCodec, timeOffset, discontinuity, trackSwitch, contiguous, duration, accurateTimeOffset, defaultInitPTS);
- }
- };
-
- DemuxerInline.prototype.pushDecrypted = function pushDecrypted(data, decryptdata, initSegment, audioCodec, videoCodec, timeOffset, discontinuity, trackSwitch, contiguous, duration, accurateTimeOffset, defaultInitPTS) {
- var demuxer = this.demuxer;
- if (!demuxer ||
- // in case of continuity change, or track switch
- // we might switch from content type (AAC container to TS container, or TS to fmp4 for example)
- // so let's check that current demuxer is still valid
- (discontinuity || trackSwitch) && !this.probe(data)) {
- var observer = this.observer;
- var typeSupported = this.typeSupported;
- var config = this.config;
- // probing order is TS/AAC/MP3/MP4
- var muxConfig = [{ demux: tsdemuxer, remux: mp4_remuxer }, { demux: mp4demuxer["a" /* default */], remux: passthrough_remuxer }, { demux: aacdemuxer, remux: mp4_remuxer }, { demux: mp3demuxer, remux: mp4_remuxer }];
-
- // probe for content type
- for (var i = 0, len = muxConfig.length; i < len; i++) {
- var mux = muxConfig[i];
- var probe = mux.demux.probe;
- if (probe(data)) {
- var _remuxer = this.remuxer = new mux.remux(observer, config, typeSupported, this.vendor);
- demuxer = new mux.demux(observer, _remuxer, config, typeSupported);
- this.probe = probe;
- break;
- }
- }
- if (!demuxer) {
- observer.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].MEDIA_ERROR, details: errors["a" /* ErrorDetails */].FRAG_PARSING_ERROR, fatal: true, reason: 'no demux matching with content found' });
- return;
- }
- this.demuxer = demuxer;
- }
- var remuxer = this.remuxer;
-
- if (discontinuity || trackSwitch) {
- demuxer.resetInitSegment(initSegment, audioCodec, videoCodec, duration);
- remuxer.resetInitSegment();
- }
- if (discontinuity) {
- demuxer.resetTimeStamp(defaultInitPTS);
- remuxer.resetTimeStamp(defaultInitPTS);
- }
- if (typeof demuxer.setDecryptData === 'function') {
- demuxer.setDecryptData(decryptdata);
- }
-
- demuxer.append(data, timeOffset, contiguous, accurateTimeOffset);
- };
-
- return DemuxerInline;
-}();
-
-/* harmony default export */ var demuxer_inline = __webpack_exports__["a"] = (demuxer_inline_DemuxerInline);
-
-/***/ }),
-/* 10 */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
-var cues_namespaceObject = {};
-__webpack_require__.d(cues_namespaceObject, "newCue", function() { return newCue; });
-
-// EXTERNAL MODULE: ./node_modules/url-toolkit/src/url-toolkit.js
-var url_toolkit = __webpack_require__(4);
-var url_toolkit_default = /*#__PURE__*/__webpack_require__.n(url_toolkit);
-
-// EXTERNAL MODULE: ./src/errors.js
-var errors = __webpack_require__(2);
-
-// EXTERNAL MODULE: ./src/events.js
-var events = __webpack_require__(1);
-
-// EXTERNAL MODULE: ./src/utils/logger.js
-var logger = __webpack_require__(0);
-
-// CONCATENATED MODULE: ./src/event-handler.js
-var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
-
-function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/*
-*
-* All objects in the event handling chain should inherit from this class
-*
-*/
-
-
-
-
-
-var FORBIDDEN_EVENT_NAMES = new Set(['hlsEventGeneric', 'hlsHandlerDestroying', 'hlsHandlerDestroyed']);
-
-var event_handler_EventHandler = function () {
- function EventHandler(hls) {
- _classCallCheck(this, EventHandler);
-
- this.hls = hls;
- this.onEvent = this.onEvent.bind(this);
-
- for (var _len = arguments.length, events = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
- events[_key - 1] = arguments[_key];
- }
-
- this.handledEvents = events;
- this.useGenericHandler = true;
-
- this.registerListeners();
- }
-
- EventHandler.prototype.destroy = function destroy() {
- this.onHandlerDestroying();
- this.unregisterListeners();
- this.onHandlerDestroyed();
- };
-
- EventHandler.prototype.onHandlerDestroying = function onHandlerDestroying() {};
-
- EventHandler.prototype.onHandlerDestroyed = function onHandlerDestroyed() {};
-
- EventHandler.prototype.isEventHandler = function isEventHandler() {
- return _typeof(this.handledEvents) === 'object' && this.handledEvents.length && typeof this.onEvent === 'function';
- };
-
- EventHandler.prototype.registerListeners = function registerListeners() {
- if (this.isEventHandler()) {
- this.handledEvents.forEach(function (event) {
- if (FORBIDDEN_EVENT_NAMES.has(event)) {
- throw new Error('Forbidden event-name: ' + event);
- }
-
- this.hls.on(event, this.onEvent);
- }, this);
- }
- };
-
- EventHandler.prototype.unregisterListeners = function unregisterListeners() {
- if (this.isEventHandler()) {
- this.handledEvents.forEach(function (event) {
- this.hls.off(event, this.onEvent);
- }, this);
- }
- };
-
- /**
- * arguments: event (string), data (any)
- */
-
-
- EventHandler.prototype.onEvent = function onEvent(event, data) {
- this.onEventGeneric(event, data);
- };
-
- EventHandler.prototype.onEventGeneric = function onEventGeneric(event, data) {
- var eventToFunction = function eventToFunction(event, data) {
- var funcName = 'on' + event.replace('hls', '');
- if (typeof this[funcName] !== 'function') {
- throw new Error('Event ' + event + ' has no generic handler in this ' + this.constructor.name + ' class (tried ' + funcName + ')');
- }
-
- return this[funcName].bind(this, data);
- };
- try {
- eventToFunction.call(this, event, data).call();
- } catch (err) {
- logger["b" /* logger */].error('An internal error happened while handling event ' + event + '. Error message: "' + err.message + '". Here is a stacktrace:', err);
- this.hls.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].OTHER_ERROR, details: errors["a" /* ErrorDetails */].INTERNAL_EXCEPTION, fatal: false, event: event, err: err });
- }
- };
-
- return EventHandler;
-}();
-
-/* harmony default export */ var event_handler = (event_handler_EventHandler);
-// EXTERNAL MODULE: ./src/demux/mp4demuxer.js
-var mp4demuxer = __webpack_require__(8);
-
-// CONCATENATED MODULE: ./src/loader/level-key.js
-var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
-
-function level_key__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-
-
-var level_key_LevelKey = function () {
- function LevelKey() {
- level_key__classCallCheck(this, LevelKey);
-
- this.method = null;
- this.key = null;
- this.iv = null;
- this._uri = null;
- }
-
- _createClass(LevelKey, [{
- key: 'uri',
- get: function get() {
- if (!this._uri && this.reluri) {
- this._uri = url_toolkit_default.a.buildAbsoluteURL(this.baseuri, this.reluri, { alwaysNormalize: true });
- }
-
- return this._uri;
- }
- }]);
-
- return LevelKey;
-}();
-
-/* harmony default export */ var level_key = (level_key_LevelKey);
-// CONCATENATED MODULE: ./src/loader/fragment.js
-var fragment__createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
-
-function fragment__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-
-
-
-
-var fragment_Fragment = function () {
- function Fragment() {
- var _elementaryStreams;
-
- fragment__classCallCheck(this, Fragment);
-
- this._url = null;
- this._byteRange = null;
- this._decryptdata = null;
- this.tagList = [];
-
- // Holds the types of data this fragment supports
- this._elementaryStreams = (_elementaryStreams = {}, _elementaryStreams[Fragment.ElementaryStreamTypes.AUDIO] = false, _elementaryStreams[Fragment.ElementaryStreamTypes.VIDEO] = false, _elementaryStreams);
- }
-
- /**
- * `type` property for this._elementaryStreams
- *
- * @enum
- */
-
-
- /**
- * @param {ElementaryStreamType} type
- */
- Fragment.prototype.addElementaryStream = function addElementaryStream(type) {
- this._elementaryStreams[type] = true;
- };
-
- /**
- * @param {ElementaryStreamType} type
- */
-
-
- Fragment.prototype.hasElementaryStream = function hasElementaryStream(type) {
- return this._elementaryStreams[type] === true;
- };
-
- /**
- * Utility method for parseLevelPlaylist to create an initialization vector for a given segment
- * @returns {Uint8Array}
- */
-
-
- Fragment.prototype.createInitializationVector = function createInitializationVector(segmentNumber) {
- var uint8View = new Uint8Array(16);
-
- for (var i = 12; i < 16; i++) {
- uint8View[i] = segmentNumber >> 8 * (15 - i) & 0xff;
- }
-
- return uint8View;
- };
-
- /**
- * Utility method for parseLevelPlaylist to get a fragment's decryption data from the currently parsed encryption key data
- * @param levelkey - a playlist's encryption info
- * @param segmentNumber - the fragment's segment number
- * @returns {*} - an object to be applied as a fragment's decryptdata
- */
-
-
- Fragment.prototype.fragmentDecryptdataFromLevelkey = function fragmentDecryptdataFromLevelkey(levelkey, segmentNumber) {
- var decryptdata = levelkey;
-
- if (levelkey && levelkey.method && levelkey.uri && !levelkey.iv) {
- decryptdata = new level_key();
- decryptdata.method = levelkey.method;
- decryptdata.baseuri = levelkey.baseuri;
- decryptdata.reluri = levelkey.reluri;
- decryptdata.iv = this.createInitializationVector(segmentNumber);
- }
-
- return decryptdata;
- };
-
- fragment__createClass(Fragment, [{
- key: 'url',
- get: function get() {
- if (!this._url && this.relurl) {
- this._url = url_toolkit_default.a.buildAbsoluteURL(this.baseurl, this.relurl, { alwaysNormalize: true });
- }
-
- return this._url;
- },
- set: function set(value) {
- this._url = value;
- }
- }, {
- key: 'programDateTime',
- get: function get() {
- if (!this._programDateTime && this.rawProgramDateTime) {
- this._programDateTime = new Date(Date.parse(this.rawProgramDateTime));
- }
-
- return this._programDateTime;
- }
- }, {
- key: 'byteRange',
- get: function get() {
- if (!this._byteRange && !this.rawByteRange) {
- return [];
- }
-
- if (this._byteRange) {
- return this._byteRange;
- }
-
- var byteRange = [];
- if (this.rawByteRange) {
- var params = this.rawByteRange.split('@', 2);
- if (params.length === 1) {
- var lastByteRangeEndOffset = this.lastByteRangeEndOffset;
- byteRange[0] = lastByteRangeEndOffset || 0;
- } else {
- byteRange[0] = parseInt(params[1]);
- }
- byteRange[1] = parseInt(params[0]) + byteRange[0];
- this._byteRange = byteRange;
- }
- return byteRange;
- }
-
- /**
- * @type {number}
- */
-
- }, {
- key: 'byteRangeStartOffset',
- get: function get() {
- return this.byteRange[0];
- }
- }, {
- key: 'byteRangeEndOffset',
- get: function get() {
- return this.byteRange[1];
- }
- }, {
- key: 'decryptdata',
- get: function get() {
- if (!this._decryptdata) {
- this._decryptdata = this.fragmentDecryptdataFromLevelkey(this.levelkey, this.sn);
- }
-
- return this._decryptdata;
- }
- }, {
- key: 'encrypted',
- get: function get() {
- return !!(this.decryptdata && this.decryptdata.uri !== null && this.decryptdata.key === null);
- }
- }], [{
- key: 'ElementaryStreamTypes',
- get: function get() {
- return {
- AUDIO: 'audio',
- VIDEO: 'video'
- };
- }
- }]);
-
- return Fragment;
-}();
-
-/* harmony default export */ var loader_fragment = (fragment_Fragment);
-// CONCATENATED MODULE: ./src/utils/attr-list.js
-function attr_list__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-var DECIMAL_RESOLUTION_REGEX = /^(\d+)x(\d+)$/; // eslint-disable-line no-useless-escape
-var ATTR_LIST_REGEX = /\s*(.+?)\s*=((?:\".*?\")|.*?)(?:,|$)/g; // eslint-disable-line no-useless-escape
-
-// adapted from https://github.com/kanongil/node-m3u8parse/blob/master/attrlist.js
-
-var AttrList = function () {
- function AttrList(attrs) {
- attr_list__classCallCheck(this, AttrList);
-
- if (typeof attrs === 'string') {
- attrs = AttrList.parseAttrList(attrs);
- }
-
- for (var attr in attrs) {
- if (attrs.hasOwnProperty(attr)) {
- this[attr] = attrs[attr];
- }
- }
- }
-
- AttrList.prototype.decimalInteger = function decimalInteger(attrName) {
- var intValue = parseInt(this[attrName], 10);
- if (intValue > Number.MAX_SAFE_INTEGER) {
- return Infinity;
- }
-
- return intValue;
- };
-
- AttrList.prototype.hexadecimalInteger = function hexadecimalInteger(attrName) {
- if (this[attrName]) {
- var stringValue = (this[attrName] || '0x').slice(2);
- stringValue = (stringValue.length & 1 ? '0' : '') + stringValue;
-
- var value = new Uint8Array(stringValue.length / 2);
- for (var i = 0; i < stringValue.length / 2; i++) {
- value[i] = parseInt(stringValue.slice(i * 2, i * 2 + 2), 16);
- }
-
- return value;
- } else {
- return null;
- }
- };
-
- AttrList.prototype.hexadecimalIntegerAsNumber = function hexadecimalIntegerAsNumber(attrName) {
- var intValue = parseInt(this[attrName], 16);
- if (intValue > Number.MAX_SAFE_INTEGER) {
- return Infinity;
- }
-
- return intValue;
- };
-
- AttrList.prototype.decimalFloatingPoint = function decimalFloatingPoint(attrName) {
- return parseFloat(this[attrName]);
- };
-
- AttrList.prototype.enumeratedString = function enumeratedString(attrName) {
- return this[attrName];
- };
-
- AttrList.prototype.decimalResolution = function decimalResolution(attrName) {
- var res = DECIMAL_RESOLUTION_REGEX.exec(this[attrName]);
- if (res === null) {
- return undefined;
- }
-
- return {
- width: parseInt(res[1], 10),
- height: parseInt(res[2], 10)
- };
- };
-
- AttrList.parseAttrList = function parseAttrList(input) {
- var match = void 0,
- attrs = {};
- ATTR_LIST_REGEX.lastIndex = 0;
- while ((match = ATTR_LIST_REGEX.exec(input)) !== null) {
- var value = match[2],
- quote = '"';
-
- if (value.indexOf(quote) === 0 && value.lastIndexOf(quote) === value.length - 1) {
- value = value.slice(1, -1);
- }
-
- attrs[match[1]] = value;
- }
- return attrs;
- };
-
- return AttrList;
-}();
-
-/* harmony default export */ var attr_list = (AttrList);
-// CONCATENATED MODULE: ./src/utils/codecs.js
-// from http://mp4ra.org/codecs.html
-var sampleEntryCodesISO = {
- audio: {
- 'a3ds': true,
- 'ac-3': true,
- 'ac-4': true,
- 'alac': true,
- 'alaw': true,
- 'dra1': true,
- 'dts+': true,
- 'dts-': true,
- 'dtsc': true,
- 'dtse': true,
- 'dtsh': true,
- 'ec-3': true,
- 'enca': true,
- 'g719': true,
- 'g726': true,
- 'm4ae': true,
- 'mha1': true,
- 'mha2': true,
- 'mhm1': true,
- 'mhm2': true,
- 'mlpa': true,
- 'mp4a': true,
- 'raw ': true,
- 'Opus': true,
- 'samr': true,
- 'sawb': true,
- 'sawp': true,
- 'sevc': true,
- 'sqcp': true,
- 'ssmv': true,
- 'twos': true,
- 'ulaw': true
- },
- video: {
- 'avc1': true,
- 'avc2': true,
- 'avc3': true,
- 'avc4': true,
- 'avcp': true,
- 'drac': true,
- 'dvav': true,
- 'dvhe': true,
- 'encv': true,
- 'hev1': true,
- 'hvc1': true,
- 'mjp2': true,
- 'mp4v': true,
- 'mvc1': true,
- 'mvc2': true,
- 'mvc3': true,
- 'mvc4': true,
- 'resv': true,
- 'rv60': true,
- 's263': true,
- 'svc1': true,
- 'svc2': true,
- 'vc-1': true,
- 'vp08': true,
- 'vp09': true
- }
-};
-
-function isCodecType(codec, type) {
- var typeCodes = sampleEntryCodesISO[type];
- return !!typeCodes && typeCodes[codec.slice(0, 4)] === true;
-}
-
-function isCodecSupportedInMp4(codec, type) {
- return window.MediaSource.isTypeSupported((type || 'video') + '/mp4;codecs="' + codec + '"');
-}
-
-
-// CONCATENATED MODULE: ./src/loader/m3u8-parser.js
-function m3u8_parser__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-
-
-
-
-
-
-
-
-
-/**
- * M3U8 parser
- * @module
- */
-
-// https://regex101.com is your friend
-var MASTER_PLAYLIST_REGEX = /#EXT-X-STREAM-INF:([^\n\r]*)[\r\n]+([^\r\n]+)/g;
-var MASTER_PLAYLIST_MEDIA_REGEX = /#EXT-X-MEDIA:(.*)/g;
-
-var LEVEL_PLAYLIST_REGEX_FAST = new RegExp([/#EXTINF:\s*(\d*(?:\.\d+)?)(?:,(.*)\s+)?/.source, // duration (#EXTINF:,), group 1 => duration, group 2 => title
-/|(?!#)(\S+)/.source, // segment URI, group 3 => the URI (note newline is not eaten)
-/|#EXT-X-BYTERANGE:*(.+)/.source, // next segment's byterange, group 4 => range spec (x@y)
-/|#EXT-X-PROGRAM-DATE-TIME:(.+)/.source, // next segment's program date/time group 5 => the datetime spec
-/|#.*/.source // All other non-segment oriented tags will match with all groups empty
-].join(''), 'g');
-
-var LEVEL_PLAYLIST_REGEX_SLOW = /(?:(?:#(EXTM3U))|(?:#EXT-X-(PLAYLIST-TYPE):(.+))|(?:#EXT-X-(MEDIA-SEQUENCE): *(\d+))|(?:#EXT-X-(TARGETDURATION): *(\d+))|(?:#EXT-X-(KEY):(.+))|(?:#EXT-X-(START):(.+))|(?:#EXT-X-(ENDLIST))|(?:#EXT-X-(DISCONTINUITY-SEQ)UENCE:(\d+))|(?:#EXT-X-(DIS)CONTINUITY))|(?:#EXT-X-(VERSION):(\d+))|(?:#EXT-X-(MAP):(.+))|(?:(#)(.*):(.*))|(?:(#)(.*))(?:.*)\r?\n?/;
-
-var MP4_REGEX_SUFFIX = /\.(mp4|m4s|m4v|m4a)$/i;
-
-var m3u8_parser_M3U8Parser = function () {
- function M3U8Parser() {
- m3u8_parser__classCallCheck(this, M3U8Parser);
- }
-
- M3U8Parser.findGroup = function findGroup(groups, mediaGroupId) {
- if (!groups) {
- return null;
- }
-
- var matchingGroup = null;
-
- for (var i = 0; i < groups.length; i++) {
- var group = groups[i];
- if (group.id === mediaGroupId) {
- matchingGroup = group;
- }
- }
-
- return matchingGroup;
- };
-
- M3U8Parser.convertAVC1ToAVCOTI = function convertAVC1ToAVCOTI(codec) {
- var result = void 0,
- avcdata = codec.split('.');
- if (avcdata.length > 2) {
- result = avcdata.shift() + '.';
- result += parseInt(avcdata.shift()).toString(16);
- result += ('000' + parseInt(avcdata.shift()).toString(16)).substr(-4);
- } else {
- result = codec;
- }
- return result;
- };
-
- M3U8Parser.resolve = function resolve(url, baseUrl) {
- return url_toolkit_default.a.buildAbsoluteURL(baseUrl, url, { alwaysNormalize: true });
- };
-
- M3U8Parser.parseMasterPlaylist = function parseMasterPlaylist(string, baseurl) {
- var levels = [],
- result = void 0;
- MASTER_PLAYLIST_REGEX.lastIndex = 0;
-
- function setCodecs(codecs, level) {
- ['video', 'audio'].forEach(function (type) {
- var filtered = codecs.filter(function (codec) {
- return isCodecType(codec, type);
- });
- if (filtered.length) {
- var preferred = filtered.filter(function (codec) {
- return codec.lastIndexOf('avc1', 0) === 0 || codec.lastIndexOf('mp4a', 0) === 0;
- });
- level[type + 'Codec'] = preferred.length > 0 ? preferred[0] : filtered[0];
-
- // remove from list
- codecs = codecs.filter(function (codec) {
- return filtered.indexOf(codec) === -1;
- });
- }
- });
-
- level.unknownCodecs = codecs;
- }
-
- while ((result = MASTER_PLAYLIST_REGEX.exec(string)) != null) {
- var level = {};
-
- var attrs = level.attrs = new attr_list(result[1]);
- level.url = M3U8Parser.resolve(result[2], baseurl);
-
- var resolution = attrs.decimalResolution('RESOLUTION');
- if (resolution) {
- level.width = resolution.width;
- level.height = resolution.height;
- }
- level.bitrate = attrs.decimalInteger('AVERAGE-BANDWIDTH') || attrs.decimalInteger('BANDWIDTH');
- level.name = attrs.NAME;
-
- setCodecs([].concat((attrs.CODECS || '').split(/[ ,]+/)), level);
-
- if (level.videoCodec && level.videoCodec.indexOf('avc1') !== -1) {
- level.videoCodec = M3U8Parser.convertAVC1ToAVCOTI(level.videoCodec);
- }
-
- levels.push(level);
- }
- return levels;
- };
-
- M3U8Parser.parseMasterPlaylistMedia = function parseMasterPlaylistMedia(string, baseurl, type) {
- var audioGroups = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : [];
-
- var result = void 0;
- var medias = [];
- var id = 0;
- MASTER_PLAYLIST_MEDIA_REGEX.lastIndex = 0;
- while ((result = MASTER_PLAYLIST_MEDIA_REGEX.exec(string)) !== null) {
- var media = {};
- var attrs = new attr_list(result[1]);
- if (attrs.TYPE === type) {
- media.groupId = attrs['GROUP-ID'];
- media.name = attrs.NAME;
- media.type = type;
- media.default = attrs.DEFAULT === 'YES';
- media.autoselect = attrs.AUTOSELECT === 'YES';
- media.forced = attrs.FORCED === 'YES';
- if (attrs.URI) {
- media.url = M3U8Parser.resolve(attrs.URI, baseurl);
- }
-
- media.lang = attrs.LANGUAGE;
- if (!media.name) {
- media.name = media.lang;
- }
-
- if (audioGroups.length) {
- var groupCodec = M3U8Parser.findGroup(audioGroups, media.groupId);
- media.audioCodec = groupCodec ? groupCodec.codec : audioGroups[0].codec;
- }
- media.id = id++;
- medias.push(media);
- }
- }
- return medias;
- };
-
- M3U8Parser.parseLevelPlaylist = function parseLevelPlaylist(string, baseurl, id, type, levelUrlId) {
- var currentSN = 0,
- totalduration = 0,
- level = { type: null, version: null, url: baseurl, fragments: [], live: true, startSN: 0 },
- levelkey = new level_key(),
- cc = 0,
- prevFrag = null,
- frag = new loader_fragment(),
- result = void 0,
- i = void 0;
-
- LEVEL_PLAYLIST_REGEX_FAST.lastIndex = 0;
-
- while ((result = LEVEL_PLAYLIST_REGEX_FAST.exec(string)) !== null) {
- var duration = result[1];
- if (duration) {
- // INF
- frag.duration = parseFloat(duration);
- // avoid sliced strings https://github.com/video-dev/hls.js/issues/939
- var title = (' ' + result[2]).slice(1);
- frag.title = title || null;
- frag.tagList.push(title ? ['INF', duration, title] : ['INF', duration]);
- } else if (result[3]) {
- // url
- if (!isNaN(frag.duration)) {
- var sn = currentSN++;
- frag.type = type;
- frag.start = totalduration;
- frag.levelkey = levelkey;
- frag.sn = sn;
- frag.level = id;
- frag.cc = cc;
- frag.urlId = levelUrlId;
- frag.baseurl = baseurl;
- // avoid sliced strings https://github.com/video-dev/hls.js/issues/939
- frag.relurl = (' ' + result[3]).slice(1);
-
- if (level.programDateTime) {
- if (prevFrag) {
- if (frag.rawProgramDateTime) {
- // PDT discontinuity found
- frag.pdt = Date.parse(frag.rawProgramDateTime);
- } else {
- // Contiguous fragment
- frag.pdt = prevFrag.pdt + prevFrag.duration * 1000;
- }
- } else {
- // First fragment
- frag.pdt = Date.parse(level.programDateTime);
- }
- frag.endPdt = frag.pdt + frag.duration * 1000;
- }
-
- level.fragments.push(frag);
- prevFrag = frag;
- totalduration += frag.duration;
-
- frag = new loader_fragment();
- }
- } else if (result[4]) {
- // X-BYTERANGE
- frag.rawByteRange = (' ' + result[4]).slice(1);
- if (prevFrag) {
- var lastByteRangeEndOffset = prevFrag.byteRangeEndOffset;
- if (lastByteRangeEndOffset) {
- frag.lastByteRangeEndOffset = lastByteRangeEndOffset;
- }
- }
- } else if (result[5]) {
- // PROGRAM-DATE-TIME
- // avoid sliced strings https://github.com/video-dev/hls.js/issues/939
- frag.rawProgramDateTime = (' ' + result[5]).slice(1);
- frag.tagList.push(['PROGRAM-DATE-TIME', frag.rawProgramDateTime]);
- if (level.programDateTime === undefined) {
- level.programDateTime = new Date(new Date(Date.parse(result[5])) - 1000 * totalduration);
- }
- } else {
- result = result[0].match(LEVEL_PLAYLIST_REGEX_SLOW);
- for (i = 1; i < result.length; i++) {
- if (result[i] !== undefined) {
- break;
- }
- }
-
- // avoid sliced strings https://github.com/video-dev/hls.js/issues/939
- var value1 = (' ' + result[i + 1]).slice(1);
- var value2 = (' ' + result[i + 2]).slice(1);
-
- switch (result[i]) {
- case '#':
- frag.tagList.push(value2 ? [value1, value2] : [value1]);
- break;
- case 'PLAYLIST-TYPE':
- level.type = value1.toUpperCase();
- break;
- case 'MEDIA-SEQUENCE':
- currentSN = level.startSN = parseInt(value1);
- break;
- case 'TARGETDURATION':
- level.targetduration = parseFloat(value1);
- break;
- case 'VERSION':
- level.version = parseInt(value1);
- break;
- case 'EXTM3U':
- break;
- case 'ENDLIST':
- level.live = false;
- break;
- case 'DIS':
- cc++;
- frag.tagList.push(['DIS']);
- break;
- case 'DISCONTINUITY-SEQ':
- cc = parseInt(value1);
- break;
- case 'KEY':
- // https://tools.ietf.org/html/draft-pantos-http-live-streaming-08#section-3.4.4
- var decryptparams = value1;
- var keyAttrs = new attr_list(decryptparams);
- var decryptmethod = keyAttrs.enumeratedString('METHOD'),
- decrypturi = keyAttrs.URI,
- decryptiv = keyAttrs.hexadecimalInteger('IV');
- if (decryptmethod) {
- levelkey = new level_key();
- if (decrypturi && ['AES-128', 'SAMPLE-AES', 'SAMPLE-AES-CENC'].indexOf(decryptmethod) >= 0) {
- levelkey.method = decryptmethod;
- // URI to get the key
- levelkey.baseuri = baseurl;
- levelkey.reluri = decrypturi;
- levelkey.key = null;
- // Initialization Vector (IV)
- levelkey.iv = decryptiv;
- }
- }
- break;
- case 'START':
- var startParams = value1;
- var startAttrs = new attr_list(startParams);
- var startTimeOffset = startAttrs.decimalFloatingPoint('TIME-OFFSET');
- // TIME-OFFSET can be 0
- if (!isNaN(startTimeOffset)) {
- level.startTimeOffset = startTimeOffset;
- }
-
- break;
- case 'MAP':
- var mapAttrs = new attr_list(value1);
- frag.relurl = mapAttrs.URI;
- frag.rawByteRange = mapAttrs.BYTERANGE;
- frag.baseurl = baseurl;
- frag.level = id;
- frag.type = type;
- frag.sn = 'initSegment';
- level.initSegment = frag;
- frag = new loader_fragment();
- break;
- default:
- logger["b" /* logger */].warn('line parsed but not handled: ' + result);
- break;
- }
- }
- }
- frag = prevFrag;
- // logger.log('found ' + level.fragments.length + ' fragments');
- if (frag && !frag.relurl) {
- level.fragments.pop();
- totalduration -= frag.duration;
- }
- level.totalduration = totalduration;
- level.averagetargetduration = totalduration / level.fragments.length;
- level.endSN = currentSN - 1;
- level.startCC = level.fragments[0] ? level.fragments[0].cc : 0;
- level.endCC = cc;
-
- if (!level.initSegment && level.fragments.length) {
- // this is a bit lurky but HLS really has no other way to tell us
- // if the fragments are TS or MP4, except if we download them :/
- // but this is to be able to handle SIDX.
- if (level.fragments.every(function (frag) {
- return MP4_REGEX_SUFFIX.test(frag.relurl);
- })) {
- logger["b" /* logger */].warn('MP4 fragments found but no init segment (probably no MAP, incomplete M3U8), trying to fetch SIDX');
-
- frag = new loader_fragment();
- frag.relurl = level.fragments[0].relurl;
- frag.baseurl = baseurl;
- frag.level = id;
- frag.type = type;
- frag.sn = 'initSegment';
-
- level.initSegment = frag;
- level.needSidxRanges = true;
- }
- }
-
- return level;
- };
-
- return M3U8Parser;
-}();
-
-/* harmony default export */ var m3u8_parser = (m3u8_parser_M3U8Parser);
-// CONCATENATED MODULE: ./src/loader/playlist-loader.js
-var playlist_loader__createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
-
-function playlist_loader__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-/**
- * PlaylistLoader - delegate for media manifest/playlist loading tasks. Takes care of parsing media to internal data-models.
- *
- * Once loaded, dispatches events with parsed data-models of manifest/levels/audio/subtitle tracks.
- *
- * Uses loader(s) set in config to do actual internal loading of resource tasks.
- *
- * @module
- *
- */
-
-
-
-
-
-
-
-
-
-
-var _window = window,
- performance = _window.performance;
-
-/**
- * `type` property values for this loaders' context object
- * @enum
- *
- */
-
-var ContextType = {
- MANIFEST: 'manifest',
- LEVEL: 'level',
- AUDIO_TRACK: 'audioTrack',
- SUBTITLE_TRACK: 'subtitleTrack'
-};
-
-/**
- * @enum {string}
- */
-var LevelType = {
- MAIN: 'main',
- AUDIO: 'audio',
- SUBTITLE: 'subtitle'
-};
-
-/**
- * @constructor
- */
-
-var playlist_loader_PlaylistLoader = function (_EventHandler) {
- _inherits(PlaylistLoader, _EventHandler);
-
- /**
- * @constructs
- * @param {Hls} hls
- */
- function PlaylistLoader(hls) {
- playlist_loader__classCallCheck(this, PlaylistLoader);
-
- var _this = _possibleConstructorReturn(this, _EventHandler.call(this, hls, events["a" /* default */].MANIFEST_LOADING, events["a" /* default */].LEVEL_LOADING, events["a" /* default */].AUDIO_TRACK_LOADING, events["a" /* default */].SUBTITLE_TRACK_LOADING));
-
- _this.loaders = {};
- return _this;
- }
-
- /**
- * @param {ContextType} type
- * @returns {boolean}
- */
- PlaylistLoader.canHaveQualityLevels = function canHaveQualityLevels(type) {
- return type !== ContextType.AUDIO_TRACK && type !== ContextType.SUBTITLE_TRACK;
- };
-
- /**
- * Map context.type to LevelType
- * @param {{type: ContextType}} context
- * @returns {LevelType}
- */
-
-
- PlaylistLoader.mapContextToLevelType = function mapContextToLevelType(context) {
- var type = context.type;
-
-
- switch (type) {
- case ContextType.AUDIO_TRACK:
- return LevelType.AUDIO;
- case ContextType.SUBTITLE_TRACK:
- return LevelType.SUBTITLE;
- default:
- return LevelType.MAIN;
- }
- };
-
- PlaylistLoader.getResponseUrl = function getResponseUrl(response, context) {
- var url = response.url;
- // responseURL not supported on some browsers (it is used to detect URL redirection)
- // data-uri mode also not supported (but no need to detect redirection)
- if (url === undefined || url.indexOf('data:') === 0) {
- // fallback to initial URL
- url = context.url;
- }
- return url;
- };
-
- /**
- * Returns defaults or configured loader-type overloads (pLoader and loader config params)
- * Default loader is XHRLoader (see utils)
- * @param {object} context
- * @returns {XHRLoader} or other compatible configured overload
- */
-
-
- PlaylistLoader.prototype.createInternalLoader = function createInternalLoader(context) {
- var config = this.hls.config;
- var PLoader = config.pLoader;
- var Loader = config.loader;
- var InternalLoader = PLoader || Loader;
-
- var loader = new InternalLoader(config);
-
- context.loader = loader;
- this.loaders[context.type] = loader;
-
- return loader;
- };
-
- PlaylistLoader.prototype.getInternalLoader = function getInternalLoader(context) {
- return this.loaders[context.type];
- };
-
- PlaylistLoader.prototype.resetInternalLoader = function resetInternalLoader(contextType) {
- if (this.loaders[contextType]) {
- delete this.loaders[contextType];
- }
- };
-
- /**
- * Call `destroy` on all internal loader instances mapped (one per context type)
- */
-
-
- PlaylistLoader.prototype.destroyInternalLoaders = function destroyInternalLoaders() {
- for (var contextType in this.loaders) {
- var loader = this.loaders[contextType];
- if (loader) {
- loader.destroy();
- }
-
- this.resetInternalLoader(contextType);
- }
- };
-
- PlaylistLoader.prototype.destroy = function destroy() {
- this.destroyInternalLoaders();
-
- _EventHandler.prototype.destroy.call(this);
- };
-
- PlaylistLoader.prototype.onManifestLoading = function onManifestLoading(data) {
- this.load(data.url, { type: ContextType.MANIFEST, level: 0, id: null });
- };
-
- PlaylistLoader.prototype.onLevelLoading = function onLevelLoading(data) {
- this.load(data.url, { type: ContextType.LEVEL, level: data.level, id: data.id });
- };
-
- PlaylistLoader.prototype.onAudioTrackLoading = function onAudioTrackLoading(data) {
- this.load(data.url, { type: ContextType.AUDIO_TRACK, level: 0, id: data.id });
- };
-
- PlaylistLoader.prototype.onSubtitleTrackLoading = function onSubtitleTrackLoading(data) {
- this.load(data.url, { type: ContextType.SUBTITLE_TRACK, level: 0, id: data.id });
- };
-
- PlaylistLoader.prototype.load = function load(url, context) {
- var config = this.hls.config;
-
- logger["b" /* logger */].debug('Loading playlist of type ' + context.type + ', level: ' + context.level + ', id: ' + context.id);
-
- // Check if a loader for this context already exists
- var loader = this.getInternalLoader(context);
- if (loader) {
- var loaderContext = loader.context;
- if (loaderContext && loaderContext.url === url) {
- // same URL can't overlap
- logger["b" /* logger */].trace('playlist request ongoing');
- return false;
- } else {
- logger["b" /* logger */].warn('aborting previous loader for type: ' + context.type);
- loader.abort();
- }
- }
-
- var maxRetry = void 0,
- timeout = void 0,
- retryDelay = void 0,
- maxRetryDelay = void 0;
-
- // apply different configs for retries depending on
- // context (manifest, level, audio/subs playlist)
- switch (context.type) {
- case ContextType.MANIFEST:
- maxRetry = config.manifestLoadingMaxRetry;
- timeout = config.manifestLoadingTimeOut;
- retryDelay = config.manifestLoadingRetryDelay;
- maxRetryDelay = config.manifestLoadingMaxRetryTimeout;
- break;
- case ContextType.LEVEL:
- // Disable internal loader retry logic, since we are managing retries in Level Controller
- maxRetry = 0;
- timeout = config.levelLoadingTimeOut;
- // TODO Introduce retry settings for audio-track and subtitle-track, it should not use level retry config
- break;
- default:
- maxRetry = config.levelLoadingMaxRetry;
- timeout = config.levelLoadingTimeOut;
- retryDelay = config.levelLoadingRetryDelay;
- maxRetryDelay = config.levelLoadingMaxRetryTimeout;
- break;
- }
-
- loader = this.createInternalLoader(context);
-
- context.url = url;
- context.responseType = context.responseType || ''; // FIXME: (should not be necessary to do this)
-
- var loaderConfig = {
- timeout: timeout,
- maxRetry: maxRetry,
- retryDelay: retryDelay,
- maxRetryDelay: maxRetryDelay
- };
-
- var loaderCallbacks = {
- onSuccess: this.loadsuccess.bind(this),
- onError: this.loaderror.bind(this),
- onTimeout: this.loadtimeout.bind(this)
- };
-
- logger["b" /* logger */].debug('Calling internal loader delegate for URL: ' + url);
-
- loader.load(context, loaderConfig, loaderCallbacks);
-
- return true;
- };
-
- PlaylistLoader.prototype.loadsuccess = function loadsuccess(response, stats, context) {
- var networkDetails = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;
-
- if (context.isSidxRequest) {
- this._handleSidxRequest(response, context);
- this._handlePlaylistLoaded(response, stats, context, networkDetails);
- return;
- }
-
- this.resetInternalLoader(context.type);
-
- var string = response.data;
-
- stats.tload = performance.now();
- // stats.mtime = new Date(target.getResponseHeader('Last-Modified'));
-
- // Validate if it is an M3U8 at all
- if (string.indexOf('#EXTM3U') !== 0) {
- this._handleManifestParsingError(response, context, 'no EXTM3U delimiter', networkDetails);
- return;
- }
-
- // Check if chunk-list or master. handle empty chunk list case (first EXTINF not signaled, but TARGETDURATION present)
- if (string.indexOf('#EXTINF:') > 0 || string.indexOf('#EXT-X-TARGETDURATION:') > 0) {
- this._handleTrackOrLevelPlaylist(response, stats, context, networkDetails);
- } else {
- this._handleMasterPlaylist(response, stats, context, networkDetails);
- }
- };
-
- PlaylistLoader.prototype.loaderror = function loaderror(response, context) {
- var networkDetails = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
-
- this._handleNetworkError(context, networkDetails);
- };
-
- PlaylistLoader.prototype.loadtimeout = function loadtimeout(stats, context) {
- var networkDetails = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
-
- this._handleNetworkError(context, networkDetails, true);
- };
-
- PlaylistLoader.prototype._handleMasterPlaylist = function _handleMasterPlaylist(response, stats, context, networkDetails) {
- var hls = this.hls;
- var string = response.data;
-
- var url = PlaylistLoader.getResponseUrl(response, context);
-
- var levels = m3u8_parser.parseMasterPlaylist(string, url);
- if (!levels.length) {
- this._handleManifestParsingError(response, context, 'no level found in manifest', networkDetails);
- return;
- }
-
- // multi level playlist, parse level info
-
- var audioGroups = levels.map(function (level) {
- return {
- id: level.attrs.AUDIO,
- codec: level.audioCodec
- };
- });
-
- var audioTracks = m3u8_parser.parseMasterPlaylistMedia(string, url, 'AUDIO', audioGroups);
- var subtitles = m3u8_parser.parseMasterPlaylistMedia(string, url, 'SUBTITLES');
-
- if (audioTracks.length) {
- // check if we have found an audio track embedded in main playlist (audio track without URI attribute)
- var embeddedAudioFound = false;
- audioTracks.forEach(function (audioTrack) {
- if (!audioTrack.url) {
- embeddedAudioFound = true;
- }
- });
-
- // if no embedded audio track defined, but audio codec signaled in quality level,
- // we need to signal this main audio track this could happen with playlists with
- // alt audio rendition in which quality levels (main)
- // contains both audio+video. but with mixed audio track not signaled
- if (embeddedAudioFound === false && levels[0].audioCodec && !levels[0].attrs.AUDIO) {
- logger["b" /* logger */].log('audio codec signaled in quality level, but no embedded audio track signaled, create one');
- audioTracks.unshift({
- type: 'main',
- name: 'main'
- });
- }
- }
-
- hls.trigger(events["a" /* default */].MANIFEST_LOADED, {
- levels: levels,
- audioTracks: audioTracks,
- subtitles: subtitles,
- url: url,
- stats: stats,
- networkDetails: networkDetails
- });
- };
-
- PlaylistLoader.prototype._handleTrackOrLevelPlaylist = function _handleTrackOrLevelPlaylist(response, stats, context, networkDetails) {
- var hls = this.hls;
-
- var id = context.id,
- level = context.level,
- type = context.type;
-
-
- var url = PlaylistLoader.getResponseUrl(response, context);
-
- var levelUrlId = isNaN(id) ? 0 : id;
- var levelId = isNaN(level) ? levelUrlId : level; // level -> id -> 0
- var levelType = PlaylistLoader.mapContextToLevelType(context);
-
- var levelDetails = m3u8_parser.parseLevelPlaylist(response.data, url, levelId, levelType, levelUrlId);
-
- // set stats on level structure
- levelDetails.tload = stats.tload;
-
- // We have done our first request (Manifest-type) and receive
- // not a master playlist but a chunk-list (track/level)
- // We fire the manifest-loaded event anyway with the parsed level-details
- // by creating a single-level structure for it.
- if (type === ContextType.MANIFEST) {
- var singleLevel = {
- url: url,
- details: levelDetails
- };
-
- hls.trigger(events["a" /* default */].MANIFEST_LOADED, {
- levels: [singleLevel],
- audioTracks: [],
- url: url,
- stats: stats,
- networkDetails: networkDetails
- });
- }
-
- // save parsing time
- stats.tparsed = performance.now();
-
- // in case we need SIDX ranges
- // return early after calling load for
- // the SIDX box.
- if (levelDetails.needSidxRanges) {
- var sidxUrl = levelDetails.initSegment.url;
- this.load(sidxUrl, {
- isSidxRequest: true,
- type: type,
- level: level,
- levelDetails: levelDetails,
- id: id,
- rangeStart: 0,
- rangeEnd: 2048,
- responseType: 'arraybuffer'
- });
- return;
- }
-
- // extend the context with the new levelDetails property
- context.levelDetails = levelDetails;
-
- this._handlePlaylistLoaded(response, stats, context, networkDetails);
- };
-
- PlaylistLoader.prototype._handleSidxRequest = function _handleSidxRequest(response, context) {
- var sidxInfo = mp4demuxer["a" /* default */].parseSegmentIndex(new Uint8Array(response.data));
- sidxInfo.references.forEach(function (segmentRef, index) {
- var segRefInfo = segmentRef.info;
- var frag = context.levelDetails.fragments[index];
-
- if (frag.byteRange.length === 0) {
- frag.rawByteRange = String(1 + segRefInfo.end - segRefInfo.start) + '@' + String(segRefInfo.start);
- }
- });
-
- context.levelDetails.initSegment.rawByteRange = String(sidxInfo.moovEndOffset) + '@0';
- };
-
- PlaylistLoader.prototype._handleManifestParsingError = function _handleManifestParsingError(response, context, reason, networkDetails) {
- this.hls.trigger(events["a" /* default */].ERROR, {
- type: errors["b" /* ErrorTypes */].NETWORK_ERROR,
- details: errors["a" /* ErrorDetails */].MANIFEST_PARSING_ERROR,
- fatal: true,
- url: response.url,
- reason: reason,
- networkDetails: networkDetails
- });
- };
-
- PlaylistLoader.prototype._handleNetworkError = function _handleNetworkError(context, networkDetails) {
- var timeout = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
-
- logger["b" /* logger */].info('A network error occured while loading a ' + context.type + '-type playlist');
-
- var details = void 0;
- var fatal = void 0;
-
- var loader = this.getInternalLoader(context);
-
- switch (context.type) {
- case ContextType.MANIFEST:
- details = timeout ? errors["a" /* ErrorDetails */].MANIFEST_LOAD_TIMEOUT : errors["a" /* ErrorDetails */].MANIFEST_LOAD_ERROR;
- fatal = true;
- break;
- case ContextType.LEVEL:
- details = timeout ? errors["a" /* ErrorDetails */].LEVEL_LOAD_TIMEOUT : errors["a" /* ErrorDetails */].LEVEL_LOAD_ERROR;
- fatal = false;
- break;
- case ContextType.AUDIO_TRACK:
- details = timeout ? errors["a" /* ErrorDetails */].AUDIO_TRACK_LOAD_TIMEOUT : errors["a" /* ErrorDetails */].AUDIO_TRACK_LOAD_ERROR;
- fatal = false;
- break;
- default:
- // details = ...?
- fatal = false;
- }
-
- if (loader) {
- loader.abort();
- this.resetInternalLoader(context.type);
- }
-
- this.hls.trigger(events["a" /* default */].ERROR, {
- type: errors["b" /* ErrorTypes */].NETWORK_ERROR,
- details: details,
- fatal: fatal,
- url: loader.url,
- loader: loader,
- context: context,
- networkDetails: networkDetails
- });
- };
-
- PlaylistLoader.prototype._handlePlaylistLoaded = function _handlePlaylistLoaded(response, stats, context, networkDetails) {
- var type = context.type,
- level = context.level,
- id = context.id,
- levelDetails = context.levelDetails;
-
-
- if (!levelDetails.targetduration) {
- this._handleManifestParsingError(response, context, 'invalid target duration', networkDetails);
- return;
- }
-
- var canHaveLevels = PlaylistLoader.canHaveQualityLevels(context.type);
- if (canHaveLevels) {
- this.hls.trigger(events["a" /* default */].LEVEL_LOADED, {
- details: levelDetails,
- level: level || 0,
- id: id || 0,
- stats: stats,
- networkDetails: networkDetails
- });
- } else {
- switch (type) {
- case ContextType.AUDIO_TRACK:
- this.hls.trigger(events["a" /* default */].AUDIO_TRACK_LOADED, {
- details: levelDetails,
- id: id,
- stats: stats,
- networkDetails: networkDetails
- });
- break;
- case ContextType.SUBTITLE_TRACK:
- this.hls.trigger(events["a" /* default */].SUBTITLE_TRACK_LOADED, {
- details: levelDetails,
- id: id,
- stats: stats,
- networkDetails: networkDetails
- });
- break;
- }
- }
- };
-
- playlist_loader__createClass(PlaylistLoader, null, [{
- key: 'ContextType',
- get: function get() {
- return ContextType;
- }
- }, {
- key: 'LevelType',
- get: function get() {
- return LevelType;
- }
- }]);
-
- return PlaylistLoader;
-}(event_handler);
-
-/* harmony default export */ var playlist_loader = (playlist_loader_PlaylistLoader);
-// CONCATENATED MODULE: ./src/loader/fragment-loader.js
-function fragment_loader__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function fragment_loader__possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function fragment_loader__inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-/*
- * Fragment Loader
-*/
-
-
-
-
-
-
-var fragment_loader_FragmentLoader = function (_EventHandler) {
- fragment_loader__inherits(FragmentLoader, _EventHandler);
-
- function FragmentLoader(hls) {
- fragment_loader__classCallCheck(this, FragmentLoader);
-
- var _this = fragment_loader__possibleConstructorReturn(this, _EventHandler.call(this, hls, events["a" /* default */].FRAG_LOADING));
-
- _this.loaders = {};
- return _this;
- }
-
- FragmentLoader.prototype.destroy = function destroy() {
- var loaders = this.loaders;
- for (var loaderName in loaders) {
- var loader = loaders[loaderName];
- if (loader) {
- loader.destroy();
- }
- }
- this.loaders = {};
-
- _EventHandler.prototype.destroy.call(this);
- };
-
- FragmentLoader.prototype.onFragLoading = function onFragLoading(data) {
- var frag = data.frag,
- type = frag.type,
- loaders = this.loaders,
- config = this.hls.config,
- FragmentILoader = config.fLoader,
- DefaultILoader = config.loader;
-
- // reset fragment state
- frag.loaded = 0;
-
- var loader = loaders[type];
- if (loader) {
- logger["b" /* logger */].warn('abort previous fragment loader for type: ' + type);
- loader.abort();
- }
-
- loader = loaders[type] = frag.loader = config.fLoader ? new FragmentILoader(config) : new DefaultILoader(config);
-
- var loaderContext = void 0,
- loaderConfig = void 0,
- loaderCallbacks = void 0;
-
- loaderContext = { url: frag.url, frag: frag, responseType: 'arraybuffer', progressData: false };
-
- var start = frag.byteRangeStartOffset,
- end = frag.byteRangeEndOffset;
-
- if (!isNaN(start) && !isNaN(end)) {
- loaderContext.rangeStart = start;
- loaderContext.rangeEnd = end;
- }
-
- loaderConfig = {
- timeout: config.fragLoadingTimeOut,
- maxRetry: 0,
- retryDelay: 0,
- maxRetryDelay: config.fragLoadingMaxRetryTimeout
- };
-
- loaderCallbacks = {
- onSuccess: this.loadsuccess.bind(this),
- onError: this.loaderror.bind(this),
- onTimeout: this.loadtimeout.bind(this),
- onProgress: this.loadprogress.bind(this)
- };
-
- loader.load(loaderContext, loaderConfig, loaderCallbacks);
- };
-
- FragmentLoader.prototype.loadsuccess = function loadsuccess(response, stats, context) {
- var networkDetails = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;
-
- var payload = response.data,
- frag = context.frag;
- // detach fragment loader on load success
- frag.loader = undefined;
- this.loaders[frag.type] = undefined;
- this.hls.trigger(events["a" /* default */].FRAG_LOADED, { payload: payload, frag: frag, stats: stats, networkDetails: networkDetails });
- };
-
- FragmentLoader.prototype.loaderror = function loaderror(response, context) {
- var networkDetails = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
-
- var loader = context.loader;
- if (loader) {
- loader.abort();
- }
-
- this.loaders[context.type] = undefined;
- this.hls.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].NETWORK_ERROR, details: errors["a" /* ErrorDetails */].FRAG_LOAD_ERROR, fatal: false, frag: context.frag, response: response, networkDetails: networkDetails });
- };
-
- FragmentLoader.prototype.loadtimeout = function loadtimeout(stats, context) {
- var networkDetails = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
-
- var loader = context.loader;
- if (loader) {
- loader.abort();
- }
-
- this.loaders[context.type] = undefined;
- this.hls.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].NETWORK_ERROR, details: errors["a" /* ErrorDetails */].FRAG_LOAD_TIMEOUT, fatal: false, frag: context.frag, networkDetails: networkDetails });
- };
-
- // data will be used for progressive parsing
-
-
- FragmentLoader.prototype.loadprogress = function loadprogress(stats, context, data) {
- var networkDetails = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;
- // jshint ignore:line
- var frag = context.frag;
- frag.loaded = stats.loaded;
- this.hls.trigger(events["a" /* default */].FRAG_LOAD_PROGRESS, { frag: frag, stats: stats, networkDetails: networkDetails });
- };
-
- return FragmentLoader;
-}(event_handler);
-
-/* harmony default export */ var fragment_loader = (fragment_loader_FragmentLoader);
-// CONCATENATED MODULE: ./src/loader/key-loader.js
-function key_loader__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function key_loader__possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function key_loader__inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-/*
- * Decrypt key Loader
-*/
-
-
-
-
-
-
-var key_loader_KeyLoader = function (_EventHandler) {
- key_loader__inherits(KeyLoader, _EventHandler);
-
- function KeyLoader(hls) {
- key_loader__classCallCheck(this, KeyLoader);
-
- var _this = key_loader__possibleConstructorReturn(this, _EventHandler.call(this, hls, events["a" /* default */].KEY_LOADING));
-
- _this.loaders = {};
- _this.decryptkey = null;
- _this.decrypturl = null;
- return _this;
- }
-
- KeyLoader.prototype.destroy = function destroy() {
- for (var loaderName in this.loaders) {
- var loader = this.loaders[loaderName];
- if (loader) {
- loader.destroy();
- }
- }
- this.loaders = {};
- event_handler.prototype.destroy.call(this);
- };
-
- KeyLoader.prototype.onKeyLoading = function onKeyLoading(data) {
- var frag = data.frag,
- type = frag.type,
- loader = this.loaders[type],
- decryptdata = frag.decryptdata,
- uri = decryptdata.uri;
- // if uri is different from previous one or if decrypt key not retrieved yet
- if (uri !== this.decrypturl || this.decryptkey === null) {
- var config = this.hls.config;
-
- if (loader) {
- logger["b" /* logger */].warn('abort previous key loader for type:' + type);
- loader.abort();
- }
- frag.loader = this.loaders[type] = new config.loader(config);
- this.decrypturl = uri;
- this.decryptkey = null;
-
- var loaderContext = void 0,
- loaderConfig = void 0,
- loaderCallbacks = void 0;
- loaderContext = { url: uri, frag: frag, responseType: 'arraybuffer' };
- loaderConfig = { timeout: config.fragLoadingTimeOut, maxRetry: config.fragLoadingMaxRetry, retryDelay: config.fragLoadingRetryDelay, maxRetryDelay: config.fragLoadingMaxRetryTimeout };
- loaderCallbacks = { onSuccess: this.loadsuccess.bind(this), onError: this.loaderror.bind(this), onTimeout: this.loadtimeout.bind(this) };
- frag.loader.load(loaderContext, loaderConfig, loaderCallbacks);
- } else if (this.decryptkey) {
- // we already loaded this key, return it
- decryptdata.key = this.decryptkey;
- this.hls.trigger(events["a" /* default */].KEY_LOADED, { frag: frag });
- }
- };
-
- KeyLoader.prototype.loadsuccess = function loadsuccess(response, stats, context) {
- var frag = context.frag;
- this.decryptkey = frag.decryptdata.key = new Uint8Array(response.data);
- // detach fragment loader on load success
- frag.loader = undefined;
- this.loaders[frag.type] = undefined;
- this.hls.trigger(events["a" /* default */].KEY_LOADED, { frag: frag });
- };
-
- KeyLoader.prototype.loaderror = function loaderror(response, context) {
- var frag = context.frag,
- loader = frag.loader;
- if (loader) {
- loader.abort();
- }
-
- this.loaders[context.type] = undefined;
- this.hls.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].NETWORK_ERROR, details: errors["a" /* ErrorDetails */].KEY_LOAD_ERROR, fatal: false, frag: frag, response: response });
- };
-
- KeyLoader.prototype.loadtimeout = function loadtimeout(stats, context) {
- var frag = context.frag,
- loader = frag.loader;
- if (loader) {
- loader.abort();
- }
-
- this.loaders[context.type] = undefined;
- this.hls.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].NETWORK_ERROR, details: errors["a" /* ErrorDetails */].KEY_LOAD_TIMEOUT, fatal: false, frag: frag });
- };
-
- return KeyLoader;
-}(event_handler);
-
-/* harmony default export */ var key_loader = (key_loader_KeyLoader);
-// CONCATENATED MODULE: ./src/controller/fragment-tracker.js
-function fragment_tracker__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function fragment_tracker__possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function fragment_tracker__inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-
-
-
-var FragmentState = {
- NOT_LOADED: 'NOT_LOADED',
- APPENDING: 'APPENDING',
- PARTIAL: 'PARTIAL',
- OK: 'OK'
-};
-
-var fragment_tracker_FragmentTracker = function (_EventHandler) {
- fragment_tracker__inherits(FragmentTracker, _EventHandler);
-
- function FragmentTracker(hls) {
- fragment_tracker__classCallCheck(this, FragmentTracker);
-
- var _this = fragment_tracker__possibleConstructorReturn(this, _EventHandler.call(this, hls, events["a" /* default */].BUFFER_APPENDED, events["a" /* default */].FRAG_BUFFERED, events["a" /* default */].FRAG_LOADED));
-
- _this.bufferPadding = 0.2;
-
- _this.fragments = Object.create(null);
- _this.timeRanges = Object.create(null);
-
- _this.config = hls.config;
- return _this;
- }
-
- FragmentTracker.prototype.destroy = function destroy() {
- this.fragments = null;
- this.timeRanges = null;
- this.config = null;
- event_handler.prototype.destroy.call(this);
- _EventHandler.prototype.destroy.call(this);
- };
-
- /**
- * Return a Fragment that match the position and levelType.
- * If not found any Fragment, return null
- * @param {number} position
- * @param {LevelType} levelType
- * @returns {Fragment|null}
- */
-
-
- FragmentTracker.prototype.getBufferedFrag = function getBufferedFrag(position, levelType) {
- var fragments = this.fragments;
- var bufferedFrags = Object.keys(fragments).filter(function (key) {
- var fragmentEntity = fragments[key];
- if (fragmentEntity.body.type !== levelType) {
- return false;
- }
-
- if (!fragmentEntity.buffered) {
- return false;
- }
-
- var frag = fragmentEntity.body;
- return frag.startPTS <= position && position <= frag.endPTS;
- });
- if (bufferedFrags.length === 0) {
- return null;
- } else {
- // https://github.com/video-dev/hls.js/pull/1545#discussion_r166229566
- var bufferedFragKey = bufferedFrags.pop();
- return fragments[bufferedFragKey].body;
- }
- };
-
- /**
- * Partial fragments effected by coded frame eviction will be removed
- * The browser will unload parts of the buffer to free up memory for new buffer data
- * Fragments will need to be reloaded when the buffer is freed up, removing partial fragments will allow them to reload(since there might be parts that are still playable)
- * @param {String} elementaryStream The elementaryStream of media this is (eg. video/audio)
- * @param {TimeRanges} timeRange TimeRange object from a sourceBuffer
- */
-
-
- FragmentTracker.prototype.detectEvictedFragments = function detectEvictedFragments(elementaryStream, timeRange) {
- var _this2 = this;
-
- var fragmentTimes = void 0,
- time = void 0;
- // Check if any flagged fragments have been unloaded
- Object.keys(this.fragments).forEach(function (key) {
- var fragmentEntity = _this2.fragments[key];
- if (fragmentEntity.buffered === true) {
- var esData = fragmentEntity.range[elementaryStream];
- if (esData) {
- fragmentTimes = esData.time;
- for (var i = 0; i < fragmentTimes.length; i++) {
- time = fragmentTimes[i];
-
- if (_this2.isTimeBuffered(time.startPTS, time.endPTS, timeRange) === false) {
- // Unregister partial fragment as it needs to load again to be reused
- _this2.removeFragment(fragmentEntity.body);
- break;
- }
- }
- }
- }
- });
- };
-
- /**
- * Checks if the fragment passed in is loaded in the buffer properly
- * Partially loaded fragments will be registered as a partial fragment
- * @param {Object} fragment Check the fragment against all sourceBuffers loaded
- */
-
-
- FragmentTracker.prototype.detectPartialFragments = function detectPartialFragments(fragment) {
- var _this3 = this;
-
- var fragKey = this.getFragmentKey(fragment);
- var fragmentEntity = this.fragments[fragKey];
- if (fragmentEntity) {
- fragmentEntity.buffered = true;
-
- Object.keys(this.timeRanges).forEach(function (elementaryStream) {
- if (fragment.hasElementaryStream(elementaryStream) === true) {
- var timeRange = _this3.timeRanges[elementaryStream];
- // Check for malformed fragments
- // Gaps need to be calculated for each elementaryStream
- fragmentEntity.range[elementaryStream] = _this3.getBufferedTimes(fragment.startPTS, fragment.endPTS, timeRange);
- }
- });
- }
- };
-
- FragmentTracker.prototype.getBufferedTimes = function getBufferedTimes(startPTS, endPTS, timeRange) {
- var fragmentTimes = [];
- var startTime = void 0,
- endTime = void 0;
- var fragmentPartial = false;
- for (var i = 0; i < timeRange.length; i++) {
- startTime = timeRange.start(i) - this.bufferPadding;
- endTime = timeRange.end(i) + this.bufferPadding;
- if (startPTS >= startTime && endPTS <= endTime) {
- // Fragment is entirely contained in buffer
- // No need to check the other timeRange times since it's completely playable
- fragmentTimes.push({
- startPTS: Math.max(startPTS, timeRange.start(i)),
- endPTS: Math.min(endPTS, timeRange.end(i))
- });
- break;
- } else if (startPTS < endTime && endPTS > startTime) {
- // Check for intersection with buffer
- // Get playable sections of the fragment
- fragmentTimes.push({
- startPTS: Math.max(startPTS, timeRange.start(i)),
- endPTS: Math.min(endPTS, timeRange.end(i))
- });
- fragmentPartial = true;
- } else if (endPTS <= startTime) {
- // No need to check the rest of the timeRange as it is in order
- break;
- }
- }
-
- return {
- time: fragmentTimes,
- partial: fragmentPartial
- };
- };
-
- FragmentTracker.prototype.getFragmentKey = function getFragmentKey(fragment) {
- return fragment.type + '_' + fragment.level + '_' + fragment.urlId + '_' + fragment.sn;
- };
-
- /**
- * Gets the partial fragment for a certain time
- * @param {Number} time
- * @returns {Object} fragment Returns a partial fragment at a time or null if there is no partial fragment
- */
-
-
- FragmentTracker.prototype.getPartialFragment = function getPartialFragment(time) {
- var _this4 = this;
-
- var timePadding = void 0,
- startTime = void 0,
- endTime = void 0;
- var bestFragment = null;
- var bestOverlap = 0;
- Object.keys(this.fragments).forEach(function (key) {
- var fragmentEntity = _this4.fragments[key];
- if (_this4.isPartial(fragmentEntity)) {
- startTime = fragmentEntity.body.startPTS - _this4.bufferPadding;
- endTime = fragmentEntity.body.endPTS + _this4.bufferPadding;
- if (time >= startTime && time <= endTime) {
- // Use the fragment that has the most padding from start and end time
- timePadding = Math.min(time - startTime, endTime - time);
- if (bestOverlap <= timePadding) {
- bestFragment = fragmentEntity.body;
- bestOverlap = timePadding;
- }
- }
- }
- });
- return bestFragment;
- };
-
- /**
- * @param {Object} fragment The fragment to check
- * @returns {String} Returns the fragment state when a fragment never loaded or if it partially loaded
- */
-
-
- FragmentTracker.prototype.getState = function getState(fragment) {
- var fragKey = this.getFragmentKey(fragment);
- var fragmentEntity = this.fragments[fragKey];
- var state = FragmentState.NOT_LOADED;
-
- if (fragmentEntity !== undefined) {
- if (!fragmentEntity.buffered) {
- state = FragmentState.APPENDING;
- } else if (this.isPartial(fragmentEntity) === true) {
- state = FragmentState.PARTIAL;
- } else {
- state = FragmentState.OK;
- }
- }
-
- return state;
- };
-
- FragmentTracker.prototype.isPartial = function isPartial(fragmentEntity) {
- return fragmentEntity.buffered === true && (fragmentEntity.range.video !== undefined && fragmentEntity.range.video.partial === true || fragmentEntity.range.audio !== undefined && fragmentEntity.range.audio.partial === true);
- };
-
- FragmentTracker.prototype.isTimeBuffered = function isTimeBuffered(startPTS, endPTS, timeRange) {
- var startTime = void 0,
- endTime = void 0;
- for (var i = 0; i < timeRange.length; i++) {
- startTime = timeRange.start(i) - this.bufferPadding;
- endTime = timeRange.end(i) + this.bufferPadding;
- if (startPTS >= startTime && endPTS <= endTime) {
- return true;
- }
-
- if (endPTS <= startTime) {
- // No need to check the rest of the timeRange as it is in order
- return false;
- }
- }
-
- return false;
- };
-
- /**
- * Fires when a fragment loading is completed
- */
-
-
- FragmentTracker.prototype.onFragLoaded = function onFragLoaded(e) {
- var fragment = e.frag;
- // don't track initsegment (for which sn is not a number)
- // don't track frags used for bitrateTest, they're irrelevant.
- if (!isNaN(fragment.sn) && !fragment.bitrateTest) {
- var fragKey = this.getFragmentKey(fragment);
- var fragmentEntity = {
- body: fragment,
- range: Object.create(null),
- buffered: false
- };
- this.fragments[fragKey] = fragmentEntity;
- }
- };
-
- /**
- * Fires when the buffer is updated
- */
-
-
- FragmentTracker.prototype.onBufferAppended = function onBufferAppended(e) {
- var _this5 = this;
-
- // Store the latest timeRanges loaded in the buffer
- this.timeRanges = e.timeRanges;
- Object.keys(this.timeRanges).forEach(function (elementaryStream) {
- var timeRange = _this5.timeRanges[elementaryStream];
- _this5.detectEvictedFragments(elementaryStream, timeRange);
- });
- };
-
- /**
- * Fires after a fragment has been loaded into the source buffer
- */
-
-
- FragmentTracker.prototype.onFragBuffered = function onFragBuffered(e) {
- this.detectPartialFragments(e.frag);
- };
-
- /**
- * Return true if fragment tracker has the fragment.
- * @param {Object} fragment
- * @returns {boolean}
- */
-
-
- FragmentTracker.prototype.hasFragment = function hasFragment(fragment) {
- var fragKey = this.getFragmentKey(fragment);
- return this.fragments[fragKey] !== undefined;
- };
-
- /**
- * Remove a fragment from fragment tracker until it is loaded again
- * @param {Object} fragment The fragment to remove
- */
-
-
- FragmentTracker.prototype.removeFragment = function removeFragment(fragment) {
- var fragKey = this.getFragmentKey(fragment);
- delete this.fragments[fragKey];
- };
-
- /**
- * Remove all fragments from fragment tracker.
- */
-
-
- FragmentTracker.prototype.removeAllFragments = function removeAllFragments() {
- this.fragments = Object.create(null);
- };
-
- return FragmentTracker;
-}(event_handler);
-// CONCATENATED MODULE: ./src/utils/binary-search.js
-var BinarySearch = {
- /**
- * Searches for an item in an array which matches a certain condition.
- * This requires the condition to only match one item in the array,
- * and for the array to be ordered.
- *
- * @param {Array} list The array to search.
- * @param {Function} comparisonFunction
- * Called and provided a candidate item as the first argument.
- * Should return:
- * > -1 if the item should be located at a lower index than the provided item.
- * > 1 if the item should be located at a higher index than the provided item.
- * > 0 if the item is the item you're looking for.
- *
- * @return {*} The object if it is found or null otherwise.
- */
- search: function search(list, comparisonFunction) {
- var minIndex = 0;
- var maxIndex = list.length - 1;
- var currentIndex = null;
- var currentElement = null;
-
- while (minIndex <= maxIndex) {
- currentIndex = (minIndex + maxIndex) / 2 | 0;
- currentElement = list[currentIndex];
-
- var comparisonResult = comparisonFunction(currentElement);
- if (comparisonResult > 0) {
- minIndex = currentIndex + 1;
- } else if (comparisonResult < 0) {
- maxIndex = currentIndex - 1;
- } else {
- return currentElement;
- }
- }
-
- return null;
- }
-};
-
-/* harmony default export */ var binary_search = (BinarySearch);
-// CONCATENATED MODULE: ./src/utils/buffer-helper.js
-function buffer_helper__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * @module BufferHelper
- *
- * Providing methods dealing with buffer length retrieval for example.
- *
- * In general, a helper around HTML5 MediaElement TimeRanges gathered from `buffered` property.
- *
- * Also @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/buffered
-*/
-
-var BufferHelper = function () {
- function BufferHelper() {
- buffer_helper__classCallCheck(this, BufferHelper);
- }
-
- /**
- * Return true if `media`'s buffered include `position`
- * @param {HTMLMediaElement|SourceBuffer} media
- * @param {number} position
- * @returns {boolean}
- */
- BufferHelper.isBuffered = function isBuffered(media, position) {
- try {
- if (media) {
- var buffered = media.buffered;
- for (var i = 0; i < buffered.length; i++) {
- if (position >= buffered.start(i) && position <= buffered.end(i)) {
- return true;
- }
- }
- }
- } catch (error) {
- // this is to catch
- // InvalidStateError: Failed to read the 'buffered' property from 'SourceBuffer':
- // This SourceBuffer has been removed from the parent media source
- }
- return false;
- };
-
- BufferHelper.bufferInfo = function bufferInfo(media, pos, maxHoleDuration) {
- try {
- if (media) {
- var vbuffered = media.buffered,
- buffered = [],
- i = void 0;
- for (i = 0; i < vbuffered.length; i++) {
- buffered.push({ start: vbuffered.start(i), end: vbuffered.end(i) });
- }
-
- return this.bufferedInfo(buffered, pos, maxHoleDuration);
- }
- } catch (error) {
- // this is to catch
- // InvalidStateError: Failed to read the 'buffered' property from 'SourceBuffer':
- // This SourceBuffer has been removed from the parent media source
- }
- return { len: 0, start: pos, end: pos, nextStart: undefined };
- };
-
- BufferHelper.bufferedInfo = function bufferedInfo(buffered, pos, maxHoleDuration) {
- var buffered2 = [],
-
- // bufferStart and bufferEnd are buffer boundaries around current video position
- bufferLen = void 0,
- bufferStart = void 0,
- bufferEnd = void 0,
- bufferStartNext = void 0,
- i = void 0;
- // sort on buffer.start/smaller end (IE does not always return sorted buffered range)
- buffered.sort(function (a, b) {
- var diff = a.start - b.start;
- if (diff) {
- return diff;
- } else {
- return b.end - a.end;
- }
- });
- // there might be some small holes between buffer time range
- // consider that holes smaller than maxHoleDuration are irrelevant and build another
- // buffer time range representations that discards those holes
- for (i = 0; i < buffered.length; i++) {
- var buf2len = buffered2.length;
- if (buf2len) {
- var buf2end = buffered2[buf2len - 1].end;
- // if small hole (value between 0 or maxHoleDuration ) or overlapping (negative)
- if (buffered[i].start - buf2end < maxHoleDuration) {
- // merge overlapping time ranges
- // update lastRange.end only if smaller than item.end
- // e.g. [ 1, 15] with [ 2,8] => [ 1,15] (no need to modify lastRange.end)
- // whereas [ 1, 8] with [ 2,15] => [ 1,15] ( lastRange should switch from [1,8] to [1,15])
- if (buffered[i].end > buf2end) {
- buffered2[buf2len - 1].end = buffered[i].end;
- }
- } else {
- // big hole
- buffered2.push(buffered[i]);
- }
- } else {
- // first value
- buffered2.push(buffered[i]);
- }
- }
- for (i = 0, bufferLen = 0, bufferStart = bufferEnd = pos; i < buffered2.length; i++) {
- var start = buffered2[i].start,
- end = buffered2[i].end;
- // logger.log('buf start/end:' + buffered.start(i) + '/' + buffered.end(i));
- if (pos + maxHoleDuration >= start && pos < end) {
- // play position is inside this buffer TimeRange, retrieve end of buffer position and buffer length
- bufferStart = start;
- bufferEnd = end;
- bufferLen = bufferEnd - pos;
- } else if (pos + maxHoleDuration < start) {
- bufferStartNext = start;
- break;
- }
- }
- return { len: bufferLen, start: bufferStart, end: bufferEnd, nextStart: bufferStartNext };
- };
-
- return BufferHelper;
-}();
-// EXTERNAL MODULE: ./node_modules/events/events.js
-var events_events = __webpack_require__(6);
-var events_default = /*#__PURE__*/__webpack_require__.n(events_events);
-
-// EXTERNAL MODULE: ./node_modules/webworkify-webpack/index.js
-var webworkify_webpack = __webpack_require__(11);
-var webworkify_webpack_default = /*#__PURE__*/__webpack_require__.n(webworkify_webpack);
-
-// EXTERNAL MODULE: ./src/demux/demuxer-inline.js + 11 modules
-var demuxer_inline = __webpack_require__(9);
-
-// CONCATENATED MODULE: ./src/utils/mediasource-helper.js
-/**
- * MediaSource helper
- */
-
-function getMediaSource() {
- if (typeof window !== 'undefined') {
- return window.MediaSource || window.WebKitMediaSource;
- }
-}
-// EXTERNAL MODULE: ./src/utils/get-self-scope.js
-var get_self_scope = __webpack_require__(3);
-
-// CONCATENATED MODULE: ./src/demux/demuxer.js
-function demuxer__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-
-
-
-
-
-
-
-
-
-
-// see https://stackoverflow.com/a/11237259/589493
-var global = Object(get_self_scope["a" /* getSelfScope */])(); // safeguard for code that might run both on worker and main thread
-var MediaSource = getMediaSource();
-
-var demuxer_Demuxer = function () {
- function Demuxer(hls, id) {
- demuxer__classCallCheck(this, Demuxer);
-
- this.hls = hls;
- this.id = id;
- // observer setup
- var observer = this.observer = new events_default.a();
- var config = hls.config;
- observer.trigger = function trigger(event) {
- for (var _len = arguments.length, data = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
- data[_key - 1] = arguments[_key];
- }
-
- observer.emit.apply(observer, [event, event].concat(data));
- };
-
- observer.off = function off(event) {
- for (var _len2 = arguments.length, data = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
- data[_key2 - 1] = arguments[_key2];
- }
-
- observer.removeListener.apply(observer, [event].concat(data));
- };
-
- var forwardMessage = function (ev, data) {
- data = data || {};
- data.frag = this.frag;
- data.id = this.id;
- hls.trigger(ev, data);
- }.bind(this);
-
- // forward events to main thread
- observer.on(events["a" /* default */].FRAG_DECRYPTED, forwardMessage);
- observer.on(events["a" /* default */].FRAG_PARSING_INIT_SEGMENT, forwardMessage);
- observer.on(events["a" /* default */].FRAG_PARSING_DATA, forwardMessage);
- observer.on(events["a" /* default */].FRAG_PARSED, forwardMessage);
- observer.on(events["a" /* default */].ERROR, forwardMessage);
- observer.on(events["a" /* default */].FRAG_PARSING_METADATA, forwardMessage);
- observer.on(events["a" /* default */].FRAG_PARSING_USERDATA, forwardMessage);
- observer.on(events["a" /* default */].INIT_PTS_FOUND, forwardMessage);
-
- var typeSupported = {
- mp4: MediaSource.isTypeSupported('video/mp4'),
- mpeg: MediaSource.isTypeSupported('audio/mpeg'),
- mp3: MediaSource.isTypeSupported('audio/mp4; codecs="mp3"')
- };
- // navigator.vendor is not always available in Web Worker
- // refer to https://developer.mozilla.org/en-US/docs/Web/API/WorkerGlobalScope/navigator
- var vendor = navigator.vendor;
- if (config.enableWorker && typeof Worker !== 'undefined') {
- logger["b" /* logger */].log('demuxing in webworker');
- var w = void 0;
- try {
- w = this.w = webworkify_webpack_default()(/*require.resolve*/(12));
- this.onwmsg = this.onWorkerMessage.bind(this);
- w.addEventListener('message', this.onwmsg);
- w.onerror = function (event) {
- hls.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].OTHER_ERROR, details: errors["a" /* ErrorDetails */].INTERNAL_EXCEPTION, fatal: true, event: 'demuxerWorker', err: { message: event.message + ' (' + event.filename + ':' + event.lineno + ')' } });
- };
- w.postMessage({ cmd: 'init', typeSupported: typeSupported, vendor: vendor, id: id, config: JSON.stringify(config) });
- } catch (err) {
- logger["b" /* logger */].error('error while initializing DemuxerWorker, fallback on DemuxerInline');
- if (w) {
- // revoke the Object URL that was used to create demuxer worker, so as not to leak it
- global.URL.revokeObjectURL(w.objectURL);
- }
- this.demuxer = new demuxer_inline["a" /* default */](observer, typeSupported, config, vendor);
- this.w = undefined;
- }
- } else {
- this.demuxer = new demuxer_inline["a" /* default */](observer, typeSupported, config, vendor);
- }
- }
-
- Demuxer.prototype.destroy = function destroy() {
- var w = this.w;
- if (w) {
- w.removeEventListener('message', this.onwmsg);
- w.terminate();
- this.w = null;
- } else {
- var demuxer = this.demuxer;
- if (demuxer) {
- demuxer.destroy();
- this.demuxer = null;
- }
- }
- var observer = this.observer;
- if (observer) {
- observer.removeAllListeners();
- this.observer = null;
- }
- };
-
- Demuxer.prototype.push = function push(data, initSegment, audioCodec, videoCodec, frag, duration, accurateTimeOffset, defaultInitPTS) {
- var w = this.w;
- var timeOffset = !isNaN(frag.startDTS) ? frag.startDTS : frag.start;
- var decryptdata = frag.decryptdata;
- var lastFrag = this.frag;
- var discontinuity = !(lastFrag && frag.cc === lastFrag.cc);
- var trackSwitch = !(lastFrag && frag.level === lastFrag.level);
- var nextSN = lastFrag && frag.sn === lastFrag.sn + 1;
- var contiguous = !trackSwitch && nextSN;
- if (discontinuity) {
- logger["b" /* logger */].log(this.id + ':discontinuity detected');
- }
-
- if (trackSwitch) {
- logger["b" /* logger */].log(this.id + ':switch detected');
- }
-
- this.frag = frag;
- if (w) {
- // post fragment payload as transferable objects for ArrayBuffer (no copy)
- w.postMessage({ cmd: 'demux', data: data, decryptdata: decryptdata, initSegment: initSegment, audioCodec: audioCodec, videoCodec: videoCodec, timeOffset: timeOffset, discontinuity: discontinuity, trackSwitch: trackSwitch, contiguous: contiguous, duration: duration, accurateTimeOffset: accurateTimeOffset, defaultInitPTS: defaultInitPTS }, data instanceof ArrayBuffer ? [data] : []);
- } else {
- var demuxer = this.demuxer;
- if (demuxer) {
- demuxer.push(data, decryptdata, initSegment, audioCodec, videoCodec, timeOffset, discontinuity, trackSwitch, contiguous, duration, accurateTimeOffset, defaultInitPTS);
- }
- }
- };
-
- Demuxer.prototype.onWorkerMessage = function onWorkerMessage(ev) {
- var data = ev.data,
- hls = this.hls;
- switch (data.event) {
- case 'init':
- // revoke the Object URL that was used to create demuxer worker, so as not to leak it
- global.URL.revokeObjectURL(this.w.objectURL);
- break;
- // special case for FRAG_PARSING_DATA: data1 and data2 are transferable objects
- case events["a" /* default */].FRAG_PARSING_DATA:
- data.data.data1 = new Uint8Array(data.data1);
- if (data.data2) {
- data.data.data2 = new Uint8Array(data.data2);
- }
-
- /* falls through */
- default:
- data.data = data.data || {};
- data.data.frag = this.frag;
- data.data.id = this.id;
- hls.trigger(data.event, data.data);
- break;
- }
- };
-
- return Demuxer;
-}();
-
-/* harmony default export */ var demux_demuxer = (demuxer_Demuxer);
-// CONCATENATED MODULE: ./src/controller/level-helper.js
-/**
- * @module LevelHelper
- *
- * Providing methods dealing with playlist sliding and drift
- *
- * TODO: Create an actual `Level` class/model that deals with all this logic in an object-oriented-manner.
- *
- * */
-
-
-
-function addGroupId(level, type, id) {
- switch (type) {
- case 'audio':
- if (!level.audioGroupIds) {
- level.audioGroupIds = [];
- }
- level.audioGroupIds.push(id);
- break;
- case 'text':
- if (!level.textGroupIds) {
- level.textGroupIds = [];
- }
- level.textGroupIds.push(id);
- break;
- }
-}
-
-function updatePTS(fragments, fromIdx, toIdx) {
- var fragFrom = fragments[fromIdx],
- fragTo = fragments[toIdx],
- fragToPTS = fragTo.startPTS;
- // if we know startPTS[toIdx]
- if (!isNaN(fragToPTS)) {
- // update fragment duration.
- // it helps to fix drifts between playlist reported duration and fragment real duration
- if (toIdx > fromIdx) {
- fragFrom.duration = fragToPTS - fragFrom.start;
- if (fragFrom.duration < 0) {
- logger["b" /* logger */].warn('negative duration computed for frag ' + fragFrom.sn + ',level ' + fragFrom.level + ', there should be some duration drift between playlist and fragment!');
- }
- } else {
- fragTo.duration = fragFrom.start - fragToPTS;
- if (fragTo.duration < 0) {
- logger["b" /* logger */].warn('negative duration computed for frag ' + fragTo.sn + ',level ' + fragTo.level + ', there should be some duration drift between playlist and fragment!');
- }
- }
- } else {
- // we dont know startPTS[toIdx]
- if (toIdx > fromIdx) {
- fragTo.start = fragFrom.start + fragFrom.duration;
- } else {
- fragTo.start = Math.max(fragFrom.start - fragTo.duration, 0);
- }
- }
-}
-
-function updateFragPTSDTS(details, frag, startPTS, endPTS, startDTS, endDTS) {
- // update frag PTS/DTS
- var maxStartPTS = startPTS;
- if (!isNaN(frag.startPTS)) {
- // delta PTS between audio and video
- var deltaPTS = Math.abs(frag.startPTS - startPTS);
- if (isNaN(frag.deltaPTS)) {
- frag.deltaPTS = deltaPTS;
- } else {
- frag.deltaPTS = Math.max(deltaPTS, frag.deltaPTS);
- }
-
- maxStartPTS = Math.max(startPTS, frag.startPTS);
- startPTS = Math.min(startPTS, frag.startPTS);
- endPTS = Math.max(endPTS, frag.endPTS);
- startDTS = Math.min(startDTS, frag.startDTS);
- endDTS = Math.max(endDTS, frag.endDTS);
- }
-
- var drift = startPTS - frag.start;
- frag.start = frag.startPTS = startPTS;
- frag.maxStartPTS = maxStartPTS;
- frag.endPTS = endPTS;
- frag.startDTS = startDTS;
- frag.endDTS = endDTS;
- frag.duration = endPTS - startPTS;
-
- var sn = frag.sn;
- // exit if sn out of range
- if (!details || sn < details.startSN || sn > details.endSN) {
- return 0;
- }
-
- var fragIdx = void 0,
- fragments = void 0,
- i = void 0;
- fragIdx = sn - details.startSN;
- fragments = details.fragments;
- // update frag reference in fragments array
- // rationale is that fragments array might not contain this frag object.
- // this will happpen if playlist has been refreshed between frag loading and call to updateFragPTSDTS()
- // if we don't update frag, we won't be able to propagate PTS info on the playlist
- // resulting in invalid sliding computation
- fragments[fragIdx] = frag;
- // adjust fragment PTS/duration from seqnum-1 to frag 0
- for (i = fragIdx; i > 0; i--) {
- updatePTS(fragments, i, i - 1);
- }
-
- // adjust fragment PTS/duration from seqnum to last frag
- for (i = fragIdx; i < fragments.length - 1; i++) {
- updatePTS(fragments, i, i + 1);
- }
-
- details.PTSKnown = true;
- // logger.log(` frag start/end:${startPTS.toFixed(3)}/${endPTS.toFixed(3)}`);
-
- return drift;
-}
-
-function mergeDetails(oldDetails, newDetails) {
- var start = Math.max(oldDetails.startSN, newDetails.startSN) - newDetails.startSN,
- end = Math.min(oldDetails.endSN, newDetails.endSN) - newDetails.startSN,
- delta = newDetails.startSN - oldDetails.startSN,
- oldfragments = oldDetails.fragments,
- newfragments = newDetails.fragments,
- ccOffset = 0,
- PTSFrag = void 0;
-
- // potentially retrieve cached initsegment
- if (newDetails.initSegment && oldDetails.initSegment) {
- newDetails.initSegment = oldDetails.initSegment;
- }
-
- // check if old/new playlists have fragments in common
- if (end < start) {
- newDetails.PTSKnown = false;
- return;
- }
- // loop through overlapping SN and update startPTS , cc, and duration if any found
- for (var i = start; i <= end; i++) {
- var oldFrag = oldfragments[delta + i],
- newFrag = newfragments[i];
- if (newFrag && oldFrag) {
- ccOffset = oldFrag.cc - newFrag.cc;
- if (!isNaN(oldFrag.startPTS)) {
- newFrag.start = newFrag.startPTS = oldFrag.startPTS;
- newFrag.endPTS = oldFrag.endPTS;
- newFrag.duration = oldFrag.duration;
- newFrag.backtracked = oldFrag.backtracked;
- newFrag.dropped = oldFrag.dropped;
- PTSFrag = newFrag;
- }
- }
- }
-
- if (ccOffset) {
- logger["b" /* logger */].log('discontinuity sliding from playlist, take drift into account');
- for (i = 0; i < newfragments.length; i++) {
- newfragments[i].cc += ccOffset;
- }
- }
-
- // if at least one fragment contains PTS info, recompute PTS information for all fragments
- if (PTSFrag) {
- updateFragPTSDTS(newDetails, PTSFrag, PTSFrag.startPTS, PTSFrag.endPTS, PTSFrag.startDTS, PTSFrag.endDTS);
- } else {
- // ensure that delta is within oldfragments range
- // also adjust sliding in case delta is 0 (we could have old=[50-60] and new=old=[50-61])
- // in that case we also need to adjust start offset of all fragments
- if (delta >= 0 && delta < oldfragments.length) {
- // adjust start by sliding offset
- var sliding = oldfragments[delta].start;
- for (i = 0; i < newfragments.length; i++) {
- newfragments[i].start += sliding;
- }
- }
- }
- // if we are here, it means we have fragments overlapping between
- // old and new level. reliable PTS info is thus relying on old level
- newDetails.PTSKnown = oldDetails.PTSKnown;
-}
-// CONCATENATED MODULE: ./src/utils/time-ranges.js
-/**
- * TimeRanges to string helper
- */
-
-var TimeRanges = {
- toString: function toString(r) {
- var log = '',
- len = r.length;
- for (var i = 0; i < len; i++) {
- log += '[' + r.start(i).toFixed(3) + ',' + r.end(i).toFixed(3) + ']';
- }
-
- return log;
- }
-};
-
-/* harmony default export */ var time_ranges = (TimeRanges);
-// CONCATENATED MODULE: ./src/utils/discontinuities.js
-
-
-
-function findFirstFragWithCC(fragments, cc) {
- var firstFrag = null;
-
- for (var i = 0; i < fragments.length; i += 1) {
- var currentFrag = fragments[i];
- if (currentFrag && currentFrag.cc === cc) {
- firstFrag = currentFrag;
- break;
- }
- }
-
- return firstFrag;
-}
-
-function findFragWithCC(fragments, CC) {
- return binary_search.search(fragments, function (candidate) {
- if (candidate.cc < CC) {
- return 1;
- } else if (candidate.cc > CC) {
- return -1;
- } else {
- return 0;
- }
- });
-}
-
-function shouldAlignOnDiscontinuities(lastFrag, lastLevel, details) {
- var shouldAlign = false;
- if (lastLevel && lastLevel.details && details) {
- if (details.endCC > details.startCC || lastFrag && lastFrag.cc < details.startCC) {
- shouldAlign = true;
- }
- }
- return shouldAlign;
-}
-
-// Find the first frag in the previous level which matches the CC of the first frag of the new level
-function findDiscontinuousReferenceFrag(prevDetails, curDetails) {
- var prevFrags = prevDetails.fragments;
- var curFrags = curDetails.fragments;
-
- if (!curFrags.length || !prevFrags.length) {
- logger["b" /* logger */].log('No fragments to align');
- return;
- }
-
- var prevStartFrag = findFirstFragWithCC(prevFrags, curFrags[0].cc);
-
- if (!prevStartFrag || prevStartFrag && !prevStartFrag.startPTS) {
- logger["b" /* logger */].log('No frag in previous level to align on');
- return;
- }
-
- return prevStartFrag;
-}
-
-function adjustPts(sliding, details) {
- details.fragments.forEach(function (frag) {
- if (frag) {
- var start = frag.start + sliding;
- frag.start = frag.startPTS = start;
- frag.endPTS = start + frag.duration;
- }
- });
- details.PTSKnown = true;
-}
-
-// If a change in CC is detected, the PTS can no longer be relied upon
-// Attempt to align the level by using the last level - find the last frag matching the current CC and use it's PTS
-// as a reference
-function alignDiscontinuities(lastFrag, lastLevel, details) {
- if (shouldAlignOnDiscontinuities(lastFrag, lastLevel, details)) {
- var referenceFrag = findDiscontinuousReferenceFrag(lastLevel.details, details);
- if (referenceFrag) {
- logger["b" /* logger */].log('Adjusting PTS using last level due to CC increase within current level');
- adjustPts(referenceFrag.start, details);
- }
- }
- // try to align using programDateTime attribute (if available)
- if (details.PTSKnown === false && lastLevel && lastLevel.details && lastLevel.details.fragments && lastLevel.details.fragments.length) {
- // if last level sliding is 1000 and its first frag PROGRAM-DATE-TIME is 2017-08-20 1:10:00 AM
- // and if new details first frag PROGRAM DATE-TIME is 2017-08-20 1:10:08 AM
- // then we can deduce that playlist B sliding is 1000+8 = 1008s
- var lastPDT = lastLevel.details.programDateTime;
- var newPDT = details.programDateTime;
- // date diff is in ms. frag.start is in seconds
- var sliding = (newPDT - lastPDT) / 1000 + lastLevel.details.fragments[0].start;
- if (!isNaN(sliding)) {
- logger["b" /* logger */].log('adjusting PTS using programDateTime delta, sliding:' + sliding.toFixed(3));
- adjustPts(sliding, details);
- }
- }
-}
-// CONCATENATED MODULE: ./src/task-loop.js
-function task_loop__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function task_loop__possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function task_loop__inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-
-
-/**
- * Sub-class specialization of EventHandler base class.
- *
- * TaskLoop allows to schedule a task function being called (optionnaly repeatedly) on the main loop,
- * scheduled asynchroneously, avoiding recursive calls in the same tick.
- *
- * The task itself is implemented in `doTick`. It can be requested and called for single execution
- * using the `tick` method.
- *
- * It will be assured that the task execution method (`tick`) only gets called once per main loop "tick",
- * no matter how often it gets requested for execution. Execution in further ticks will be scheduled accordingly.
- *
- * If further execution requests have already been scheduled on the next tick, it can be checked with `hasNextTick`,
- * and cancelled with `clearNextTick`.
- *
- * The task can be scheduled as an interval repeatedly with a period as parameter (see `setInterval`, `clearInterval`).
- *
- * Sub-classes need to implement the `doTick` method which will effectively have the task execution routine.
- *
- * Further explanations:
- *
- * The baseclass has a `tick` method that will schedule the doTick call. It may be called synchroneously
- * only for a stack-depth of one. On re-entrant calls, sub-sequent calls are scheduled for next main loop ticks.
- *
- * When the task execution (`tick` method) is called in re-entrant way this is detected and
- * we are limiting the task execution per call stack to exactly one, but scheduling/post-poning further
- * task processing on the next main loop iteration (also known as "next tick" in the Node/JS runtime lingo).
- */
-
-var TaskLoop = function (_EventHandler) {
- task_loop__inherits(TaskLoop, _EventHandler);
-
- function TaskLoop(hls) {
- task_loop__classCallCheck(this, TaskLoop);
-
- for (var _len = arguments.length, events = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
- events[_key - 1] = arguments[_key];
- }
-
- var _this = task_loop__possibleConstructorReturn(this, _EventHandler.call.apply(_EventHandler, [this, hls].concat(events)));
-
- _this._tickInterval = null;
- _this._tickTimer = null;
- _this._tickCallCount = 0;
- _this._boundTick = _this.tick.bind(_this);
- return _this;
- }
-
- /**
- * @override
- */
-
-
- TaskLoop.prototype.onHandlerDestroying = function onHandlerDestroying() {
- // clear all timers before unregistering from event bus
- this.clearNextTick();
- this.clearInterval();
- };
-
- /**
- * @returns {boolean}
- */
-
-
- TaskLoop.prototype.hasInterval = function hasInterval() {
- return !!this._tickInterval;
- };
-
- /**
- * @returns {boolean}
- */
-
-
- TaskLoop.prototype.hasNextTick = function hasNextTick() {
- return !!this._tickTimer;
- };
-
- /**
- * @param {number} millis Interval time (ms)
- * @returns {boolean} True when interval has been scheduled, false when already scheduled (no effect)
- */
-
-
- TaskLoop.prototype.setInterval = function (_setInterval) {
- function setInterval(_x) {
- return _setInterval.apply(this, arguments);
- }
-
- setInterval.toString = function () {
- return _setInterval.toString();
- };
-
- return setInterval;
- }(function (millis) {
- if (!this._tickInterval) {
- this._tickInterval = setInterval(this._boundTick, millis);
- return true;
- }
- return false;
- });
-
- /**
- * @returns {boolean} True when interval was cleared, false when none was set (no effect)
- */
-
-
- TaskLoop.prototype.clearInterval = function (_clearInterval) {
- function clearInterval() {
- return _clearInterval.apply(this, arguments);
- }
-
- clearInterval.toString = function () {
- return _clearInterval.toString();
- };
-
- return clearInterval;
- }(function () {
- if (this._tickInterval) {
- clearInterval(this._tickInterval);
- this._tickInterval = null;
- return true;
- }
- return false;
- });
-
- /**
- * @returns {boolean} True when timeout was cleared, false when none was set (no effect)
- */
-
-
- TaskLoop.prototype.clearNextTick = function clearNextTick() {
- if (this._tickTimer) {
- clearTimeout(this._tickTimer);
- this._tickTimer = null;
- return true;
- }
- return false;
- };
-
- /**
- * Will call the subclass doTick implementation in this main loop tick
- * or in the next one (via setTimeout(,0)) in case it has already been called
- * in this tick (in case this is a re-entrant call).
- */
-
-
- TaskLoop.prototype.tick = function tick() {
- this._tickCallCount++;
- if (this._tickCallCount === 1) {
- this.doTick();
- // re-entrant call to tick from previous doTick call stack
- // -> schedule a call on the next main loop iteration to process this task processing request
- if (this._tickCallCount > 1) {
- // make sure only one timer exists at any time at max
- this.clearNextTick();
- this._tickTimer = setTimeout(this._boundTick, 0);
- }
- this._tickCallCount = 0;
- }
- };
-
- /**
- * For subclass to implement task logic
- * @abstract
- */
-
-
- TaskLoop.prototype.doTick = function doTick() {};
-
- return TaskLoop;
-}(event_handler);
-
-/* harmony default export */ var task_loop = (TaskLoop);
-// CONCATENATED MODULE: ./src/controller/fragment-finders.js
-
-
-/**
- * Calculates the PDT of the next load position.
- * bufferEnd in this function is usually the position of the playhead.
- * @param {number} [start = 0] - The PTS of the first fragment within the level
- * @param {number} [bufferEnd = 0] - The end of the contiguous buffered range the playhead is currently within
- * @param {*} levelDetails - An object containing the parsed and computed properties of the currently playing level
- * @returns {number} nextPdt - The computed PDT
- */
-function calculateNextPDT() {
- var start = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
- var bufferEnd = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
- var levelDetails = arguments[2];
-
- var pdt = 0;
- if (levelDetails.programDateTime) {
- var parsedDateInt = Date.parse(levelDetails.programDateTime);
- if (!isNaN(parsedDateInt)) {
- pdt = bufferEnd * 1000 + parsedDateInt - 1000 * start;
- }
- }
- return pdt;
-}
-
-/**
- * Finds the first fragment whose endPDT value exceeds the given PDT.
- * @param {Array} fragments - The array of candidate fragments
- * @param {number|null} [PDTValue = null] - The PDT value which must be exceeded
- * @returns {*|null} fragment - The best matching fragment
- */
-function findFragmentByPDT(fragments) {
- var PDTValue = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
-
- if (!Array.isArray(fragments) || !fragments.length || PDTValue === null) {
- return null;
- }
-
- // if less than start
- var firstSegment = fragments[0];
-
- if (PDTValue < firstSegment.pdt) {
- return null;
- }
-
- var lastSegment = fragments[fragments.length - 1];
-
- if (PDTValue >= lastSegment.endPdt) {
- return null;
- }
-
- for (var seg = 0; seg < fragments.length; ++seg) {
- var frag = fragments[seg];
- if (PDTValue < frag.endPdt) {
- return frag;
- }
- }
- return null;
-}
-
-/**
- * Finds a fragment based on the SN of the previous fragment; or based on the needs of the current buffer.
- * This method compensates for small buffer gaps by applying a tolerance to the start of any candidate fragment, thus
- * breaking any traps which would cause the same fragment to be continuously selected within a small range.
- * @param {*} fragPrevious - The last frag successfully appended
- * @param {Array} fragments - The array of candidate fragments
- * @param {number} [bufferEnd = 0] - The end of the contiguous buffered range the playhead is currently within
- * @param {number} [end = 0] - The computed end time of the stream
- * @param {number} maxFragLookUpTolerance - The amount of time that a fragment's start can be within in order to be considered contiguous
- * @returns {*} foundFrag - The best matching fragment
- */
-function findFragmentBySN(fragPrevious, fragments) {
- var bufferEnd = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
- var end = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 0;
- var maxFragLookUpTolerance = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 0;
-
- var foundFrag = void 0;
- var fragNext = fragPrevious ? fragments[fragPrevious.sn - fragments[0].sn + 1] : null;
- if (bufferEnd < end) {
- if (bufferEnd > end - maxFragLookUpTolerance) {
- maxFragLookUpTolerance = 0;
- }
-
- // Prefer the next fragment if it's within tolerance
- if (fragNext && !fragment_finders_fragmentWithinToleranceTest(bufferEnd, maxFragLookUpTolerance, fragNext)) {
- foundFrag = fragNext;
- } else {
- foundFrag = binary_search.search(fragments, fragment_finders_fragmentWithinToleranceTest.bind(null, bufferEnd, maxFragLookUpTolerance));
- }
- }
- return foundFrag;
-}
-
-/**
- * The test function used by the findFragmentBySn's BinarySearch to look for the best match to the current buffer conditions.
- * @param {*} candidate - The fragment to test
- * @param {number} [bufferEnd = 0] - The end of the current buffered range the playhead is currently within
- * @param {number} [maxFragLookUpTolerance = 0] - The amount of time that a fragment's start can be within in order to be considered contiguous
- * @returns {number} - 0 if it matches, 1 if too low, -1 if too high
- */
-function fragment_finders_fragmentWithinToleranceTest() {
- var bufferEnd = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
- var maxFragLookUpTolerance = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
- var candidate = arguments[2];
-
- // offset should be within fragment boundary - config.maxFragLookUpTolerance
- // this is to cope with situations like
- // bufferEnd = 9.991
- // frag[Ø] : [0,10]
- // frag[1] : [10,20]
- // bufferEnd is within frag[0] range ... although what we are expecting is to return frag[1] here
- // frag start frag start+duration
- // |-----------------------------|
- // <---> <--->
- // ...--------><-----------------------------><---------....
- // previous frag matching fragment next frag
- // return -1 return 0 return 1
- // logger.log(`level/sn/start/end/bufEnd:${level}/${candidate.sn}/${candidate.start}/${(candidate.start+candidate.duration)}/${bufferEnd}`);
- // Set the lookup tolerance to be small enough to detect the current segment - ensures we don't skip over very small segments
- var candidateLookupTolerance = Math.min(maxFragLookUpTolerance, candidate.duration + (candidate.deltaPTS ? candidate.deltaPTS : 0));
- if (candidate.start + candidate.duration - candidateLookupTolerance <= bufferEnd) {
- return 1;
- } else if (candidate.start - candidateLookupTolerance > bufferEnd && candidate.start) {
- // if maxFragLookUpTolerance will have negative value then don't return -1 for first element
- return -1;
- }
-
- return 0;
-}
-// CONCATENATED MODULE: ./src/controller/stream-controller.js
-var stream_controller__createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
-
-function stream_controller__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function stream_controller__possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function stream_controller__inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-/*
- * Stream Controller
-*/
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-var State = {
- STOPPED: 'STOPPED',
- IDLE: 'IDLE',
- KEY_LOADING: 'KEY_LOADING',
- FRAG_LOADING: 'FRAG_LOADING',
- FRAG_LOADING_WAITING_RETRY: 'FRAG_LOADING_WAITING_RETRY',
- WAITING_LEVEL: 'WAITING_LEVEL',
- PARSING: 'PARSING',
- PARSED: 'PARSED',
- BUFFER_FLUSHING: 'BUFFER_FLUSHING',
- ENDED: 'ENDED',
- ERROR: 'ERROR'
-};
-
-var stream_controller_StreamController = function (_TaskLoop) {
- stream_controller__inherits(StreamController, _TaskLoop);
-
- function StreamController(hls, fragmentTracker) {
- stream_controller__classCallCheck(this, StreamController);
-
- var _this = stream_controller__possibleConstructorReturn(this, _TaskLoop.call(this, hls, events["a" /* default */].MEDIA_ATTACHED, events["a" /* default */].MEDIA_DETACHING, events["a" /* default */].MANIFEST_LOADING, events["a" /* default */].MANIFEST_PARSED, events["a" /* default */].LEVEL_LOADED, events["a" /* default */].KEY_LOADED, events["a" /* default */].FRAG_LOADED, events["a" /* default */].FRAG_LOAD_EMERGENCY_ABORTED, events["a" /* default */].FRAG_PARSING_INIT_SEGMENT, events["a" /* default */].FRAG_PARSING_DATA, events["a" /* default */].FRAG_PARSED, events["a" /* default */].ERROR, events["a" /* default */].AUDIO_TRACK_SWITCHING, events["a" /* default */].AUDIO_TRACK_SWITCHED, events["a" /* default */].BUFFER_CREATED, events["a" /* default */].BUFFER_APPENDED, events["a" /* default */].BUFFER_FLUSHED));
-
- _this.fragmentTracker = fragmentTracker;
- _this.config = hls.config;
- _this.audioCodecSwap = false;
- _this._state = State.STOPPED;
- _this.stallReported = false;
- return _this;
- }
-
- StreamController.prototype.onHandlerDestroying = function onHandlerDestroying() {
- this.stopLoad();
- _TaskLoop.prototype.onHandlerDestroying.call(this);
- };
-
- StreamController.prototype.onHandlerDestroyed = function onHandlerDestroyed() {
- this.state = State.STOPPED;
- this.fragmentTracker = null;
- _TaskLoop.prototype.onHandlerDestroyed.call(this);
- };
-
- StreamController.prototype.startLoad = function startLoad(startPosition) {
- if (this.levels) {
- var lastCurrentTime = this.lastCurrentTime,
- hls = this.hls;
- this.stopLoad();
- this.setInterval(100);
- this.level = -1;
- this.fragLoadError = 0;
- if (!this.startFragRequested) {
- // determine load level
- var startLevel = hls.startLevel;
- if (startLevel === -1) {
- // -1 : guess start Level by doing a bitrate test by loading first fragment of lowest quality level
- startLevel = 0;
- this.bitrateTest = true;
- }
- // set new level to playlist loader : this will trigger start level load
- // hls.nextLoadLevel remains until it is set to a new value or until a new frag is successfully loaded
- this.level = hls.nextLoadLevel = startLevel;
- this.loadedmetadata = false;
- }
- // if startPosition undefined but lastCurrentTime set, set startPosition to last currentTime
- if (lastCurrentTime > 0 && startPosition === -1) {
- logger["b" /* logger */].log('override startPosition with lastCurrentTime @' + lastCurrentTime.toFixed(3));
- startPosition = lastCurrentTime;
- }
- this.state = State.IDLE;
- this.nextLoadPosition = this.startPosition = this.lastCurrentTime = startPosition;
- this.tick();
- } else {
- this.forceStartLoad = true;
- this.state = State.STOPPED;
- }
- };
-
- StreamController.prototype.stopLoad = function stopLoad() {
- var frag = this.fragCurrent;
- if (frag) {
- if (frag.loader) {
- frag.loader.abort();
- }
-
- this.fragmentTracker.removeFragment(frag);
- this.fragCurrent = null;
- }
- this.fragPrevious = null;
- if (this.demuxer) {
- this.demuxer.destroy();
- this.demuxer = null;
- }
- this.clearInterval();
- this.state = State.STOPPED;
- this.forceStartLoad = false;
- };
-
- StreamController.prototype.doTick = function doTick() {
- switch (this.state) {
- case State.BUFFER_FLUSHING:
- // in buffer flushing state, reset fragLoadError counter
- this.fragLoadError = 0;
- break;
- case State.IDLE:
- this._doTickIdle();
- break;
- case State.WAITING_LEVEL:
- var level = this.levels[this.level];
- // check if playlist is already loaded
- if (level && level.details) {
- this.state = State.IDLE;
- }
-
- break;
- case State.FRAG_LOADING_WAITING_RETRY:
- var now = window.performance.now();
- var retryDate = this.retryDate;
- // if current time is gt than retryDate, or if media seeking let's switch to IDLE state to retry loading
- if (!retryDate || now >= retryDate || this.media && this.media.seeking) {
- logger["b" /* logger */].log('mediaController: retryDate reached, switch back to IDLE state');
- this.state = State.IDLE;
- }
- break;
- case State.ERROR:
- case State.STOPPED:
- case State.FRAG_LOADING:
- case State.PARSING:
- case State.PARSED:
- case State.ENDED:
- break;
- default:
- break;
- }
- // check buffer
- this._checkBuffer();
- // check/update current fragment
- this._checkFragmentChanged();
- };
-
- // Ironically the "idle" state is the on we do the most logic in it seems ....
- // NOTE: Maybe we could rather schedule a check for buffer length after half of the currently
- // played segment, or on pause/play/seek instead of naively checking every 100ms?
-
-
- StreamController.prototype._doTickIdle = function _doTickIdle() {
- var hls = this.hls,
- config = hls.config,
- media = this.media;
-
- // if start level not parsed yet OR
- // if video not attached AND start fragment already requested OR start frag prefetch disable
- // exit loop, as we either need more info (level not parsed) or we need media to be attached to load new fragment
- if (this.levelLastLoaded === undefined || !media && (this.startFragRequested || !config.startFragPrefetch)) {
- return;
- }
-
- // if we have not yet loaded any fragment, start loading from start position
- var pos = void 0;
- if (this.loadedmetadata) {
- pos = media.currentTime;
- } else {
- pos = this.nextLoadPosition;
- }
-
- // determine next load level
- var level = hls.nextLoadLevel,
- levelInfo = this.levels[level];
-
- if (!levelInfo) {
- return;
- }
-
- var levelBitrate = levelInfo.bitrate,
- maxBufLen = void 0;
-
- // compute max Buffer Length that we could get from this load level, based on level bitrate. don't buffer more than 60 MB and more than 30s
- if (levelBitrate) {
- maxBufLen = Math.max(8 * config.maxBufferSize / levelBitrate, config.maxBufferLength);
- } else {
- maxBufLen = config.maxBufferLength;
- }
-
- maxBufLen = Math.min(maxBufLen, config.maxMaxBufferLength);
-
- // determine next candidate fragment to be loaded, based on current position and end of buffer position
- // ensure up to `config.maxMaxBufferLength` of buffer upfront
-
- var bufferInfo = BufferHelper.bufferInfo(this.mediaBuffer ? this.mediaBuffer : media, pos, config.maxBufferHole),
- bufferLen = bufferInfo.len;
- // Stay idle if we are still with buffer margins
- if (bufferLen >= maxBufLen) {
- return;
- }
-
- // if buffer length is less than maxBufLen try to load a new fragment ...
- logger["b" /* logger */].trace('buffer length of ' + bufferLen.toFixed(3) + ' is below max of ' + maxBufLen.toFixed(3) + '. checking for more payload ...');
-
- // set next load level : this will trigger a playlist load if needed
- this.level = hls.nextLoadLevel = level;
-
- var levelDetails = levelInfo.details;
- // if level info not retrieved yet, switch state and wait for level retrieval
- // if live playlist, ensure that new playlist has been refreshed to avoid loading/try to load
- // a useless and outdated fragment (that might even introduce load error if it is already out of the live playlist)
- if (!levelDetails || levelDetails.live && this.levelLastLoaded !== level) {
- this.state = State.WAITING_LEVEL;
- return;
- }
-
- // we just got done loading the final fragment and there is no other buffered range after ...
- // rationale is that in case there are any buffered ranges after, it means that there are unbuffered portion in between
- // so we should not switch to ENDED in that case, to be able to buffer them
- // dont switch to ENDED if we need to backtrack last fragment
- var fragPrevious = this.fragPrevious;
- if (!levelDetails.live && fragPrevious && !fragPrevious.backtracked && fragPrevious.sn === levelDetails.endSN && !bufferInfo.nextStart) {
- // fragPrevious is last fragment. retrieve level duration using last frag start offset + duration
- // real duration might be lower than initial duration if there are drifts between real frag duration and playlist signaling
- var duration = Math.min(media.duration, fragPrevious.start + fragPrevious.duration);
- // if everything (almost) til the end is buffered, let's signal eos
- // we don't compare exactly media.duration === bufferInfo.end as there could be some subtle media duration difference (audio/video offsets...)
- // tolerate up to one frag duration to cope with these cases.
- // also cope with almost zero last frag duration (max last frag duration with 200ms) refer to https://github.com/video-dev/hls.js/pull/657
- if (duration - Math.max(bufferInfo.end, fragPrevious.start) <= Math.max(0.2, fragPrevious.duration)) {
- // Finalize the media stream
- var data = {};
- if (this.altAudio) {
- data.type = 'video';
- }
-
- this.hls.trigger(events["a" /* default */].BUFFER_EOS, data);
- this.state = State.ENDED;
- return;
- }
- }
-
- // if we have the levelDetails for the selected variant, lets continue enrichen our stream (load keys/fragments or trigger EOS, etc..)
- this._fetchPayloadOrEos(pos, bufferInfo, levelDetails);
- };
-
- StreamController.prototype._fetchPayloadOrEos = function _fetchPayloadOrEos(pos, bufferInfo, levelDetails) {
- var fragPrevious = this.fragPrevious,
- level = this.level,
- fragments = levelDetails.fragments,
- fragLen = fragments.length;
-
- // empty playlist
- if (fragLen === 0) {
- return;
- }
-
- // find fragment index, contiguous with end of buffer position
- var start = fragments[0].start,
- end = fragments[fragLen - 1].start + fragments[fragLen - 1].duration,
- bufferEnd = bufferInfo.end,
- frag = void 0;
-
- if (levelDetails.initSegment && !levelDetails.initSegment.data) {
- frag = levelDetails.initSegment;
- } else {
- // in case of live playlist we need to ensure that requested position is not located before playlist start
- if (levelDetails.live) {
- var initialLiveManifestSize = this.config.initialLiveManifestSize;
- if (fragLen < initialLiveManifestSize) {
- logger["b" /* logger */].warn('Can not start playback of a level, reason: not enough fragments ' + fragLen + ' < ' + initialLiveManifestSize);
- return;
- }
-
- frag = this._ensureFragmentAtLivePoint(levelDetails, bufferEnd, start, end, fragPrevious, fragments, fragLen);
- // if it explicitely returns null don't load any fragment and exit function now
- if (frag === null) {
- return;
- }
- } else {
- // VoD playlist: if bufferEnd before start of playlist, load first fragment
- if (bufferEnd < start) {
- frag = fragments[0];
- }
- }
- }
- if (!frag) {
- frag = this._findFragment(start, fragPrevious, fragLen, fragments, bufferEnd, end, levelDetails);
- }
-
- if (frag) {
- if (frag.encrypted) {
- logger["b" /* logger */].log('Loading key for ' + frag.sn + ' of [' + levelDetails.startSN + ' ,' + levelDetails.endSN + '],level ' + level);
- this._loadKey(frag);
- } else {
- logger["b" /* logger */].log('Loading ' + frag.sn + ' of [' + levelDetails.startSN + ' ,' + levelDetails.endSN + '],level ' + level + ', currentTime:' + pos.toFixed(3) + ',bufferEnd:' + bufferEnd.toFixed(3));
- this._loadFragment(frag);
- }
- }
- };
-
- StreamController.prototype._ensureFragmentAtLivePoint = function _ensureFragmentAtLivePoint(levelDetails, bufferEnd, start, end, fragPrevious, fragments, fragLen) {
- var config = this.hls.config,
- media = this.media;
-
- var frag = void 0;
-
- // check if requested position is within seekable boundaries :
- // logger.log(`start/pos/bufEnd/seeking:${start.toFixed(3)}/${pos.toFixed(3)}/${bufferEnd.toFixed(3)}/${this.media.seeking}`);
- var maxLatency = config.liveMaxLatencyDuration !== undefined ? config.liveMaxLatencyDuration : config.liveMaxLatencyDurationCount * levelDetails.targetduration;
-
- if (bufferEnd < Math.max(start - config.maxFragLookUpTolerance, end - maxLatency)) {
- var liveSyncPosition = this.liveSyncPosition = this.computeLivePosition(start, levelDetails);
- logger["b" /* logger */].log('buffer end: ' + bufferEnd.toFixed(3) + ' is located too far from the end of live sliding playlist, reset currentTime to : ' + liveSyncPosition.toFixed(3));
- bufferEnd = liveSyncPosition;
- if (media && media.readyState && media.duration > liveSyncPosition) {
- media.currentTime = liveSyncPosition;
- }
-
- this.nextLoadPosition = liveSyncPosition;
- }
-
- // if end of buffer greater than live edge, don't load any fragment
- // this could happen if live playlist intermittently slides in the past.
- // level 1 loaded [182580161,182580167]
- // level 1 loaded [182580162,182580169]
- // Loading 182580168 of [182580162 ,182580169],level 1 ..
- // Loading 182580169 of [182580162 ,182580169],level 1 ..
- // level 1 loaded [182580162,182580168] <============= here we should have bufferEnd > end. in that case break to avoid reloading 182580168
- // level 1 loaded [182580164,182580171]
- //
- // don't return null in case media not loaded yet (readystate === 0)
- if (levelDetails.PTSKnown && bufferEnd > end && media && media.readyState) {
- return null;
- }
-
- if (this.startFragRequested && !levelDetails.PTSKnown) {
- /* we are switching level on live playlist, but we don't have any PTS info for that quality level ...
- try to load frag matching with next SN.
- even if SN are not synchronized between playlists, loading this frag will help us
- compute playlist sliding and find the right one after in case it was not the right consecutive one */
- if (fragPrevious) {
- if (!levelDetails.programDateTime) {
- // Uses buffer and sequence number to calculate switch segment (required if using EXT-X-DISCONTINUITY-SEQUENCE)
- var targetSN = fragPrevious.sn + 1;
- if (targetSN >= levelDetails.startSN && targetSN <= levelDetails.endSN) {
- var fragNext = fragments[targetSN - levelDetails.startSN];
- if (fragPrevious.cc === fragNext.cc) {
- frag = fragNext;
- logger["b" /* logger */].log('live playlist, switching playlist, load frag with next SN: ' + frag.sn);
- }
- }
- // next frag SN not available (or not with same continuity counter)
- // look for a frag sharing the same CC
- if (!frag) {
- frag = binary_search.search(fragments, function (frag) {
- return fragPrevious.cc - frag.cc;
- });
- if (frag) {
- logger["b" /* logger */].log('live playlist, switching playlist, load frag with same CC: ' + frag.sn);
- }
- }
- } else {
- // Relies on PDT in order to switch bitrates (Support EXT-X-DISCONTINUITY without EXT-X-DISCONTINUITY-SEQUENCE)
- frag = findFragmentByPDT(fragments, fragPrevious.endPdt + 1);
- }
- }
- if (!frag) {
- /* we have no idea about which fragment should be loaded.
- so let's load mid fragment. it will help computing playlist sliding and find the right one
- */
- frag = fragments[Math.min(fragLen - 1, Math.round(fragLen / 2))];
- logger["b" /* logger */].log('live playlist, switching playlist, unknown, load middle frag : ' + frag.sn);
- }
- }
- return frag;
- };
-
- StreamController.prototype._findFragment = function _findFragment(start, fragPrevious, fragLen, fragments, bufferEnd, end, levelDetails) {
- var config = this.hls.config;
- var fragBySN = function fragBySN() {
- return findFragmentBySN(fragPrevious, fragments, bufferEnd, end, config.maxFragLookUpTolerance);
- };
- var frag = void 0;
- var foundFrag = void 0;
-
- if (bufferEnd < end) {
- if (!levelDetails.programDateTime) {
- // Uses buffer and sequence number to calculate switch segment (required if using EXT-X-DISCONTINUITY-SEQUENCE)
- foundFrag = findFragmentBySN(fragPrevious, fragments, bufferEnd, end, config.maxFragLookUpTolerance);
- } else {
- // Relies on PDT in order to switch bitrates (Support EXT-X-DISCONTINUITY without EXT-X-DISCONTINUITY-SEQUENCE)
- foundFrag = findFragmentByPDT(fragments, calculateNextPDT(start, bufferEnd, levelDetails));
- if (!foundFrag || fragment_finders_fragmentWithinToleranceTest(bufferEnd, config.maxFragLookUpTolerance, foundFrag)) {
- // Fall back to SN order if finding by PDT returns a frag which won't fit within the stream
- // fragmentWithToleranceTest returns 0 if the frag is within tolerance; 1 or -1 otherwise
- logger["b" /* logger */].warn('Frag found by PDT search did not fit within tolerance; falling back to finding by SN');
- foundFrag = fragBySN();
- }
- }
- } else {
- // reach end of playlist
- foundFrag = fragments[fragLen - 1];
- }
- if (foundFrag) {
- frag = foundFrag;
- var curSNIdx = frag.sn - levelDetails.startSN;
- var sameLevel = fragPrevious && frag.level === fragPrevious.level;
- var prevFrag = fragments[curSNIdx - 1];
- var nextFrag = fragments[curSNIdx + 1];
- // logger.log('find SN matching with pos:' + bufferEnd + ':' + frag.sn);
- if (fragPrevious && frag.sn === fragPrevious.sn) {
- if (sameLevel && !frag.backtracked) {
- if (frag.sn < levelDetails.endSN) {
- var deltaPTS = fragPrevious.deltaPTS;
- // if there is a significant delta between audio and video, larger than max allowed hole,
- // and if previous remuxed fragment did not start with a keyframe. (fragPrevious.dropped)
- // let's try to load previous fragment again to get last keyframe
- // then we will reload again current fragment (that way we should be able to fill the buffer hole ...)
- if (deltaPTS && deltaPTS > config.maxBufferHole && fragPrevious.dropped && curSNIdx) {
- frag = prevFrag;
- logger["b" /* logger */].warn('SN just loaded, with large PTS gap between audio and video, maybe frag is not starting with a keyframe ? load previous one to try to overcome this');
- } else {
- frag = nextFrag;
- logger["b" /* logger */].log('SN just loaded, load next one: ' + frag.sn);
- }
- } else {
- frag = null;
- }
- } else if (frag.backtracked) {
- // Only backtrack a max of 1 consecutive fragment to prevent sliding back too far when little or no frags start with keyframes
- if (nextFrag && nextFrag.backtracked) {
- logger["b" /* logger */].warn('Already backtracked from fragment ' + nextFrag.sn + ', will not backtrack to fragment ' + frag.sn + '. Loading fragment ' + nextFrag.sn);
- frag = nextFrag;
- } else {
- // If a fragment has dropped frames and it's in a same level/sequence, load the previous fragment to try and find the keyframe
- // Reset the dropped count now since it won't be reset until we parse the fragment again, which prevents infinite backtracking on the same segment
- logger["b" /* logger */].warn('Loaded fragment with dropped frames, backtracking 1 segment to find a keyframe');
- frag.dropped = 0;
- if (prevFrag) {
- frag = prevFrag;
- frag.backtracked = true;
- } else if (curSNIdx) {
- // can't backtrack on very first fragment
- frag = null;
- }
- }
- }
- }
- }
- return frag;
- };
-
- StreamController.prototype._loadKey = function _loadKey(frag) {
- this.state = State.KEY_LOADING;
- this.hls.trigger(events["a" /* default */].KEY_LOADING, { frag: frag });
- };
-
- StreamController.prototype._loadFragment = function _loadFragment(frag) {
- // Check if fragment is not loaded
- var fragState = this.fragmentTracker.getState(frag);
-
- this.fragCurrent = frag;
- this.startFragRequested = true;
- // Don't update nextLoadPosition for fragments which are not buffered
- if (!isNaN(frag.sn) && !frag.bitrateTest) {
- this.nextLoadPosition = frag.start + frag.duration;
- }
-
- // Allow backtracked fragments to load
- if (frag.backtracked || fragState === FragmentState.NOT_LOADED || fragState === FragmentState.PARTIAL) {
- frag.autoLevel = this.hls.autoLevelEnabled;
- frag.bitrateTest = this.bitrateTest;
-
- this.hls.trigger(events["a" /* default */].FRAG_LOADING, { frag: frag });
- // lazy demuxer init, as this could take some time ... do it during frag loading
- if (!this.demuxer) {
- this.demuxer = new demux_demuxer(this.hls, 'main');
- }
-
- this.state = State.FRAG_LOADING;
- } else if (fragState === FragmentState.APPENDING) {
- // Lower the buffer size and try again
- if (this._reduceMaxBufferLength(frag.duration)) {
- this.fragmentTracker.removeFragment(frag);
- }
- }
- };
-
- StreamController.prototype.getBufferedFrag = function getBufferedFrag(position) {
- return this.fragmentTracker.getBufferedFrag(position, playlist_loader.LevelType.MAIN);
- };
-
- StreamController.prototype.followingBufferedFrag = function followingBufferedFrag(frag) {
- if (frag) {
- // try to get range of next fragment (500ms after this range)
- return this.getBufferedFrag(frag.endPTS + 0.5);
- }
- return null;
- };
-
- StreamController.prototype._checkFragmentChanged = function _checkFragmentChanged() {
- var fragPlayingCurrent = void 0,
- currentTime = void 0,
- video = this.media;
- if (video && video.readyState && video.seeking === false) {
- currentTime = video.currentTime;
- /* if video element is in seeked state, currentTime can only increase.
- (assuming that playback rate is positive ...)
- As sometimes currentTime jumps back to zero after a
- media decode error, check this, to avoid seeking back to
- wrong position after a media decode error
- */
- if (currentTime > this.lastCurrentTime) {
- this.lastCurrentTime = currentTime;
- }
-
- if (BufferHelper.isBuffered(video, currentTime)) {
- fragPlayingCurrent = this.getBufferedFrag(currentTime);
- } else if (BufferHelper.isBuffered(video, currentTime + 0.1)) {
- /* ensure that FRAG_CHANGED event is triggered at startup,
- when first video frame is displayed and playback is paused.
- add a tolerance of 100ms, in case current position is not buffered,
- check if current pos+100ms is buffered and use that buffer range
- for FRAG_CHANGED event reporting */
- fragPlayingCurrent = this.getBufferedFrag(currentTime + 0.1);
- }
- if (fragPlayingCurrent) {
- var fragPlaying = fragPlayingCurrent;
- if (fragPlaying !== this.fragPlaying) {
- this.hls.trigger(events["a" /* default */].FRAG_CHANGED, { frag: fragPlaying });
- var fragPlayingLevel = fragPlaying.level;
- if (!this.fragPlaying || this.fragPlaying.level !== fragPlayingLevel) {
- this.hls.trigger(events["a" /* default */].LEVEL_SWITCHED, { level: fragPlayingLevel });
- }
-
- this.fragPlaying = fragPlaying;
- }
- }
- }
- };
-
- /*
- on immediate level switch :
- - pause playback if playing
- - cancel any pending load request
- - and trigger a buffer flush
- */
-
-
- StreamController.prototype.immediateLevelSwitch = function immediateLevelSwitch() {
- logger["b" /* logger */].log('immediateLevelSwitch');
- if (!this.immediateSwitch) {
- this.immediateSwitch = true;
- var media = this.media,
- previouslyPaused = void 0;
- if (media) {
- previouslyPaused = media.paused;
- media.pause();
- } else {
- // don't restart playback after instant level switch in case media not attached
- previouslyPaused = true;
- }
- this.previouslyPaused = previouslyPaused;
- }
- var fragCurrent = this.fragCurrent;
- if (fragCurrent && fragCurrent.loader) {
- fragCurrent.loader.abort();
- }
-
- this.fragCurrent = null;
- // flush everything
- this.flushMainBuffer(0, Number.POSITIVE_INFINITY);
- };
-
- /**
- * on immediate level switch end, after new fragment has been buffered:
- * - nudge video decoder by slightly adjusting video currentTime (if currentTime buffered)
- * - resume the playback if needed
- */
-
-
- StreamController.prototype.immediateLevelSwitchEnd = function immediateLevelSwitchEnd() {
- var media = this.media;
- if (media && media.buffered.length) {
- this.immediateSwitch = false;
- if (BufferHelper.isBuffered(media, media.currentTime)) {
- // only nudge if currentTime is buffered
- media.currentTime -= 0.0001;
- }
- if (!this.previouslyPaused) {
- media.play();
- }
- }
- };
-
- /**
- * try to switch ASAP without breaking video playback:
- * in order to ensure smooth but quick level switching,
- * we need to find the next flushable buffer range
- * we should take into account new segment fetch time
- */
-
-
- StreamController.prototype.nextLevelSwitch = function nextLevelSwitch() {
- var media = this.media;
- // ensure that media is defined and that metadata are available (to retrieve currentTime)
- if (media && media.readyState) {
- var fetchdelay = void 0,
- fragPlayingCurrent = void 0,
- nextBufferedFrag = void 0;
- fragPlayingCurrent = this.getBufferedFrag(media.currentTime);
- if (fragPlayingCurrent && fragPlayingCurrent.startPTS > 1) {
- // flush buffer preceding current fragment (flush until current fragment start offset)
- // minus 1s to avoid video freezing, that could happen if we flush keyframe of current video ...
- this.flushMainBuffer(0, fragPlayingCurrent.startPTS - 1);
- }
- if (!media.paused) {
- // add a safety delay of 1s
- var nextLevelId = this.hls.nextLoadLevel,
- nextLevel = this.levels[nextLevelId],
- fragLastKbps = this.fragLastKbps;
- if (fragLastKbps && this.fragCurrent) {
- fetchdelay = this.fragCurrent.duration * nextLevel.bitrate / (1000 * fragLastKbps) + 1;
- } else {
- fetchdelay = 0;
- }
- } else {
- fetchdelay = 0;
- }
- // logger.log('fetchdelay:'+fetchdelay);
- // find buffer range that will be reached once new fragment will be fetched
- nextBufferedFrag = this.getBufferedFrag(media.currentTime + fetchdelay);
- if (nextBufferedFrag) {
- // we can flush buffer range following this one without stalling playback
- nextBufferedFrag = this.followingBufferedFrag(nextBufferedFrag);
- if (nextBufferedFrag) {
- // if we are here, we can also cancel any loading/demuxing in progress, as they are useless
- var fragCurrent = this.fragCurrent;
- if (fragCurrent && fragCurrent.loader) {
- fragCurrent.loader.abort();
- }
-
- this.fragCurrent = null;
- // start flush position is the start PTS of next buffered frag.
- // we use frag.naxStartPTS which is max(audio startPTS, video startPTS).
- // in case there is a small PTS Delta between audio and video, using maxStartPTS avoids flushing last samples from current fragment
- this.flushMainBuffer(nextBufferedFrag.maxStartPTS, Number.POSITIVE_INFINITY);
- }
- }
- }
- };
-
- StreamController.prototype.flushMainBuffer = function flushMainBuffer(startOffset, endOffset) {
- this.state = State.BUFFER_FLUSHING;
- var flushScope = { startOffset: startOffset, endOffset: endOffset };
- // if alternate audio tracks are used, only flush video, otherwise flush everything
- if (this.altAudio) {
- flushScope.type = 'video';
- }
-
- this.hls.trigger(events["a" /* default */].BUFFER_FLUSHING, flushScope);
- };
-
- StreamController.prototype.onMediaAttached = function onMediaAttached(data) {
- var media = this.media = this.mediaBuffer = data.media;
- this.onvseeking = this.onMediaSeeking.bind(this);
- this.onvseeked = this.onMediaSeeked.bind(this);
- this.onvended = this.onMediaEnded.bind(this);
- media.addEventListener('seeking', this.onvseeking);
- media.addEventListener('seeked', this.onvseeked);
- media.addEventListener('ended', this.onvended);
- var config = this.config;
- if (this.levels && config.autoStartLoad) {
- this.hls.startLoad(config.startPosition);
- }
- };
-
- StreamController.prototype.onMediaDetaching = function onMediaDetaching() {
- var media = this.media;
- if (media && media.ended) {
- logger["b" /* logger */].log('MSE detaching and video ended, reset startPosition');
- this.startPosition = this.lastCurrentTime = 0;
- }
-
- // reset fragment backtracked flag
- var levels = this.levels;
- if (levels) {
- levels.forEach(function (level) {
- if (level.details) {
- level.details.fragments.forEach(function (fragment) {
- fragment.backtracked = undefined;
- });
- }
- });
- }
- // remove video listeners
- if (media) {
- media.removeEventListener('seeking', this.onvseeking);
- media.removeEventListener('seeked', this.onvseeked);
- media.removeEventListener('ended', this.onvended);
- this.onvseeking = this.onvseeked = this.onvended = null;
- }
- this.media = this.mediaBuffer = null;
- this.loadedmetadata = false;
- this.stopLoad();
- };
-
- StreamController.prototype.onMediaSeeking = function onMediaSeeking() {
- var media = this.media,
- currentTime = media ? media.currentTime : undefined,
- config = this.config;
- if (!isNaN(currentTime)) {
- logger["b" /* logger */].log('media seeking to ' + currentTime.toFixed(3));
- }
-
- var mediaBuffer = this.mediaBuffer ? this.mediaBuffer : media;
- var bufferInfo = BufferHelper.bufferInfo(mediaBuffer, currentTime, this.config.maxBufferHole);
- if (this.state === State.FRAG_LOADING) {
- var fragCurrent = this.fragCurrent;
- // check if we are seeking to a unbuffered area AND if frag loading is in progress
- if (bufferInfo.len === 0 && fragCurrent) {
- var tolerance = config.maxFragLookUpTolerance,
- fragStartOffset = fragCurrent.start - tolerance,
- fragEndOffset = fragCurrent.start + fragCurrent.duration + tolerance;
- // check if we seek position will be out of currently loaded frag range : if out cancel frag load, if in, don't do anything
- if (currentTime < fragStartOffset || currentTime > fragEndOffset) {
- if (fragCurrent.loader) {
- logger["b" /* logger */].log('seeking outside of buffer while fragment load in progress, cancel fragment load');
- fragCurrent.loader.abort();
- }
- this.fragCurrent = null;
- this.fragPrevious = null;
- // switch to IDLE state to load new fragment
- this.state = State.IDLE;
- } else {
- logger["b" /* logger */].log('seeking outside of buffer but within currently loaded fragment range');
- }
- }
- } else if (this.state === State.ENDED) {
- // if seeking to unbuffered area, clean up fragPrevious
- if (bufferInfo.len === 0) {
- this.fragPrevious = 0;
- }
-
- // switch to IDLE state to check for potential new fragment
- this.state = State.IDLE;
- }
- if (media) {
- this.lastCurrentTime = currentTime;
- }
-
- // in case seeking occurs although no media buffered, adjust startPosition and nextLoadPosition to seek target
- if (!this.loadedmetadata) {
- this.nextLoadPosition = this.startPosition = currentTime;
- }
-
- // tick to speed up processing
- this.tick();
- };
-
- StreamController.prototype.onMediaSeeked = function onMediaSeeked() {
- var media = this.media,
- currentTime = media ? media.currentTime : undefined;
- if (!isNaN(currentTime)) {
- logger["b" /* logger */].log('media seeked to ' + currentTime.toFixed(3));
- }
-
- // tick to speed up FRAGMENT_PLAYING triggering
- this.tick();
- };
-
- StreamController.prototype.onMediaEnded = function onMediaEnded() {
- logger["b" /* logger */].log('media ended');
- // reset startPosition and lastCurrentTime to restart playback @ stream beginning
- this.startPosition = this.lastCurrentTime = 0;
- };
-
- StreamController.prototype.onManifestLoading = function onManifestLoading() {
- // reset buffer on manifest loading
- logger["b" /* logger */].log('trigger BUFFER_RESET');
- this.hls.trigger(events["a" /* default */].BUFFER_RESET);
- this.fragmentTracker.removeAllFragments();
- this.stalled = false;
- this.startPosition = this.lastCurrentTime = 0;
- };
-
- StreamController.prototype.onManifestParsed = function onManifestParsed(data) {
- var aac = false,
- heaac = false,
- codec = void 0;
- data.levels.forEach(function (level) {
- // detect if we have different kind of audio codecs used amongst playlists
- codec = level.audioCodec;
- if (codec) {
- if (codec.indexOf('mp4a.40.2') !== -1) {
- aac = true;
- }
-
- if (codec.indexOf('mp4a.40.5') !== -1) {
- heaac = true;
- }
- }
- });
- this.audioCodecSwitch = aac && heaac;
- if (this.audioCodecSwitch) {
- logger["b" /* logger */].log('both AAC/HE-AAC audio found in levels; declaring level codec as HE-AAC');
- }
-
- this.levels = data.levels;
- this.startFragRequested = false;
- var config = this.config;
- if (config.autoStartLoad || this.forceStartLoad) {
- this.hls.startLoad(config.startPosition);
- }
- };
-
- StreamController.prototype.onLevelLoaded = function onLevelLoaded(data) {
- var newDetails = data.details;
- var newLevelId = data.level;
- var lastLevel = this.levels[this.levelLastLoaded];
- var curLevel = this.levels[newLevelId];
- var duration = newDetails.totalduration;
- var sliding = 0;
-
- logger["b" /* logger */].log('level ' + newLevelId + ' loaded [' + newDetails.startSN + ',' + newDetails.endSN + '],duration:' + duration);
-
- if (newDetails.live) {
- var curDetails = curLevel.details;
- if (curDetails && newDetails.fragments.length > 0) {
- // we already have details for that level, merge them
- mergeDetails(curDetails, newDetails);
- sliding = newDetails.fragments[0].start;
- this.liveSyncPosition = this.computeLivePosition(sliding, curDetails);
- if (newDetails.PTSKnown && !isNaN(sliding)) {
- logger["b" /* logger */].log('live playlist sliding:' + sliding.toFixed(3));
- } else {
- logger["b" /* logger */].log('live playlist - outdated PTS, unknown sliding');
- alignDiscontinuities(this.fragPrevious, lastLevel, newDetails);
- }
- } else {
- logger["b" /* logger */].log('live playlist - first load, unknown sliding');
- newDetails.PTSKnown = false;
- alignDiscontinuities(this.fragPrevious, lastLevel, newDetails);
- }
- } else {
- newDetails.PTSKnown = false;
- }
- // override level info
- curLevel.details = newDetails;
- this.levelLastLoaded = newLevelId;
- this.hls.trigger(events["a" /* default */].LEVEL_UPDATED, { details: newDetails, level: newLevelId });
-
- if (this.startFragRequested === false) {
- // compute start position if set to -1. use it straight away if value is defined
- if (this.startPosition === -1 || this.lastCurrentTime === -1) {
- // first, check if start time offset has been set in playlist, if yes, use this value
- var startTimeOffset = newDetails.startTimeOffset;
- if (!isNaN(startTimeOffset)) {
- if (startTimeOffset < 0) {
- logger["b" /* logger */].log('negative start time offset ' + startTimeOffset + ', count from end of last fragment');
- startTimeOffset = sliding + duration + startTimeOffset;
- }
- logger["b" /* logger */].log('start time offset found in playlist, adjust startPosition to ' + startTimeOffset);
- this.startPosition = startTimeOffset;
- } else {
- // if live playlist, set start position to be fragment N-this.config.liveSyncDurationCount (usually 3)
- if (newDetails.live) {
- this.startPosition = this.computeLivePosition(sliding, newDetails);
- logger["b" /* logger */].log('configure startPosition to ' + this.startPosition);
- } else {
- this.startPosition = 0;
- }
- }
- this.lastCurrentTime = this.startPosition;
- }
- this.nextLoadPosition = this.startPosition;
- }
- // only switch batck to IDLE state if we were waiting for level to start downloading a new fragment
- if (this.state === State.WAITING_LEVEL) {
- this.state = State.IDLE;
- }
-
- // trigger handler right now
- this.tick();
- };
-
- StreamController.prototype.onKeyLoaded = function onKeyLoaded() {
- if (this.state === State.KEY_LOADING) {
- this.state = State.IDLE;
- this.tick();
- }
- };
-
- StreamController.prototype.onFragLoaded = function onFragLoaded(data) {
- var fragCurrent = this.fragCurrent,
- fragLoaded = data.frag;
- if (this.state === State.FRAG_LOADING && fragCurrent && fragLoaded.type === 'main' && fragLoaded.level === fragCurrent.level && fragLoaded.sn === fragCurrent.sn) {
- var stats = data.stats;
- var currentLevel = this.levels[fragCurrent.level];
- var details = currentLevel.details;
- logger["b" /* logger */].log('Loaded ' + fragCurrent.sn + ' of [' + details.startSN + ' ,' + details.endSN + '],level ' + fragCurrent.level);
- // reset frag bitrate test in any case after frag loaded event
- this.bitrateTest = false;
- this.stats = stats;
- // if this frag was loaded to perform a bitrate test AND if hls.nextLoadLevel is greater than 0
- // then this means that we should be able to load a fragment at a higher quality level
- if (fragLoaded.bitrateTest === true && this.hls.nextLoadLevel) {
- // switch back to IDLE state ... we just loaded a fragment to determine adequate start bitrate and initialize autoswitch algo
- this.state = State.IDLE;
- this.startFragRequested = false;
- stats.tparsed = stats.tbuffered = window.performance.now();
- this.hls.trigger(events["a" /* default */].FRAG_BUFFERED, { stats: stats, frag: fragCurrent, id: 'main' });
- this.tick();
- } else if (fragLoaded.sn === 'initSegment') {
- this.state = State.IDLE;
- stats.tparsed = stats.tbuffered = window.performance.now();
- details.initSegment.data = data.payload;
- this.hls.trigger(events["a" /* default */].FRAG_BUFFERED, { stats: stats, frag: fragCurrent, id: 'main' });
- this.tick();
- } else {
- this.state = State.PARSING;
- // transmux the MPEG-TS data to ISO-BMFF segments
- var duration = details.totalduration,
- level = fragCurrent.level,
- sn = fragCurrent.sn,
- audioCodec = this.config.defaultAudioCodec || currentLevel.audioCodec;
- if (this.audioCodecSwap) {
- logger["b" /* logger */].log('swapping playlist audio codec');
- if (audioCodec === undefined) {
- audioCodec = this.lastAudioCodec;
- }
-
- if (audioCodec) {
- if (audioCodec.indexOf('mp4a.40.5') !== -1) {
- audioCodec = 'mp4a.40.2';
- } else {
- audioCodec = 'mp4a.40.5';
- }
- }
- }
- this.pendingBuffering = true;
- this.appended = false;
- logger["b" /* logger */].log('Parsing ' + sn + ' of [' + details.startSN + ' ,' + details.endSN + '],level ' + level + ', cc ' + fragCurrent.cc);
- var demuxer = this.demuxer;
- if (!demuxer) {
- demuxer = this.demuxer = new demux_demuxer(this.hls, 'main');
- }
-
- // time Offset is accurate if level PTS is known, or if playlist is not sliding (not live) and if media is not seeking (this is to overcome potential timestamp drifts between playlists and fragments)
- var media = this.media;
- var mediaSeeking = media && media.seeking;
- var accurateTimeOffset = !mediaSeeking && (details.PTSKnown || !details.live);
- var initSegmentData = details.initSegment ? details.initSegment.data : [];
- demuxer.push(data.payload, initSegmentData, audioCodec, currentLevel.videoCodec, fragCurrent, duration, accurateTimeOffset, undefined);
- }
- }
- this.fragLoadError = 0;
- };
-
- StreamController.prototype.onFragParsingInitSegment = function onFragParsingInitSegment(data) {
- var fragCurrent = this.fragCurrent;
- var fragNew = data.frag;
-
- if (fragCurrent && data.id === 'main' && fragNew.sn === fragCurrent.sn && fragNew.level === fragCurrent.level && this.state === State.PARSING) {
- var tracks = data.tracks,
- trackName = void 0,
- track = void 0;
-
- // if audio track is expected to come from audio stream controller, discard any coming from main
- if (tracks.audio && this.altAudio) {
- delete tracks.audio;
- }
-
- // include levelCodec in audio and video tracks
- track = tracks.audio;
- if (track) {
- var audioCodec = this.levels[this.level].audioCodec,
- ua = navigator.userAgent.toLowerCase();
- if (audioCodec && this.audioCodecSwap) {
- logger["b" /* logger */].log('swapping playlist audio codec');
- if (audioCodec.indexOf('mp4a.40.5') !== -1) {
- audioCodec = 'mp4a.40.2';
- } else {
- audioCodec = 'mp4a.40.5';
- }
- }
- // in case AAC and HE-AAC audio codecs are signalled in manifest
- // force HE-AAC , as it seems that most browsers prefers that way,
- // except for mono streams OR on FF
- // these conditions might need to be reviewed ...
- if (this.audioCodecSwitch) {
- // don't force HE-AAC if mono stream
- if (track.metadata.channelCount !== 1 &&
- // don't force HE-AAC if firefox
- ua.indexOf('firefox') === -1) {
- audioCodec = 'mp4a.40.5';
- }
- }
- // HE-AAC is broken on Android, always signal audio codec as AAC even if variant manifest states otherwise
- if (ua.indexOf('android') !== -1 && track.container !== 'audio/mpeg') {
- // Exclude mpeg audio
- audioCodec = 'mp4a.40.2';
- logger["b" /* logger */].log('Android: force audio codec to ' + audioCodec);
- }
- track.levelCodec = audioCodec;
- track.id = data.id;
- }
- track = tracks.video;
- if (track) {
- track.levelCodec = this.levels[this.level].videoCodec;
- track.id = data.id;
- }
- this.hls.trigger(events["a" /* default */].BUFFER_CODECS, tracks);
- // loop through tracks that are going to be provided to bufferController
- for (trackName in tracks) {
- track = tracks[trackName];
- logger["b" /* logger */].log('main track:' + trackName + ',container:' + track.container + ',codecs[level/parsed]=[' + track.levelCodec + '/' + track.codec + ']');
- var initSegment = track.initSegment;
- if (initSegment) {
- this.appended = true;
- // arm pending Buffering flag before appending a segment
- this.pendingBuffering = true;
- this.hls.trigger(events["a" /* default */].BUFFER_APPENDING, { type: trackName, data: initSegment, parent: 'main', content: 'initSegment' });
- }
- }
- // trigger handler right now
- this.tick();
- }
- };
-
- StreamController.prototype.onFragParsingData = function onFragParsingData(data) {
- var _this2 = this;
-
- var fragCurrent = this.fragCurrent;
- var fragNew = data.frag;
- if (fragCurrent && data.id === 'main' && fragNew.sn === fragCurrent.sn && fragNew.level === fragCurrent.level && !(data.type === 'audio' && this.altAudio) && // filter out main audio if audio track is loaded through audio stream controller
- this.state === State.PARSING) {
- var level = this.levels[this.level],
- frag = fragCurrent;
- if (isNaN(data.endPTS)) {
- data.endPTS = data.startPTS + fragCurrent.duration;
- data.endDTS = data.startDTS + fragCurrent.duration;
- }
-
- if (data.hasAudio === true) {
- frag.addElementaryStream(loader_fragment.ElementaryStreamTypes.AUDIO);
- }
-
- if (data.hasVideo === true) {
- frag.addElementaryStream(loader_fragment.ElementaryStreamTypes.VIDEO);
- }
-
- logger["b" /* logger */].log('Parsed ' + data.type + ',PTS:[' + data.startPTS.toFixed(3) + ',' + data.endPTS.toFixed(3) + '],DTS:[' + data.startDTS.toFixed(3) + '/' + data.endDTS.toFixed(3) + '],nb:' + data.nb + ',dropped:' + (data.dropped || 0));
-
- // Detect gaps in a fragment and try to fix it by finding a keyframe in the previous fragment (see _findFragments)
- if (data.type === 'video') {
- frag.dropped = data.dropped;
- if (frag.dropped) {
- if (!frag.backtracked) {
- var levelDetails = level.details;
- if (levelDetails && frag.sn === levelDetails.startSN) {
- logger["b" /* logger */].warn('missing video frame(s) on first frag, appending with gap', frag.sn);
- } else {
- logger["b" /* logger */].warn('missing video frame(s), backtracking fragment', frag.sn);
- // Return back to the IDLE state without appending to buffer
- // Causes findFragments to backtrack a segment and find the keyframe
- // Audio fragments arriving before video sets the nextLoadPosition, causing _findFragments to skip the backtracked fragment
- this.fragmentTracker.removeFragment(frag);
- frag.backtracked = true;
- this.nextLoadPosition = data.startPTS;
- this.state = State.IDLE;
- this.fragPrevious = frag;
- this.tick();
- return;
- }
- } else {
- logger["b" /* logger */].warn('Already backtracked on this fragment, appending with the gap', frag.sn);
- }
- } else {
- // Only reset the backtracked flag if we've loaded the frag without any dropped frames
- frag.backtracked = false;
- }
- }
-
- var drift = updateFragPTSDTS(level.details, frag, data.startPTS, data.endPTS, data.startDTS, data.endDTS),
- hls = this.hls;
- hls.trigger(events["a" /* default */].LEVEL_PTS_UPDATED, { details: level.details, level: this.level, drift: drift, type: data.type, start: data.startPTS, end: data.endPTS });
- // has remuxer dropped video frames located before first keyframe ?
- [data.data1, data.data2].forEach(function (buffer) {
- // only append in PARSING state (rationale is that an appending error could happen synchronously on first segment appending)
- // in that case it is useless to append following segments
- if (buffer && buffer.length && _this2.state === State.PARSING) {
- _this2.appended = true;
- // arm pending Buffering flag before appending a segment
- _this2.pendingBuffering = true;
- hls.trigger(events["a" /* default */].BUFFER_APPENDING, { type: data.type, data: buffer, parent: 'main', content: 'data' });
- }
- });
- // trigger handler right now
- this.tick();
- }
- };
-
- StreamController.prototype.onFragParsed = function onFragParsed(data) {
- var fragCurrent = this.fragCurrent;
- var fragNew = data.frag;
- if (fragCurrent && data.id === 'main' && fragNew.sn === fragCurrent.sn && fragNew.level === fragCurrent.level && this.state === State.PARSING) {
- this.stats.tparsed = window.performance.now();
- this.state = State.PARSED;
- this._checkAppendedParsed();
- }
- };
-
- StreamController.prototype.onAudioTrackSwitching = function onAudioTrackSwitching(data) {
- // if any URL found on new audio track, it is an alternate audio track
- var altAudio = !!data.url,
- trackId = data.id;
- // if we switch on main audio, ensure that main fragment scheduling is synced with media.buffered
- // don't do anything if we switch to alt audio: audio stream controller is handling it.
- // we will just have to change buffer scheduling on audioTrackSwitched
- if (!altAudio) {
- if (this.mediaBuffer !== this.media) {
- logger["b" /* logger */].log('switching on main audio, use media.buffered to schedule main fragment loading');
- this.mediaBuffer = this.media;
- var fragCurrent = this.fragCurrent;
- // we need to refill audio buffer from main: cancel any frag loading to speed up audio switch
- if (fragCurrent.loader) {
- logger["b" /* logger */].log('switching to main audio track, cancel main fragment load');
- fragCurrent.loader.abort();
- }
- this.fragCurrent = null;
- this.fragPrevious = null;
- // destroy demuxer to force init segment generation (following audio switch)
- if (this.demuxer) {
- this.demuxer.destroy();
- this.demuxer = null;
- }
- // switch to IDLE state to load new fragment
- this.state = State.IDLE;
- }
- var hls = this.hls;
- // switching to main audio, flush all audio and trigger track switched
- hls.trigger(events["a" /* default */].BUFFER_FLUSHING, { startOffset: 0, endOffset: Number.POSITIVE_INFINITY, type: 'audio' });
- hls.trigger(events["a" /* default */].AUDIO_TRACK_SWITCHED, { id: trackId });
- this.altAudio = false;
- }
- };
-
- StreamController.prototype.onAudioTrackSwitched = function onAudioTrackSwitched(data) {
- var trackId = data.id,
- altAudio = !!this.hls.audioTracks[trackId].url;
- if (altAudio) {
- var videoBuffer = this.videoBuffer;
- // if we switched on alternate audio, ensure that main fragment scheduling is synced with video sourcebuffer buffered
- if (videoBuffer && this.mediaBuffer !== videoBuffer) {
- logger["b" /* logger */].log('switching on alternate audio, use video.buffered to schedule main fragment loading');
- this.mediaBuffer = videoBuffer;
- }
- }
- this.altAudio = altAudio;
- this.tick();
- };
-
- StreamController.prototype.onBufferCreated = function onBufferCreated(data) {
- var tracks = data.tracks,
- mediaTrack = void 0,
- name = void 0,
- alternate = false;
- for (var type in tracks) {
- var track = tracks[type];
- if (track.id === 'main') {
- name = type;
- mediaTrack = track;
- // keep video source buffer reference
- if (type === 'video') {
- this.videoBuffer = tracks[type].buffer;
- }
- } else {
- alternate = true;
- }
- }
- if (alternate && mediaTrack) {
- logger["b" /* logger */].log('alternate track found, use ' + name + '.buffered to schedule main fragment loading');
- this.mediaBuffer = mediaTrack.buffer;
- } else {
- this.mediaBuffer = this.media;
- }
- };
-
- StreamController.prototype.onBufferAppended = function onBufferAppended(data) {
- if (data.parent === 'main') {
- var state = this.state;
- if (state === State.PARSING || state === State.PARSED) {
- // check if all buffers have been appended
- this.pendingBuffering = data.pending > 0;
- this._checkAppendedParsed();
- }
- }
- };
-
- StreamController.prototype._checkAppendedParsed = function _checkAppendedParsed() {
- // trigger handler right now
- if (this.state === State.PARSED && (!this.appended || !this.pendingBuffering)) {
- var frag = this.fragCurrent;
- if (frag) {
- var media = this.mediaBuffer ? this.mediaBuffer : this.media;
- logger["b" /* logger */].log('main buffered : ' + time_ranges.toString(media.buffered));
- this.fragPrevious = frag;
- var stats = this.stats;
- stats.tbuffered = window.performance.now();
- // we should get rid of this.fragLastKbps
- this.fragLastKbps = Math.round(8 * stats.total / (stats.tbuffered - stats.tfirst));
- this.hls.trigger(events["a" /* default */].FRAG_BUFFERED, { stats: stats, frag: frag, id: 'main' });
- this.state = State.IDLE;
- }
- this.tick();
- }
- };
-
- StreamController.prototype.onError = function onError(data) {
- var frag = data.frag || this.fragCurrent;
- // don't handle frag error not related to main fragment
- if (frag && frag.type !== 'main') {
- return;
- }
-
- // 0.5 : tolerance needed as some browsers stalls playback before reaching buffered end
- var mediaBuffered = !!this.media && BufferHelper.isBuffered(this.media, this.media.currentTime) && BufferHelper.isBuffered(this.media, this.media.currentTime + 0.5);
-
- switch (data.details) {
- case errors["a" /* ErrorDetails */].FRAG_LOAD_ERROR:
- case errors["a" /* ErrorDetails */].FRAG_LOAD_TIMEOUT:
- case errors["a" /* ErrorDetails */].KEY_LOAD_ERROR:
- case errors["a" /* ErrorDetails */].KEY_LOAD_TIMEOUT:
- if (!data.fatal) {
- // keep retrying until the limit will be reached
- if (this.fragLoadError + 1 <= this.config.fragLoadingMaxRetry) {
- // exponential backoff capped to config.fragLoadingMaxRetryTimeout
- var delay = Math.min(Math.pow(2, this.fragLoadError) * this.config.fragLoadingRetryDelay, this.config.fragLoadingMaxRetryTimeout);
- logger["b" /* logger */].warn('mediaController: frag loading failed, retry in ' + delay + ' ms');
- this.retryDate = window.performance.now() + delay;
- // retry loading state
- // if loadedmetadata is not set, it means that we are emergency switch down on first frag
- // in that case, reset startFragRequested flag
- if (!this.loadedmetadata) {
- this.startFragRequested = false;
- this.nextLoadPosition = this.startPosition;
- }
- this.fragLoadError++;
- this.state = State.FRAG_LOADING_WAITING_RETRY;
- } else {
- logger["b" /* logger */].error('mediaController: ' + data.details + ' reaches max retry, redispatch as fatal ...');
- // switch error to fatal
- data.fatal = true;
- this.state = State.ERROR;
- }
- }
- break;
- case errors["a" /* ErrorDetails */].LEVEL_LOAD_ERROR:
- case errors["a" /* ErrorDetails */].LEVEL_LOAD_TIMEOUT:
- if (this.state !== State.ERROR) {
- if (data.fatal) {
- // if fatal error, stop processing
- this.state = State.ERROR;
- logger["b" /* logger */].warn('streamController: ' + data.details + ',switch to ' + this.state + ' state ...');
- } else {
- // in case of non fatal error while loading level, if level controller is not retrying to load level , switch back to IDLE
- if (!data.levelRetry && this.state === State.WAITING_LEVEL) {
- this.state = State.IDLE;
- }
- }
- }
- break;
- case errors["a" /* ErrorDetails */].BUFFER_FULL_ERROR:
- // if in appending state
- if (data.parent === 'main' && (this.state === State.PARSING || this.state === State.PARSED)) {
- // reduce max buf len if current position is buffered
- if (mediaBuffered) {
- this._reduceMaxBufferLength(this.config.maxBufferLength);
- this.state = State.IDLE;
- } else {
- // current position is not buffered, but browser is still complaining about buffer full error
- // this happens on IE/Edge, refer to https://github.com/video-dev/hls.js/pull/708
- // in that case flush the whole buffer to recover
- logger["b" /* logger */].warn('buffer full error also media.currentTime is not buffered, flush everything');
- this.fragCurrent = null;
- // flush everything
- this.flushMainBuffer(0, Number.POSITIVE_INFINITY);
- }
- }
- break;
- default:
- break;
- }
- };
-
- StreamController.prototype._reduceMaxBufferLength = function _reduceMaxBufferLength(minLength) {
- var config = this.config;
- if (config.maxMaxBufferLength >= minLength) {
- // reduce max buffer length as it might be too high. we do this to avoid loop flushing ...
- config.maxMaxBufferLength /= 2;
- logger["b" /* logger */].warn('main:reduce max buffer length to ' + config.maxMaxBufferLength + 's');
- return true;
- }
- return false;
- };
-
- /**
- * Checks the health of the buffer and attempts to resolve playback stalls.
- * @private
- */
-
-
- StreamController.prototype._checkBuffer = function _checkBuffer() {
- var config = this.config,
- media = this.media;
-
- var stallDebounceInterval = 1000;
- if (!media || media.readyState === 0) {
- // Exit early if we don't have media or if the media hasn't bufferd anything yet (readyState 0)
- return;
- }
-
- var currentTime = media.currentTime;
- var mediaBuffer = this.mediaBuffer ? this.mediaBuffer : media;
- var buffered = mediaBuffer.buffered;
-
- if (!this.loadedmetadata && buffered.length) {
- this.loadedmetadata = true;
- this._seekToStartPos();
- } else if (this.immediateSwitch) {
- this.immediateLevelSwitchEnd();
- } else {
- var expectedPlaying = !(media.paused && media.readyState > 1 || // not playing when media is paused and sufficiently buffered
- media.ended || // not playing when media is ended
- media.buffered.length === 0); // not playing if nothing buffered
- var tnow = window.performance.now();
-
- if (currentTime !== this.lastCurrentTime) {
- // The playhead is now moving, but was previously stalled
- if (this.stallReported) {
- logger["b" /* logger */].warn('playback not stuck anymore @' + currentTime + ', after ' + Math.round(tnow - this.stalled) + 'ms');
- this.stallReported = false;
- }
- this.stalled = null;
- this.nudgeRetry = 0;
- } else if (expectedPlaying) {
- // The playhead isn't moving but it should be
- // Allow some slack time to for small stalls to resolve themselves
- var stalledDuration = tnow - this.stalled;
- var bufferInfo = BufferHelper.bufferInfo(media, currentTime, config.maxBufferHole);
- if (!this.stalled) {
- this.stalled = tnow;
- return;
- } else if (stalledDuration >= stallDebounceInterval) {
- // Report stalling after trying to fix
- this._reportStall(bufferInfo.len);
- }
-
- this._tryFixBufferStall(bufferInfo, stalledDuration);
- }
- }
- };
-
- StreamController.prototype.onFragLoadEmergencyAborted = function onFragLoadEmergencyAborted() {
- this.state = State.IDLE;
- // if loadedmetadata is not set, it means that we are emergency switch down on first frag
- // in that case, reset startFragRequested flag
- if (!this.loadedmetadata) {
- this.startFragRequested = false;
- this.nextLoadPosition = this.startPosition;
- }
- this.tick();
- };
-
- StreamController.prototype.onBufferFlushed = function onBufferFlushed() {
- /* after successful buffer flushing, filter flushed fragments from bufferedFrags
- use mediaBuffered instead of media (so that we will check against video.buffered ranges in case of alt audio track)
- */
- var media = this.mediaBuffer ? this.mediaBuffer : this.media;
- if (media) {
- // filter fragments potentially evicted from buffer. this is to avoid memleak on live streams
- this.fragmentTracker.detectEvictedFragments(loader_fragment.ElementaryStreamTypes.VIDEO, media.buffered);
- }
- // move to IDLE once flush complete. this should trigger new fragment loading
- this.state = State.IDLE;
- // reset reference to frag
- this.fragPrevious = null;
- };
-
- StreamController.prototype.swapAudioCodec = function swapAudioCodec() {
- this.audioCodecSwap = !this.audioCodecSwap;
- };
-
- StreamController.prototype.computeLivePosition = function computeLivePosition(sliding, levelDetails) {
- var targetLatency = this.config.liveSyncDuration !== undefined ? this.config.liveSyncDuration : this.config.liveSyncDurationCount * levelDetails.targetduration;
- return sliding + Math.max(0, levelDetails.totalduration - targetLatency);
- };
-
- /**
- * Detects and attempts to fix known buffer stalling issues.
- * @param bufferInfo - The properties of the current buffer.
- * @param stalledDuration - The amount of time Hls.js has been stalling for.
- * @private
- */
-
-
- StreamController.prototype._tryFixBufferStall = function _tryFixBufferStall(bufferInfo, stalledDuration) {
- var config = this.config,
- media = this.media;
-
- var currentTime = media.currentTime;
- var jumpThreshold = 0.5; // tolerance needed as some browsers stalls playback before reaching buffered range end
-
- var partial = this.fragmentTracker.getPartialFragment(currentTime);
- if (partial) {
- // Try to skip over the buffer hole caused by a partial fragment
- // This method isn't limited by the size of the gap between buffered ranges
- this._trySkipBufferHole(partial);
- }
-
- if (bufferInfo.len > jumpThreshold && stalledDuration > config.highBufferWatchdogPeriod * 1000) {
- // Try to nudge currentTime over a buffer hole if we've been stalling for the configured amount of seconds
- // We only try to jump the hole if it's under the configured size
- // Reset stalled so to rearm watchdog timer
- this.stalled = null;
- this._tryNudgeBuffer();
- }
- };
-
- /**
- * Triggers a BUFFER_STALLED_ERROR event, but only once per stall period.
- * @param bufferLen - The playhead distance from the end of the current buffer segment.
- * @private
- */
-
-
- StreamController.prototype._reportStall = function _reportStall(bufferLen) {
- var hls = this.hls,
- media = this.media,
- stallReported = this.stallReported;
-
- if (!stallReported) {
- // Report stalled error once
- this.stallReported = true;
- logger["b" /* logger */].warn('Playback stalling at @' + media.currentTime + ' due to low buffer');
- hls.trigger(events["a" /* default */].ERROR, {
- type: errors["b" /* ErrorTypes */].MEDIA_ERROR,
- details: errors["a" /* ErrorDetails */].BUFFER_STALLED_ERROR,
- fatal: false,
- buffer: bufferLen
- });
- }
- };
-
- /**
- * Attempts to fix buffer stalls by jumping over known gaps caused by partial fragments
- * @param partial - The partial fragment found at the current time (where playback is stalling).
- * @private
- */
-
-
- StreamController.prototype._trySkipBufferHole = function _trySkipBufferHole(partial) {
- var hls = this.hls,
- media = this.media;
-
- var currentTime = media.currentTime;
- var lastEndTime = 0;
- // Check if currentTime is between unbuffered regions of partial fragments
- for (var i = 0; i < media.buffered.length; i++) {
- var startTime = media.buffered.start(i);
- if (currentTime >= lastEndTime && currentTime < startTime) {
- media.currentTime = Math.max(startTime, media.currentTime + 0.1);
- logger["b" /* logger */].warn('skipping hole, adjusting currentTime from ' + currentTime + ' to ' + media.currentTime);
- this.stalled = null;
- hls.trigger(events["a" /* default */].ERROR, {
- type: errors["b" /* ErrorTypes */].MEDIA_ERROR,
- details: errors["a" /* ErrorDetails */].BUFFER_SEEK_OVER_HOLE,
- fatal: false,
- reason: 'fragment loaded with buffer holes, seeking from ' + currentTime + ' to ' + media.currentTime,
- frag: partial
- });
- return;
- }
- lastEndTime = media.buffered.end(i);
- }
- };
-
- /**
- * Attempts to fix buffer stalls by advancing the mediaElement's current time by a small amount.
- * @private
- */
-
-
- StreamController.prototype._tryNudgeBuffer = function _tryNudgeBuffer() {
- var config = this.config,
- hls = this.hls,
- media = this.media;
-
- var currentTime = media.currentTime;
- var nudgeRetry = (this.nudgeRetry || 0) + 1;
- this.nudgeRetry = nudgeRetry;
-
- if (nudgeRetry < config.nudgeMaxRetry) {
- var targetTime = currentTime + nudgeRetry * config.nudgeOffset;
- logger["b" /* logger */].log('adjust currentTime from ' + currentTime + ' to ' + targetTime);
- // playback stalled in buffered area ... let's nudge currentTime to try to overcome this
- media.currentTime = targetTime;
- hls.trigger(events["a" /* default */].ERROR, {
- type: errors["b" /* ErrorTypes */].MEDIA_ERROR,
- details: errors["a" /* ErrorDetails */].BUFFER_NUDGE_ON_STALL,
- fatal: false
- });
- } else {
- logger["b" /* logger */].error('still stuck in high buffer @' + currentTime + ' after ' + config.nudgeMaxRetry + ', raise fatal error');
- hls.trigger(events["a" /* default */].ERROR, {
- type: errors["b" /* ErrorTypes */].MEDIA_ERROR,
- details: errors["a" /* ErrorDetails */].BUFFER_STALLED_ERROR,
- fatal: true
- });
- }
- };
-
- /**
- * Seeks to the set startPosition if not equal to the mediaElement's current time.
- * @private
- */
-
-
- StreamController.prototype._seekToStartPos = function _seekToStartPos() {
- var media = this.media;
-
- var currentTime = media.currentTime;
- // only adjust currentTime if different from startPosition or if startPosition not buffered
- // at that stage, there should be only one buffered range, as we reach that code after first fragment has been buffered
- var startPosition = media.seeking ? currentTime : this.startPosition;
- // if currentTime not matching with expected startPosition or startPosition not buffered but close to first buffered
- if (currentTime !== startPosition) {
- // if startPosition not buffered, let's seek to buffered.start(0)
- logger["b" /* logger */].log('target start position not buffered, seek to buffered.start(0) ' + startPosition + ' from current time ' + currentTime + ' ');
- media.currentTime = startPosition;
- }
- };
-
- stream_controller__createClass(StreamController, [{
- key: 'state',
- set: function set(nextState) {
- if (this.state !== nextState) {
- var previousState = this.state;
- this._state = nextState;
- logger["b" /* logger */].log('main stream:' + previousState + '->' + nextState);
- this.hls.trigger(events["a" /* default */].STREAM_STATE_TRANSITION, { previousState: previousState, nextState: nextState });
- }
- },
- get: function get() {
- return this._state;
- }
- }, {
- key: 'currentLevel',
- get: function get() {
- var media = this.media;
- if (media) {
- var frag = this.getBufferedFrag(media.currentTime);
- if (frag) {
- return frag.level;
- }
- }
- return -1;
- }
- }, {
- key: 'nextBufferedFrag',
- get: function get() {
- var media = this.media;
- if (media) {
- // first get end range of current fragment
- return this.followingBufferedFrag(this.getBufferedFrag(media.currentTime));
- } else {
- return null;
- }
- }
- }, {
- key: 'nextLevel',
- get: function get() {
- var frag = this.nextBufferedFrag;
- if (frag) {
- return frag.level;
- } else {
- return -1;
- }
- }
- }, {
- key: 'liveSyncPosition',
- get: function get() {
- return this._liveSyncPosition;
- },
- set: function set(value) {
- this._liveSyncPosition = value;
- }
- }]);
-
- return StreamController;
-}(task_loop);
-
-/* harmony default export */ var stream_controller = (stream_controller_StreamController);
-// CONCATENATED MODULE: ./src/controller/level-controller.js
-var level_controller__typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
-
-var level_controller__createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
-
-function level_controller__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function level_controller__possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function level_controller__inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-/*
- * Level Controller
-*/
-
-
-
-
-
-
-
-
-var level_controller__window = window,
- level_controller_performance = level_controller__window.performance;
-
-var level_controller_LevelController = function (_EventHandler) {
- level_controller__inherits(LevelController, _EventHandler);
-
- function LevelController(hls) {
- level_controller__classCallCheck(this, LevelController);
-
- var _this = level_controller__possibleConstructorReturn(this, _EventHandler.call(this, hls, events["a" /* default */].MANIFEST_LOADED, events["a" /* default */].LEVEL_LOADED, events["a" /* default */].AUDIO_TRACK_SWITCHED, events["a" /* default */].FRAG_LOADED, events["a" /* default */].ERROR));
-
- _this.canload = false;
- _this.currentLevelIndex = null;
- _this.manualLevelIndex = -1;
- _this.timer = null;
- return _this;
- }
-
- LevelController.prototype.onHandlerDestroying = function onHandlerDestroying() {
- this.clearTimer();
- this.manualLevelIndex = -1;
- };
-
- LevelController.prototype.clearTimer = function clearTimer() {
- if (this.timer !== null) {
- clearTimeout(this.timer);
- this.timer = null;
- }
- };
-
- LevelController.prototype.startLoad = function startLoad() {
- var levels = this._levels;
-
- this.canload = true;
- this.levelRetryCount = 0;
-
- // clean up live level details to force reload them, and reset load errors
- if (levels) {
- levels.forEach(function (level) {
- level.loadError = 0;
- var levelDetails = level.details;
- if (levelDetails && levelDetails.live) {
- level.details = undefined;
- }
- });
- }
- // speed up live playlist refresh if timer exists
- if (this.timer !== null) {
- this.loadLevel();
- }
- };
-
- LevelController.prototype.stopLoad = function stopLoad() {
- this.canload = false;
- };
-
- LevelController.prototype.onManifestLoaded = function onManifestLoaded(data) {
- var levels = [];
- var bitrateStart = void 0;
- var levelSet = {};
- var levelFromSet = null;
- var videoCodecFound = false;
- var audioCodecFound = false;
- var chromeOrFirefox = /chrome|firefox/.test(navigator.userAgent.toLowerCase());
- var audioTracks = [];
-
- // regroup redundant levels together
- data.levels.forEach(function (level) {
- level.loadError = 0;
- level.fragmentError = false;
-
- videoCodecFound = videoCodecFound || !!level.videoCodec;
- audioCodecFound = audioCodecFound || !!level.audioCodec || !!(level.attrs && level.attrs.AUDIO);
-
- // erase audio codec info if browser does not support mp4a.40.34.
- // demuxer will autodetect codec and fallback to mpeg/audio
- if (chromeOrFirefox && level.audioCodec && level.audioCodec.indexOf('mp4a.40.34') !== -1) {
- level.audioCodec = undefined;
- }
-
- levelFromSet = levelSet[level.bitrate]; // FIXME: we would also have to match the resolution here
-
- if (!levelFromSet) {
- level.url = [level.url];
- level.urlId = 0;
- levelSet[level.bitrate] = level;
- levels.push(level);
- } else {
- levelFromSet.url.push(level.url);
- }
-
- if (level.attrs && level.attrs.AUDIO) {
- addGroupId(levelFromSet || level, 'audio', level.attrs.AUDIO);
- }
-
- if (level.attrs && level.attrs.SUBTITLES) {
- addGroupId(levelFromSet || level, 'text', level.attrs.SUBTITLES);
- }
- });
-
- // remove audio-only level if we also have levels with audio+video codecs signalled
- if (videoCodecFound && audioCodecFound) {
- levels = levels.filter(function (_ref) {
- var videoCodec = _ref.videoCodec;
- return !!videoCodec;
- });
- }
-
- // only keep levels with supported audio/video codecs
- levels = levels.filter(function (_ref2) {
- var audioCodec = _ref2.audioCodec,
- videoCodec = _ref2.videoCodec;
-
- return (!audioCodec || isCodecSupportedInMp4(audioCodec)) && (!videoCodec || isCodecSupportedInMp4(videoCodec));
- });
-
- if (data.audioTracks) {
- audioTracks = data.audioTracks.filter(function (track) {
- return !track.audioCodec || isCodecSupportedInMp4(track.audioCodec, 'audio');
- });
- }
-
- if (levels.length > 0) {
- // start bitrate is the first bitrate of the manifest
- bitrateStart = levels[0].bitrate;
- // sort level on bitrate
- levels.sort(function (a, b) {
- return a.bitrate - b.bitrate;
- });
- this._levels = levels;
- // find index of first level in sorted levels
- for (var i = 0; i < levels.length; i++) {
- if (levels[i].bitrate === bitrateStart) {
- this._firstLevel = i;
- logger["b" /* logger */].log('manifest loaded,' + levels.length + ' level(s) found, first bitrate:' + bitrateStart);
- break;
- }
- }
- this.hls.trigger(events["a" /* default */].MANIFEST_PARSED, {
- levels: levels,
- audioTracks: audioTracks,
- firstLevel: this._firstLevel,
- stats: data.stats,
- audio: audioCodecFound,
- video: videoCodecFound,
- altAudio: audioTracks.length > 0 && videoCodecFound
- });
- } else {
- this.hls.trigger(events["a" /* default */].ERROR, {
- type: errors["b" /* ErrorTypes */].MEDIA_ERROR,
- details: errors["a" /* ErrorDetails */].MANIFEST_INCOMPATIBLE_CODECS_ERROR,
- fatal: true,
- url: this.hls.url,
- reason: 'no level with compatible codecs found in manifest'
- });
- }
- };
-
- LevelController.prototype.setLevelInternal = function setLevelInternal(newLevel) {
- var levels = this._levels;
- var hls = this.hls;
- // check if level idx is valid
- if (newLevel >= 0 && newLevel < levels.length) {
- // stopping live reloading timer if any
- this.clearTimer();
- if (this.currentLevelIndex !== newLevel) {
- logger["b" /* logger */].log('switching to level ' + newLevel);
- this.currentLevelIndex = newLevel;
- var levelProperties = levels[newLevel];
- levelProperties.level = newLevel;
- hls.trigger(events["a" /* default */].LEVEL_SWITCHING, levelProperties);
- }
- var level = levels[newLevel];
- var levelDetails = level.details;
-
- // check if we need to load playlist for this level
- if (!levelDetails || levelDetails.live) {
- // level not retrieved yet, or live playlist we need to (re)load it
- var urlId = level.urlId;
- hls.trigger(events["a" /* default */].LEVEL_LOADING, { url: level.url[urlId], level: newLevel, id: urlId });
- }
- } else {
- // invalid level id given, trigger error
- hls.trigger(events["a" /* default */].ERROR, {
- type: errors["b" /* ErrorTypes */].OTHER_ERROR,
- details: errors["a" /* ErrorDetails */].LEVEL_SWITCH_ERROR,
- level: newLevel,
- fatal: false,
- reason: 'invalid level idx'
- });
- }
- };
-
- LevelController.prototype.onError = function onError(data) {
- if (data.fatal) {
- if (data.type === errors["b" /* ErrorTypes */].NETWORK_ERROR) {
- this.clearTimer();
- }
-
- return;
- }
-
- var levelError = false,
- fragmentError = false;
- var levelIndex = void 0;
-
- // try to recover not fatal errors
- switch (data.details) {
- case errors["a" /* ErrorDetails */].FRAG_LOAD_ERROR:
- case errors["a" /* ErrorDetails */].FRAG_LOAD_TIMEOUT:
- case errors["a" /* ErrorDetails */].KEY_LOAD_ERROR:
- case errors["a" /* ErrorDetails */].KEY_LOAD_TIMEOUT:
- levelIndex = data.frag.level;
- fragmentError = true;
- break;
- case errors["a" /* ErrorDetails */].LEVEL_LOAD_ERROR:
- case errors["a" /* ErrorDetails */].LEVEL_LOAD_TIMEOUT:
- levelIndex = data.context.level;
- levelError = true;
- break;
- case errors["a" /* ErrorDetails */].REMUX_ALLOC_ERROR:
- levelIndex = data.level;
- levelError = true;
- break;
- }
-
- if (levelIndex !== undefined) {
- this.recoverLevel(data, levelIndex, levelError, fragmentError);
- }
- };
-
- /**
- * Switch to a redundant stream if any available.
- * If redundant stream is not available, emergency switch down if ABR mode is enabled.
- *
- * @param {Object} errorEvent
- * @param {Number} levelIndex current level index
- * @param {Boolean} levelError
- * @param {Boolean} fragmentError
- */
- // FIXME Find a better abstraction where fragment/level retry management is well decoupled
-
-
- LevelController.prototype.recoverLevel = function recoverLevel(errorEvent, levelIndex, levelError, fragmentError) {
- var _this2 = this;
-
- var config = this.hls.config;
- var errorDetails = errorEvent.details;
-
- var level = this._levels[levelIndex];
- var redundantLevels = void 0,
- delay = void 0,
- nextLevel = void 0;
-
- level.loadError++;
- level.fragmentError = fragmentError;
-
- if (levelError) {
- if (this.levelRetryCount + 1 <= config.levelLoadingMaxRetry) {
- // exponential backoff capped to max retry timeout
- delay = Math.min(Math.pow(2, this.levelRetryCount) * config.levelLoadingRetryDelay, config.levelLoadingMaxRetryTimeout);
- // Schedule level reload
- this.timer = setTimeout(function () {
- return _this2.loadLevel();
- }, delay);
- // boolean used to inform stream controller not to switch back to IDLE on non fatal error
- errorEvent.levelRetry = true;
- this.levelRetryCount++;
- logger["b" /* logger */].warn('level controller, ' + errorDetails + ', retry in ' + delay + ' ms, current retry count is ' + this.levelRetryCount);
- } else {
- logger["b" /* logger */].error('level controller, cannot recover from ' + errorDetails + ' error');
- this.currentLevelIndex = null;
- // stopping live reloading timer if any
- this.clearTimer();
- // switch error to fatal
- errorEvent.fatal = true;
- return;
- }
- }
-
- // Try any redundant streams if available for both errors: level and fragment
- // If level.loadError reaches redundantLevels it means that we tried them all, no hope => let's switch down
- if (levelError || fragmentError) {
- redundantLevels = level.url.length;
-
- if (redundantLevels > 1 && level.loadError < redundantLevels) {
- level.urlId = (level.urlId + 1) % redundantLevels;
- level.details = undefined;
-
- logger["b" /* logger */].warn('level controller, ' + errorDetails + ' for level ' + levelIndex + ': switching to redundant URL-id ' + level.urlId);
-
- // console.log('Current audio track group ID:', this.hls.audioTracks[this.hls.audioTrack].groupId);
- // console.log('New video quality level audio group id:', level.attrs.AUDIO);
- } else {
- // Search for available level
- if (this.manualLevelIndex === -1) {
- // When lowest level has been reached, let's start hunt from the top
- nextLevel = levelIndex === 0 ? this._levels.length - 1 : levelIndex - 1;
- logger["b" /* logger */].warn('level controller, ' + errorDetails + ': switch to ' + nextLevel);
- this.hls.nextAutoLevel = this.currentLevelIndex = nextLevel;
- } else if (fragmentError) {
- // Allow fragment retry as long as configuration allows.
- // reset this._level so that another call to set level() will trigger again a frag load
- logger["b" /* logger */].warn('level controller, ' + errorDetails + ': reload a fragment');
- this.currentLevelIndex = null;
- }
- }
- }
- };
-
- // reset errors on the successful load of a fragment
-
-
- LevelController.prototype.onFragLoaded = function onFragLoaded(_ref3) {
- var frag = _ref3.frag;
-
- if (frag !== undefined && frag.type === 'main') {
- var level = this._levels[frag.level];
- if (level !== undefined) {
- level.fragmentError = false;
- level.loadError = 0;
- this.levelRetryCount = 0;
- }
- }
- };
-
- LevelController.prototype.onLevelLoaded = function onLevelLoaded(data) {
- var _this3 = this;
-
- var levelId = data.level;
- // only process level loaded events matching with expected level
- if (levelId !== this.currentLevelIndex) {
- return;
- }
-
- var curLevel = this._levels[levelId];
- // reset level load error counter on successful level loaded only if there is no issues with fragments
- if (!curLevel.fragmentError) {
- curLevel.loadError = 0;
- this.levelRetryCount = 0;
- }
- var newDetails = data.details;
- // if current playlist is a live playlist, arm a timer to reload it
- if (newDetails.live) {
- var targetdurationMs = 1000 * (newDetails.averagetargetduration ? newDetails.averagetargetduration : newDetails.targetduration);
- var reloadInterval = targetdurationMs,
- curDetails = curLevel.details;
- if (curDetails && newDetails.endSN === curDetails.endSN) {
- // follow HLS Spec, If the client reloads a Playlist file and finds that it has not
- // changed then it MUST wait for a period of one-half the target
- // duration before retrying.
- reloadInterval /= 2;
- logger["b" /* logger */].log('same live playlist, reload twice faster');
- }
- // decrement reloadInterval with level loading delay
- reloadInterval -= level_controller_performance.now() - data.stats.trequest;
- // in any case, don't reload more than half of target duration
- reloadInterval = Math.max(targetdurationMs / 2, Math.round(reloadInterval));
- logger["b" /* logger */].log('live playlist, reload in ' + Math.round(reloadInterval) + ' ms');
- this.timer = setTimeout(function () {
- return _this3.loadLevel();
- }, reloadInterval);
- } else {
- this.clearTimer();
- }
- };
-
- LevelController.prototype.onAudioTrackSwitched = function onAudioTrackSwitched(data) {
- var audioGroupId = this.hls.audioTracks[data.id].groupId;
-
- var currentLevel = this.hls.levels[this.currentLevelIndex];
- if (!currentLevel) {
- return;
- }
-
- if (currentLevel.audioGroupIds) {
- var urlId = currentLevel.audioGroupIds.findIndex(function (groupId) {
- return groupId === audioGroupId;
- });
- if (urlId !== currentLevel.urlId) {
- currentLevel.urlId = urlId;
- this.startLoad();
- }
- }
- };
-
- LevelController.prototype.loadLevel = function loadLevel() {
- logger["b" /* logger */].debug('call to loadLevel');
-
- if (this.currentLevelIndex !== null && this.canload) {
- var levelObject = this._levels[this.currentLevelIndex];
-
- if ((typeof levelObject === 'undefined' ? 'undefined' : level_controller__typeof(levelObject)) === 'object' && levelObject.url.length > 0) {
- var level = this.currentLevelIndex;
- var id = levelObject.urlId;
- var url = levelObject.url[id];
-
- logger["b" /* logger */].log('Attempt loading level index ' + level + ' with URL-id ' + id);
-
- // console.log('Current audio track group ID:', this.hls.audioTracks[this.hls.audioTrack].groupId);
- // console.log('New video quality level audio group id:', levelObject.attrs.AUDIO, level);
-
- this.hls.trigger(events["a" /* default */].LEVEL_LOADING, { url: url, level: level, id: id });
- }
- }
- };
-
- level_controller__createClass(LevelController, [{
- key: 'levels',
- get: function get() {
- return this._levels;
- }
- }, {
- key: 'level',
- get: function get() {
- return this.currentLevelIndex;
- },
- set: function set(newLevel) {
- var levels = this._levels;
- if (levels) {
- newLevel = Math.min(newLevel, levels.length - 1);
- if (this.currentLevelIndex !== newLevel || !levels[newLevel].details) {
- this.setLevelInternal(newLevel);
- }
- }
- }
- }, {
- key: 'manualLevel',
- get: function get() {
- return this.manualLevelIndex;
- },
- set: function set(newLevel) {
- this.manualLevelIndex = newLevel;
- if (this._startLevel === undefined) {
- this._startLevel = newLevel;
- }
-
- if (newLevel !== -1) {
- this.level = newLevel;
- }
- }
- }, {
- key: 'firstLevel',
- get: function get() {
- return this._firstLevel;
- },
- set: function set(newLevel) {
- this._firstLevel = newLevel;
- }
- }, {
- key: 'startLevel',
- get: function get() {
- // hls.startLevel takes precedence over config.startLevel
- // if none of these values are defined, fallback on this._firstLevel (first quality level appearing in variant manifest)
- if (this._startLevel === undefined) {
- var configStartLevel = this.hls.config.startLevel;
- if (configStartLevel !== undefined) {
- return configStartLevel;
- } else {
- return this._firstLevel;
- }
- } else {
- return this._startLevel;
- }
- },
- set: function set(newLevel) {
- this._startLevel = newLevel;
- }
- }, {
- key: 'nextLoadLevel',
- get: function get() {
- if (this.manualLevelIndex !== -1) {
- return this.manualLevelIndex;
- } else {
- return this.hls.nextAutoLevel;
- }
- },
- set: function set(nextLevel) {
- this.level = nextLevel;
- if (this.manualLevelIndex === -1) {
- this.hls.nextAutoLevel = nextLevel;
- }
- }
- }]);
-
- return LevelController;
-}(event_handler);
-
-/* harmony default export */ var level_controller = (level_controller_LevelController);
-// EXTERNAL MODULE: ./src/demux/id3.js
-var id3 = __webpack_require__(5);
-
-// CONCATENATED MODULE: ./src/utils/texttrack-utils.js
-
-function sendAddTrackEvent(track, videoEl) {
- var event = null;
- try {
- event = new window.Event('addtrack');
- } catch (err) {
- // for IE11
- event = document.createEvent('Event');
- event.initEvent('addtrack', false, false);
- }
- event.track = track;
- videoEl.dispatchEvent(event);
-}
-
-function clearCurrentCues(track) {
- if (track && track.cues) {
- while (track.cues.length > 0) {
- track.removeCue(track.cues[0]);
- }
- }
-}
-// CONCATENATED MODULE: ./src/controller/id3-track-controller.js
-function id3_track_controller__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function id3_track_controller__possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function id3_track_controller__inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-/*
- * id3 metadata track controller
-*/
-
-
-
-
-
-
-var id3_track_controller_ID3TrackController = function (_EventHandler) {
- id3_track_controller__inherits(ID3TrackController, _EventHandler);
-
- function ID3TrackController(hls) {
- id3_track_controller__classCallCheck(this, ID3TrackController);
-
- var _this = id3_track_controller__possibleConstructorReturn(this, _EventHandler.call(this, hls, events["a" /* default */].MEDIA_ATTACHED, events["a" /* default */].MEDIA_DETACHING, events["a" /* default */].FRAG_PARSING_METADATA));
-
- _this.id3Track = undefined;
- _this.media = undefined;
- return _this;
- }
-
- ID3TrackController.prototype.destroy = function destroy() {
- event_handler.prototype.destroy.call(this);
- };
-
- // Add ID3 metatadata text track.
-
-
- ID3TrackController.prototype.onMediaAttached = function onMediaAttached(data) {
- this.media = data.media;
- if (!this.media) {}
- };
-
- ID3TrackController.prototype.onMediaDetaching = function onMediaDetaching() {
- clearCurrentCues(this.id3Track);
- this.id3Track = undefined;
- this.media = undefined;
- };
-
- ID3TrackController.prototype.getID3Track = function getID3Track(textTracks) {
- for (var i = 0; i < textTracks.length; i++) {
- var textTrack = textTracks[i];
- if (textTrack.kind === 'metadata' && textTrack.label === 'id3') {
- // send 'addtrack' when reusing the textTrack for metadata,
- // same as what we do for captions
- sendAddTrackEvent(textTrack, this.media);
-
- return textTrack;
- }
- }
- return this.media.addTextTrack('metadata', 'id3');
- };
-
- ID3TrackController.prototype.onFragParsingMetadata = function onFragParsingMetadata(data) {
- var fragment = data.frag;
- var samples = data.samples;
-
- // create track dynamically
- if (!this.id3Track) {
- this.id3Track = this.getID3Track(this.media.textTracks);
- this.id3Track.mode = 'hidden';
- }
-
- // Attempt to recreate Safari functionality by creating
- // WebKitDataCue objects when available and store the decoded
- // ID3 data in the value property of the cue
- var Cue = window.WebKitDataCue || window.VTTCue || window.TextTrackCue;
-
- for (var i = 0; i < samples.length; i++) {
- var frames = id3["a" /* default */].getID3Frames(samples[i].data);
- if (frames) {
- var startTime = samples[i].pts;
- var endTime = i < samples.length - 1 ? samples[i + 1].pts : fragment.endPTS;
-
- // Give a slight bump to the endTime if it's equal to startTime to avoid a SyntaxError in IE
- if (startTime === endTime) {
- endTime += 0.0001;
- }
-
- for (var j = 0; j < frames.length; j++) {
- var frame = frames[j];
- // Safari doesn't put the timestamp frame in the TextTrack
- if (!id3["a" /* default */].isTimeStampFrame(frame)) {
- var cue = new Cue(startTime, endTime, '');
- cue.value = frame;
- this.id3Track.addCue(cue);
- }
- }
- }
- }
- };
-
- return ID3TrackController;
-}(event_handler);
-
-/* harmony default export */ var id3_track_controller = (id3_track_controller_ID3TrackController);
-// CONCATENATED MODULE: ./src/is-supported.js
-
-
-function is_supported_isSupported() {
- var mediaSource = getMediaSource();
- var sourceBuffer = window.SourceBuffer || window.WebKitSourceBuffer;
- var isTypeSupported = mediaSource && typeof mediaSource.isTypeSupported === 'function' && mediaSource.isTypeSupported('video/mp4; codecs="avc1.42E01E,mp4a.40.2"');
-
- // if SourceBuffer is exposed ensure its API is valid
- // safari and old version of Chrome doe not expose SourceBuffer globally so checking SourceBuffer.prototype is impossible
- var sourceBufferValidAPI = !sourceBuffer || sourceBuffer.prototype && typeof sourceBuffer.prototype.appendBuffer === 'function' && typeof sourceBuffer.prototype.remove === 'function';
- return !!isTypeSupported && !!sourceBufferValidAPI;
-}
-// CONCATENATED MODULE: ./src/utils/ewma.js
-function ewma__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/*
- * compute an Exponential Weighted moving average
- * - https://en.wikipedia.org/wiki/Moving_average#Exponential_moving_average
- * - heavily inspired from shaka-player
- */
-
-var EWMA = function () {
- // About half of the estimated value will be from the last |halfLife| samples by weight.
- function EWMA(halfLife) {
- ewma__classCallCheck(this, EWMA);
-
- // Larger values of alpha expire historical data more slowly.
- this.alpha_ = halfLife ? Math.exp(Math.log(0.5) / halfLife) : 0;
- this.estimate_ = 0;
- this.totalWeight_ = 0;
- }
-
- EWMA.prototype.sample = function sample(weight, value) {
- var adjAlpha = Math.pow(this.alpha_, weight);
- this.estimate_ = value * (1 - adjAlpha) + adjAlpha * this.estimate_;
- this.totalWeight_ += weight;
- };
-
- EWMA.prototype.getTotalWeight = function getTotalWeight() {
- return this.totalWeight_;
- };
-
- EWMA.prototype.getEstimate = function getEstimate() {
- if (this.alpha_) {
- var zeroFactor = 1 - Math.pow(this.alpha_, this.totalWeight_);
- return this.estimate_ / zeroFactor;
- } else {
- return this.estimate_;
- }
- };
-
- return EWMA;
-}();
-
-/* harmony default export */ var ewma = (EWMA);
-// CONCATENATED MODULE: ./src/utils/ewma-bandwidth-estimator.js
-function ewma_bandwidth_estimator__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/*
- * EWMA Bandwidth Estimator
- * - heavily inspired from shaka-player
- * Tracks bandwidth samples and estimates available bandwidth.
- * Based on the minimum of two exponentially-weighted moving averages with
- * different half-lives.
- */
-
-
-
-var ewma_bandwidth_estimator_EwmaBandWidthEstimator = function () {
- function EwmaBandWidthEstimator(hls, slow, fast, defaultEstimate) {
- ewma_bandwidth_estimator__classCallCheck(this, EwmaBandWidthEstimator);
-
- this.hls = hls;
- this.defaultEstimate_ = defaultEstimate;
- this.minWeight_ = 0.001;
- this.minDelayMs_ = 50;
- this.slow_ = new ewma(slow);
- this.fast_ = new ewma(fast);
- }
-
- EwmaBandWidthEstimator.prototype.sample = function sample(durationMs, numBytes) {
- durationMs = Math.max(durationMs, this.minDelayMs_);
- var bandwidth = 8000 * numBytes / durationMs,
-
- // console.log('instant bw:'+ Math.round(bandwidth));
- // we weight sample using loading duration....
- weight = durationMs / 1000;
- this.fast_.sample(weight, bandwidth);
- this.slow_.sample(weight, bandwidth);
- };
-
- EwmaBandWidthEstimator.prototype.canEstimate = function canEstimate() {
- var fast = this.fast_;
- return fast && fast.getTotalWeight() >= this.minWeight_;
- };
-
- EwmaBandWidthEstimator.prototype.getEstimate = function getEstimate() {
- if (this.canEstimate()) {
- // console.log('slow estimate:'+ Math.round(this.slow_.getEstimate()));
- // console.log('fast estimate:'+ Math.round(this.fast_.getEstimate()));
- // Take the minimum of these two estimates. This should have the effect of
- // adapting down quickly, but up more slowly.
- return Math.min(this.fast_.getEstimate(), this.slow_.getEstimate());
- } else {
- return this.defaultEstimate_;
- }
- };
-
- EwmaBandWidthEstimator.prototype.destroy = function destroy() {};
-
- return EwmaBandWidthEstimator;
-}();
-
-/* harmony default export */ var ewma_bandwidth_estimator = (ewma_bandwidth_estimator_EwmaBandWidthEstimator);
-// CONCATENATED MODULE: ./src/controller/abr-controller.js
-var abr_controller__createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
-
-function abr_controller__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function abr_controller__possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function abr_controller__inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-/*
- * simple ABR Controller
- * - compute next level based on last fragment bw heuristics
- * - implement an abandon rules triggered if we have less than 2 frag buffered and if computed bw shows that we risk buffer stalling
- */
-
-
-
-
-
-
-
-
-var abr_controller__window = window,
- abr_controller_performance = abr_controller__window.performance;
-
-var abr_controller_AbrController = function (_EventHandler) {
- abr_controller__inherits(AbrController, _EventHandler);
-
- function AbrController(hls) {
- abr_controller__classCallCheck(this, AbrController);
-
- var _this = abr_controller__possibleConstructorReturn(this, _EventHandler.call(this, hls, events["a" /* default */].FRAG_LOADING, events["a" /* default */].FRAG_LOADED, events["a" /* default */].FRAG_BUFFERED, events["a" /* default */].ERROR));
-
- _this.lastLoadedFragLevel = 0;
- _this._nextAutoLevel = -1;
- _this.hls = hls;
- _this.timer = null;
- _this._bwEstimator = null;
- _this.onCheck = _this._abandonRulesCheck.bind(_this);
- return _this;
- }
-
- AbrController.prototype.destroy = function destroy() {
- this.clearTimer();
- event_handler.prototype.destroy.call(this);
- };
-
- AbrController.prototype.onFragLoading = function onFragLoading(data) {
- var frag = data.frag;
- if (frag.type === 'main') {
- if (!this.timer) {
- this.fragCurrent = frag;
- this.timer = setInterval(this.onCheck, 100);
- }
-
- // lazy init of BwEstimator, rationale is that we use different params for Live/VoD
- // so we need to wait for stream manifest / playlist type to instantiate it.
- if (!this._bwEstimator) {
- var hls = this.hls;
- var config = hls.config;
- var level = frag.level;
- var isLive = hls.levels[level].details.live;
-
- var ewmaFast = void 0,
- ewmaSlow = void 0;
- if (isLive) {
- ewmaFast = config.abrEwmaFastLive;
- ewmaSlow = config.abrEwmaSlowLive;
- } else {
- ewmaFast = config.abrEwmaFastVoD;
- ewmaSlow = config.abrEwmaSlowVoD;
- }
- this._bwEstimator = new ewma_bandwidth_estimator(hls, ewmaSlow, ewmaFast, config.abrEwmaDefaultEstimate);
- }
- }
- };
-
- AbrController.prototype._abandonRulesCheck = function _abandonRulesCheck() {
- /*
- monitor fragment retrieval time...
- we compute expected time of arrival of the complete fragment.
- we compare it to expected time of buffer starvation
- */
- var hls = this.hls;
- var video = hls.media;
- var frag = this.fragCurrent;
-
- if (!frag) {
- return;
- }
-
- var loader = frag.loader;
- var minAutoLevel = hls.minAutoLevel;
-
- // if loader has been destroyed or loading has been aborted, stop timer and return
- if (!loader || loader.stats && loader.stats.aborted) {
- logger["b" /* logger */].warn('frag loader destroy or aborted, disarm abandonRules');
- this.clearTimer();
- // reset forced auto level value so that next level will be selected
- this._nextAutoLevel = -1;
- return;
- }
- var stats = loader.stats;
- /* only monitor frag retrieval time if
- (video not paused OR first fragment being loaded(ready state === HAVE_NOTHING = 0)) AND autoswitching enabled AND not lowest level (=> means that we have several levels) */
- if (video && stats && (!video.paused && video.playbackRate !== 0 || !video.readyState) && frag.autoLevel && frag.level) {
- var requestDelay = abr_controller_performance.now() - stats.trequest,
- playbackRate = Math.abs(video.playbackRate);
- // monitor fragment load progress after half of expected fragment duration,to stabilize bitrate
- if (requestDelay > 500 * frag.duration / playbackRate) {
- var levels = hls.levels,
- loadRate = Math.max(1, stats.bw ? stats.bw / 8 : stats.loaded * 1000 / requestDelay),
- // byte/s; at least 1 byte/s to avoid division by zero
- // compute expected fragment length using frag duration and level bitrate. also ensure that expected len is gte than already loaded size
- level = levels[frag.level],
- levelBitrate = level.realBitrate ? Math.max(level.realBitrate, level.bitrate) : level.bitrate,
- expectedLen = stats.total ? stats.total : Math.max(stats.loaded, Math.round(frag.duration * levelBitrate / 8)),
- pos = video.currentTime,
- fragLoadedDelay = (expectedLen - stats.loaded) / loadRate,
- bufferStarvationDelay = (BufferHelper.bufferInfo(video, pos, hls.config.maxBufferHole).end - pos) / playbackRate;
- // consider emergency switch down only if we have less than 2 frag buffered AND
- // time to finish loading current fragment is bigger than buffer starvation delay
- // ie if we risk buffer starvation if bw does not increase quickly
- if (bufferStarvationDelay < 2 * frag.duration / playbackRate && fragLoadedDelay > bufferStarvationDelay) {
- var fragLevelNextLoadedDelay = void 0,
- nextLoadLevel = void 0;
- // lets iterate through lower level and try to find the biggest one that could avoid rebuffering
- // we start from current level - 1 and we step down , until we find a matching level
- for (nextLoadLevel = frag.level - 1; nextLoadLevel > minAutoLevel; nextLoadLevel--) {
- // compute time to load next fragment at lower level
- // 0.8 : consider only 80% of current bw to be conservative
- // 8 = bits per byte (bps/Bps)
- var levelNextBitrate = levels[nextLoadLevel].realBitrate ? Math.max(levels[nextLoadLevel].realBitrate, levels[nextLoadLevel].bitrate) : levels[nextLoadLevel].bitrate;
- fragLevelNextLoadedDelay = frag.duration * levelNextBitrate / (8 * 0.8 * loadRate);
- if (fragLevelNextLoadedDelay < bufferStarvationDelay) {
- // we found a lower level that be rebuffering free with current estimated bw !
- break;
- }
- }
- // only emergency switch down if it takes less time to load new fragment at lowest level instead
- // of finishing loading current one ...
- if (fragLevelNextLoadedDelay < fragLoadedDelay) {
- logger["b" /* logger */].warn('loading too slow, abort fragment loading and switch to level ' + nextLoadLevel + ':fragLoadedDelay[' + nextLoadLevel + ']= minAutoLevel; i--) {
- var levelInfo = levels[i],
- levelDetails = levelInfo.details,
- avgDuration = levelDetails ? levelDetails.totalduration / levelDetails.fragments.length : currentFragDuration,
- live = levelDetails ? levelDetails.live : false,
- adjustedbw = void 0;
- // follow algorithm captured from stagefright :
- // https://android.googlesource.com/platform/frameworks/av/+/master/media/libstagefright/httplive/LiveSession.cpp
- // Pick the highest bandwidth stream below or equal to estimated bandwidth.
- // consider only 80% of the available bandwidth, but if we are switching up,
- // be even more conservative (70%) to avoid overestimating and immediately
- // switching back.
- if (i <= currentLevel) {
- adjustedbw = bwFactor * currentBw;
- } else {
- adjustedbw = bwUpFactor * currentBw;
- }
-
- var bitrate = levels[i].realBitrate ? Math.max(levels[i].realBitrate, levels[i].bitrate) : levels[i].bitrate,
- fetchDuration = bitrate * avgDuration / adjustedbw;
-
- logger["b" /* logger */].trace('level/adjustedbw/bitrate/avgDuration/maxFetchDuration/fetchDuration: ' + i + '/' + Math.round(adjustedbw) + '/' + bitrate + '/' + avgDuration + '/' + maxFetchDuration + '/' + fetchDuration);
- // if adjusted bw is greater than level bitrate AND
- if (adjustedbw > bitrate && (
- // fragment fetchDuration unknown OR live stream OR fragment fetchDuration less than max allowed fetch duration, then this level matches
- // we don't account for max Fetch Duration for live streams, this is to avoid switching down when near the edge of live sliding window ...
- // special case to support startLevel = -1 (bitrateTest) on live streams : in that case we should not exit loop so that _findBestLevel will return -1
- !fetchDuration || live && !this.bitrateTestDelay || fetchDuration < maxFetchDuration)) {
- // as we are looping from highest to lowest, this will return the best achievable quality level
- return i;
- }
- }
- // not enough time budget even with quality level 0 ... rebuffering might happen
- return -1;
- };
-
- abr_controller__createClass(AbrController, [{
- key: 'nextAutoLevel',
- get: function get() {
- var forcedAutoLevel = this._nextAutoLevel;
- var bwEstimator = this._bwEstimator;
- // in case next auto level has been forced, and bw not available or not reliable, return forced value
- if (forcedAutoLevel !== -1 && (!bwEstimator || !bwEstimator.canEstimate())) {
- return forcedAutoLevel;
- }
-
- // compute next level using ABR logic
- var nextABRAutoLevel = this._nextABRAutoLevel;
- // if forced auto level has been defined, use it to cap ABR computed quality level
- if (forcedAutoLevel !== -1) {
- nextABRAutoLevel = Math.min(forcedAutoLevel, nextABRAutoLevel);
- }
-
- return nextABRAutoLevel;
- },
- set: function set(nextLevel) {
- this._nextAutoLevel = nextLevel;
- }
- }, {
- key: '_nextABRAutoLevel',
- get: function get() {
- var hls = this.hls,
- maxAutoLevel = hls.maxAutoLevel,
- levels = hls.levels,
- config = hls.config,
- minAutoLevel = hls.minAutoLevel;
- var video = hls.media,
- currentLevel = this.lastLoadedFragLevel,
- currentFragDuration = this.fragCurrent ? this.fragCurrent.duration : 0,
- pos = video ? video.currentTime : 0,
-
- // playbackRate is the absolute value of the playback rate; if video.playbackRate is 0, we use 1 to load as
- // if we're playing back at the normal rate.
- playbackRate = video && video.playbackRate !== 0 ? Math.abs(video.playbackRate) : 1.0,
- avgbw = this._bwEstimator ? this._bwEstimator.getEstimate() : config.abrEwmaDefaultEstimate,
-
- // bufferStarvationDelay is the wall-clock time left until the playback buffer is exhausted.
- bufferStarvationDelay = (BufferHelper.bufferInfo(video, pos, config.maxBufferHole).end - pos) / playbackRate;
-
- // First, look to see if we can find a level matching with our avg bandwidth AND that could also guarantee no rebuffering at all
- var bestLevel = this._findBestLevel(currentLevel, currentFragDuration, avgbw, minAutoLevel, maxAutoLevel, bufferStarvationDelay, config.abrBandWidthFactor, config.abrBandWidthUpFactor, levels);
- if (bestLevel >= 0) {
- return bestLevel;
- } else {
- logger["b" /* logger */].trace('rebuffering expected to happen, lets try to find a quality level minimizing the rebuffering');
- // not possible to get rid of rebuffering ... let's try to find level that will guarantee less than maxStarvationDelay of rebuffering
- // if no matching level found, logic will return 0
- var maxStarvationDelay = currentFragDuration ? Math.min(currentFragDuration, config.maxStarvationDelay) : config.maxStarvationDelay,
- bwFactor = config.abrBandWidthFactor,
- bwUpFactor = config.abrBandWidthUpFactor;
- if (bufferStarvationDelay === 0) {
- // in case buffer is empty, let's check if previous fragment was loaded to perform a bitrate test
- var bitrateTestDelay = this.bitrateTestDelay;
- if (bitrateTestDelay) {
- // if it is the case, then we need to adjust our max starvation delay using maxLoadingDelay config value
- // max video loading delay used in automatic start level selection :
- // in that mode ABR controller will ensure that video loading time (ie the time to fetch the first fragment at lowest quality level +
- // the time to fetch the fragment at the appropriate quality level is less than ```maxLoadingDelay``` )
- // cap maxLoadingDelay and ensure it is not bigger 'than bitrate test' frag duration
- var maxLoadingDelay = currentFragDuration ? Math.min(currentFragDuration, config.maxLoadingDelay) : config.maxLoadingDelay;
- maxStarvationDelay = maxLoadingDelay - bitrateTestDelay;
- logger["b" /* logger */].trace('bitrate test took ' + Math.round(1000 * bitrateTestDelay) + 'ms, set first fragment max fetchDuration to ' + Math.round(1000 * maxStarvationDelay) + ' ms');
- // don't use conservative factor on bitrate test
- bwFactor = bwUpFactor = 1;
- }
- }
- bestLevel = this._findBestLevel(currentLevel, currentFragDuration, avgbw, minAutoLevel, maxAutoLevel, bufferStarvationDelay + maxStarvationDelay, bwFactor, bwUpFactor, levels);
- return Math.max(bestLevel, 0);
- }
- }
- }]);
-
- return AbrController;
-}(event_handler);
-
-/* harmony default export */ var abr_controller = (abr_controller_AbrController);
-// CONCATENATED MODULE: ./src/controller/buffer-controller.js
-function buffer_controller__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function buffer_controller__possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function buffer_controller__inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-/*
- * Buffer Controller
-*/
-
-
-
-
-
-
-
-var buffer_controller_MediaSource = getMediaSource();
-
-var buffer_controller_BufferController = function (_EventHandler) {
- buffer_controller__inherits(BufferController, _EventHandler);
-
- function BufferController(hls) {
- buffer_controller__classCallCheck(this, BufferController);
-
- // the value that we have set mediasource.duration to
- // (the actual duration may be tweaked slighly by the browser)
- var _this = buffer_controller__possibleConstructorReturn(this, _EventHandler.call(this, hls, events["a" /* default */].MEDIA_ATTACHING, events["a" /* default */].MEDIA_DETACHING, events["a" /* default */].MANIFEST_PARSED, events["a" /* default */].BUFFER_RESET, events["a" /* default */].BUFFER_APPENDING, events["a" /* default */].BUFFER_CODECS, events["a" /* default */].BUFFER_EOS, events["a" /* default */].BUFFER_FLUSHING, events["a" /* default */].LEVEL_PTS_UPDATED, events["a" /* default */].LEVEL_UPDATED));
-
- _this._msDuration = null;
- // the value that we want to set mediaSource.duration to
- _this._levelDuration = null;
- // current stream state: true - for live broadcast, false - for VoD content
- _this._live = null;
- // cache the self generated object url to detect hijack of video tag
- _this._objectUrl = null;
-
- // Source Buffer listeners
- _this.onsbue = _this.onSBUpdateEnd.bind(_this);
- _this.onsbe = _this.onSBUpdateError.bind(_this);
- _this.pendingTracks = {};
- _this.tracks = {};
- return _this;
- }
-
- BufferController.prototype.destroy = function destroy() {
- event_handler.prototype.destroy.call(this);
- };
-
- BufferController.prototype.onLevelPtsUpdated = function onLevelPtsUpdated(data) {
- var type = data.type;
- var audioTrack = this.tracks.audio;
-
- // Adjusting `SourceBuffer.timestampOffset` (desired point in the timeline where the next frames should be appended)
- // in Chrome browser when we detect MPEG audio container and time delta between level PTS and `SourceBuffer.timestampOffset`
- // is greater than 100ms (this is enough to handle seek for VOD or level change for LIVE videos). At the time of change we issue
- // `SourceBuffer.abort()` and adjusting `SourceBuffer.timestampOffset` if `SourceBuffer.updating` is false or awaiting `updateend`
- // event if SB is in updating state.
- // More info here: https://github.com/video-dev/hls.js/issues/332#issuecomment-257986486
-
- if (type === 'audio' && audioTrack && audioTrack.container === 'audio/mpeg') {
- // Chrome audio mp3 track
- var audioBuffer = this.sourceBuffer.audio;
- var delta = Math.abs(audioBuffer.timestampOffset - data.start);
-
- // adjust timestamp offset if time delta is greater than 100ms
- if (delta > 0.1) {
- var updating = audioBuffer.updating;
-
- try {
- audioBuffer.abort();
- } catch (err) {
- updating = true;
- logger["b" /* logger */].warn('can not abort audio buffer: ' + err);
- }
-
- if (!updating) {
- logger["b" /* logger */].warn('change mpeg audio timestamp offset from ' + audioBuffer.timestampOffset + ' to ' + data.start);
- audioBuffer.timestampOffset = data.start;
- } else {
- this.audioTimestampOffset = data.start;
- }
- }
- }
- };
-
- BufferController.prototype.onManifestParsed = function onManifestParsed(data) {
- var audioExpected = data.audio,
- videoExpected = data.video || data.levels.length && data.altAudio,
- sourceBufferNb = 0;
- // in case of alt audio 2 BUFFER_CODECS events will be triggered, one per stream controller
- // sourcebuffers will be created all at once when the expected nb of tracks will be reached
- // in case alt audio is not used, only one BUFFER_CODEC event will be fired from main stream controller
- // it will contain the expected nb of source buffers, no need to compute it
- if (data.altAudio && (audioExpected || videoExpected)) {
- sourceBufferNb = (audioExpected ? 1 : 0) + (videoExpected ? 1 : 0);
- logger["b" /* logger */].log(sourceBufferNb + ' sourceBuffer(s) expected');
- }
- this.sourceBufferNb = sourceBufferNb;
- };
-
- BufferController.prototype.onMediaAttaching = function onMediaAttaching(data) {
- var media = this.media = data.media;
- if (media) {
- // setup the media source
- var ms = this.mediaSource = new buffer_controller_MediaSource();
- // Media Source listeners
- this.onmso = this.onMediaSourceOpen.bind(this);
- this.onmse = this.onMediaSourceEnded.bind(this);
- this.onmsc = this.onMediaSourceClose.bind(this);
- ms.addEventListener('sourceopen', this.onmso);
- ms.addEventListener('sourceended', this.onmse);
- ms.addEventListener('sourceclose', this.onmsc);
- // link video and media Source
- media.src = window.URL.createObjectURL(ms);
- // cache the locally generated object url
- this._objectUrl = media.src;
- }
- };
-
- BufferController.prototype.onMediaDetaching = function onMediaDetaching() {
- logger["b" /* logger */].log('media source detaching');
- var ms = this.mediaSource;
- if (ms) {
- if (ms.readyState === 'open') {
- try {
- // endOfStream could trigger exception if any sourcebuffer is in updating state
- // we don't really care about checking sourcebuffer state here,
- // as we are anyway detaching the MediaSource
- // let's just avoid this exception to propagate
- ms.endOfStream();
- } catch (err) {
- logger["b" /* logger */].warn('onMediaDetaching:' + err.message + ' while calling endOfStream');
- }
- }
- ms.removeEventListener('sourceopen', this.onmso);
- ms.removeEventListener('sourceended', this.onmse);
- ms.removeEventListener('sourceclose', this.onmsc);
-
- // Detach properly the MediaSource from the HTMLMediaElement as
- // suggested in https://github.com/w3c/media-source/issues/53.
- if (this.media) {
- window.URL.revokeObjectURL(this._objectUrl);
-
- // clean up video tag src only if it's our own url. some external libraries might
- // hijack the video tag and change its 'src' without destroying the Hls instance first
- if (this.media.src === this._objectUrl) {
- this.media.removeAttribute('src');
- this.media.load();
- } else {
- logger["b" /* logger */].warn('media.src was changed by a third party - skip cleanup');
- }
- }
-
- this.mediaSource = null;
- this.media = null;
- this._objectUrl = null;
- this.pendingTracks = {};
- this.tracks = {};
- this.sourceBuffer = {};
- this.flushRange = [];
- this.segments = [];
- this.appended = 0;
- }
- this.onmso = this.onmse = this.onmsc = null;
- this.hls.trigger(events["a" /* default */].MEDIA_DETACHED);
- };
-
- BufferController.prototype.onMediaSourceOpen = function onMediaSourceOpen() {
- logger["b" /* logger */].log('media source opened');
- this.hls.trigger(events["a" /* default */].MEDIA_ATTACHED, { media: this.media });
- var mediaSource = this.mediaSource;
- if (mediaSource) {
- // once received, don't listen anymore to sourceopen event
- mediaSource.removeEventListener('sourceopen', this.onmso);
- }
- this.checkPendingTracks();
- };
-
- BufferController.prototype.checkPendingTracks = function checkPendingTracks() {
- // if any buffer codecs pending, check if we have enough to create sourceBuffers
- var pendingTracks = this.pendingTracks,
- pendingTracksNb = Object.keys(pendingTracks).length;
- // if any pending tracks and (if nb of pending tracks gt or equal than expected nb or if unknown expected nb)
- if (pendingTracksNb && (this.sourceBufferNb <= pendingTracksNb || this.sourceBufferNb === 0)) {
- // ok, let's create them now !
- this.createSourceBuffers(pendingTracks);
- this.pendingTracks = {};
- // append any pending segments now !
- this.doAppending();
- }
- };
-
- BufferController.prototype.onMediaSourceClose = function onMediaSourceClose() {
- logger["b" /* logger */].log('media source closed');
- };
-
- BufferController.prototype.onMediaSourceEnded = function onMediaSourceEnded() {
- logger["b" /* logger */].log('media source ended');
- };
-
- BufferController.prototype.onSBUpdateEnd = function onSBUpdateEnd() {
- // update timestampOffset
- if (this.audioTimestampOffset) {
- var audioBuffer = this.sourceBuffer.audio;
- logger["b" /* logger */].warn('change mpeg audio timestamp offset from ' + audioBuffer.timestampOffset + ' to ' + this.audioTimestampOffset);
- audioBuffer.timestampOffset = this.audioTimestampOffset;
- delete this.audioTimestampOffset;
- }
-
- if (this._needsFlush) {
- this.doFlush();
- }
-
- if (this._needsEos) {
- this.checkEos();
- }
-
- this.appending = false;
- var parent = this.parent;
- // count nb of pending segments waiting for appending on this sourcebuffer
- var pending = this.segments.reduce(function (counter, segment) {
- return segment.parent === parent ? counter + 1 : counter;
- }, 0);
-
- // this.sourceBuffer is better to use than media.buffered as it is closer to the PTS data from the fragments
- var timeRanges = {};
- var sourceBuffer = this.sourceBuffer;
- for (var streamType in sourceBuffer) {
- timeRanges[streamType] = sourceBuffer[streamType].buffered;
- }
-
- this.hls.trigger(events["a" /* default */].BUFFER_APPENDED, { parent: parent, pending: pending, timeRanges: timeRanges });
- // don't append in flushing mode
- if (!this._needsFlush) {
- this.doAppending();
- }
-
- this.updateMediaElementDuration();
- };
-
- BufferController.prototype.onSBUpdateError = function onSBUpdateError(event) {
- logger["b" /* logger */].error('sourceBuffer error:', event);
- // according to http://www.w3.org/TR/media-source/#sourcebuffer-append-error
- // this error might not always be fatal (it is fatal if decode error is set, in that case
- // it will be followed by a mediaElement error ...)
- this.hls.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].MEDIA_ERROR, details: errors["a" /* ErrorDetails */].BUFFER_APPENDING_ERROR, fatal: false });
- // we don't need to do more than that, as accordin to the spec, updateend will be fired just after
- };
-
- BufferController.prototype.onBufferReset = function onBufferReset() {
- var sourceBuffer = this.sourceBuffer;
- for (var type in sourceBuffer) {
- var sb = sourceBuffer[type];
- try {
- this.mediaSource.removeSourceBuffer(sb);
- sb.removeEventListener('updateend', this.onsbue);
- sb.removeEventListener('error', this.onsbe);
- } catch (err) {}
- }
- this.sourceBuffer = {};
- this.flushRange = [];
- this.segments = [];
- this.appended = 0;
- };
-
- BufferController.prototype.onBufferCodecs = function onBufferCodecs(tracks) {
- // if source buffer(s) not created yet, appended buffer tracks in this.pendingTracks
- // if sourcebuffers already created, do nothing ...
- if (Object.keys(this.sourceBuffer).length === 0) {
- for (var trackName in tracks) {
- this.pendingTracks[trackName] = tracks[trackName];
- }var mediaSource = this.mediaSource;
- if (mediaSource && mediaSource.readyState === 'open') {
- // try to create sourcebuffers if mediasource opened
- this.checkPendingTracks();
- }
- }
- };
-
- BufferController.prototype.createSourceBuffers = function createSourceBuffers(tracks) {
- var sourceBuffer = this.sourceBuffer,
- mediaSource = this.mediaSource;
-
- for (var trackName in tracks) {
- if (!sourceBuffer[trackName]) {
- var track = tracks[trackName];
- // use levelCodec as first priority
- var codec = track.levelCodec || track.codec;
- var mimeType = track.container + ';codecs=' + codec;
- logger["b" /* logger */].log('creating sourceBuffer(' + mimeType + ')');
- try {
- var sb = sourceBuffer[trackName] = mediaSource.addSourceBuffer(mimeType);
- sb.addEventListener('updateend', this.onsbue);
- sb.addEventListener('error', this.onsbe);
- this.tracks[trackName] = { codec: codec, container: track.container };
- track.buffer = sb;
- } catch (err) {
- logger["b" /* logger */].error('error while trying to add sourceBuffer:' + err.message);
- this.hls.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].MEDIA_ERROR, details: errors["a" /* ErrorDetails */].BUFFER_ADD_CODEC_ERROR, fatal: false, err: err, mimeType: mimeType });
- }
- }
- }
- this.hls.trigger(events["a" /* default */].BUFFER_CREATED, { tracks: tracks });
- };
-
- BufferController.prototype.onBufferAppending = function onBufferAppending(data) {
- if (!this._needsFlush) {
- if (!this.segments) {
- this.segments = [data];
- } else {
- this.segments.push(data);
- }
-
- this.doAppending();
- }
- };
-
- BufferController.prototype.onBufferAppendFail = function onBufferAppendFail(data) {
- logger["b" /* logger */].error('sourceBuffer error:', data.event);
- // according to http://www.w3.org/TR/media-source/#sourcebuffer-append-error
- // this error might not always be fatal (it is fatal if decode error is set, in that case
- // it will be followed by a mediaElement error ...)
- this.hls.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].MEDIA_ERROR, details: errors["a" /* ErrorDetails */].BUFFER_APPENDING_ERROR, fatal: false });
- };
-
- // on BUFFER_EOS mark matching sourcebuffer(s) as ended and trigger checkEos()
-
-
- BufferController.prototype.onBufferEos = function onBufferEos(data) {
- var sb = this.sourceBuffer;
- var dataType = data.type;
- for (var type in sb) {
- if (!dataType || type === dataType) {
- if (!sb[type].ended) {
- sb[type].ended = true;
- logger["b" /* logger */].log(type + ' sourceBuffer now EOS');
- }
- }
- }
- this.checkEos();
- };
-
- // if all source buffers are marked as ended, signal endOfStream() to MediaSource.
-
-
- BufferController.prototype.checkEos = function checkEos() {
- var sb = this.sourceBuffer,
- mediaSource = this.mediaSource;
- if (!mediaSource || mediaSource.readyState !== 'open') {
- this._needsEos = false;
- return;
- }
- for (var type in sb) {
- var sbobj = sb[type];
- if (!sbobj.ended) {
- return;
- }
-
- if (sbobj.updating) {
- this._needsEos = true;
- return;
- }
- }
- logger["b" /* logger */].log('all media data available, signal endOfStream() to MediaSource and stop loading fragment');
- // Notify the media element that it now has all of the media data
- try {
- mediaSource.endOfStream();
- } catch (e) {
- logger["b" /* logger */].warn('exception while calling mediaSource.endOfStream()');
- }
- this._needsEos = false;
- };
-
- BufferController.prototype.onBufferFlushing = function onBufferFlushing(data) {
- this.flushRange.push({ start: data.startOffset, end: data.endOffset, type: data.type });
- // attempt flush immediately
- this.flushBufferCounter = 0;
- this.doFlush();
- };
-
- BufferController.prototype.onLevelUpdated = function onLevelUpdated(_ref) {
- var details = _ref.details;
-
- if (details.fragments.length > 0) {
- this._levelDuration = details.totalduration + details.fragments[0].start;
- this._live = details.live;
- this.updateMediaElementDuration();
- }
- };
-
- /**
- * Update Media Source duration to current level duration or override to Infinity if configuration parameter
- * 'liveDurationInfinity` is set to `true`
- * More details: https://github.com/video-dev/hls.js/issues/355
- */
-
-
- BufferController.prototype.updateMediaElementDuration = function updateMediaElementDuration() {
- var config = this.hls.config;
-
- var duration = void 0;
-
- if (this._levelDuration === null || !this.media || !this.mediaSource || !this.sourceBuffer || this.media.readyState === 0 || this.mediaSource.readyState !== 'open') {
- return;
- }
-
- for (var type in this.sourceBuffer) {
- if (this.sourceBuffer[type].updating === true) {
- // can't set duration whilst a buffer is updating
- return;
- }
- }
-
- duration = this.media.duration;
- // initialise to the value that the media source is reporting
- if (this._msDuration === null) {
- this._msDuration = this.mediaSource.duration;
- }
-
- if (this._live === true && config.liveDurationInfinity === true) {
- // Override duration to Infinity
- logger["b" /* logger */].log('Media Source duration is set to Infinity');
- this._msDuration = this.mediaSource.duration = Infinity;
- } else if (this._levelDuration > this._msDuration && this._levelDuration > duration || duration === Infinity || isNaN(duration)) {
- // levelDuration was the last value we set.
- // not using mediaSource.duration as the browser may tweak this value
- // only update Media Source duration if its value increase, this is to avoid
- // flushing already buffered portion when switching between quality level
- logger["b" /* logger */].log('Updating Media Source duration to ' + this._levelDuration.toFixed(3));
- this._msDuration = this.mediaSource.duration = this._levelDuration;
- }
- };
-
- BufferController.prototype.doFlush = function doFlush() {
- // loop through all buffer ranges to flush
- while (this.flushRange.length) {
- var range = this.flushRange[0];
- // flushBuffer will abort any buffer append in progress and flush Audio/Video Buffer
- if (this.flushBuffer(range.start, range.end, range.type)) {
- // range flushed, remove from flush array
- this.flushRange.shift();
- this.flushBufferCounter = 0;
- } else {
- this._needsFlush = true;
- // avoid looping, wait for SB update end to retrigger a flush
- return;
- }
- }
- if (this.flushRange.length === 0) {
- // everything flushed
- this._needsFlush = false;
-
- // let's recompute this.appended, which is used to avoid flush looping
- var appended = 0;
- var sourceBuffer = this.sourceBuffer;
- try {
- for (var type in sourceBuffer) {
- appended += sourceBuffer[type].buffered.length;
- }
- } catch (error) {
- // error could be thrown while accessing buffered, in case sourcebuffer has already been removed from MediaSource
- // this is harmess at this stage, catch this to avoid reporting an internal exception
- logger["b" /* logger */].error('error while accessing sourceBuffer.buffered');
- }
- this.appended = appended;
- this.hls.trigger(events["a" /* default */].BUFFER_FLUSHED);
- }
- };
-
- BufferController.prototype.doAppending = function doAppending() {
- var hls = this.hls,
- sourceBuffer = this.sourceBuffer,
- segments = this.segments;
- if (Object.keys(sourceBuffer).length) {
- if (this.media.error) {
- this.segments = [];
- logger["b" /* logger */].error('trying to append although a media error occured, flush segment and abort');
- return;
- }
- if (this.appending) {
- // logger.log(`sb appending in progress`);
- return;
- }
- if (segments && segments.length) {
- var segment = segments.shift();
- try {
- var type = segment.type,
- sb = sourceBuffer[type];
- if (sb) {
- if (!sb.updating) {
- // reset sourceBuffer ended flag before appending segment
- sb.ended = false;
- // logger.log(`appending ${segment.content} ${type} SB, size:${segment.data.length}, ${segment.parent}`);
- this.parent = segment.parent;
- sb.appendBuffer(segment.data);
- this.appendError = 0;
- this.appended++;
- this.appending = true;
- } else {
- segments.unshift(segment);
- }
- } else {
- // in case we don't have any source buffer matching with this segment type,
- // it means that Mediasource fails to create sourcebuffer
- // discard this segment, and trigger update end
- this.onSBUpdateEnd();
- }
- } catch (err) {
- // in case any error occured while appending, put back segment in segments table
- logger["b" /* logger */].error('error while trying to append buffer:' + err.message);
- segments.unshift(segment);
- var event = { type: errors["b" /* ErrorTypes */].MEDIA_ERROR, parent: segment.parent };
- if (err.code !== 22) {
- if (this.appendError) {
- this.appendError++;
- } else {
- this.appendError = 1;
- }
-
- event.details = errors["a" /* ErrorDetails */].BUFFER_APPEND_ERROR;
- /* with UHD content, we could get loop of quota exceeded error until
- browser is able to evict some data from sourcebuffer. retrying help recovering this
- */
- if (this.appendError > hls.config.appendErrorMaxRetry) {
- logger["b" /* logger */].log('fail ' + hls.config.appendErrorMaxRetry + ' times to append segment in sourceBuffer');
- segments = [];
- event.fatal = true;
- hls.trigger(events["a" /* default */].ERROR, event);
- } else {
- event.fatal = false;
- hls.trigger(events["a" /* default */].ERROR, event);
- }
- } else {
- // QuotaExceededError: http://www.w3.org/TR/html5/infrastructure.html#quotaexceedederror
- // let's stop appending any segments, and report BUFFER_FULL_ERROR error
- this.segments = [];
- event.details = errors["a" /* ErrorDetails */].BUFFER_FULL_ERROR;
- event.fatal = false;
- hls.trigger(events["a" /* default */].ERROR, event);
- }
- }
- }
- }
- };
-
- /*
- flush specified buffered range,
- return true once range has been flushed.
- as sourceBuffer.remove() is asynchronous, flushBuffer will be retriggered on sourceBuffer update end
- */
-
-
- BufferController.prototype.flushBuffer = function flushBuffer(startOffset, endOffset, typeIn) {
- var sb = void 0,
- i = void 0,
- bufStart = void 0,
- bufEnd = void 0,
- flushStart = void 0,
- flushEnd = void 0,
- sourceBuffer = this.sourceBuffer;
- if (Object.keys(sourceBuffer).length) {
- logger["b" /* logger */].log('flushBuffer,pos/start/end: ' + this.media.currentTime.toFixed(3) + '/' + startOffset + '/' + endOffset);
- // safeguard to avoid infinite looping : don't try to flush more than the nb of appended segments
- if (this.flushBufferCounter < this.appended) {
- for (var type in sourceBuffer) {
- // check if sourcebuffer type is defined (typeIn): if yes, let's only flush this one
- // if no, let's flush all sourcebuffers
- if (typeIn && type !== typeIn) {
- continue;
- }
-
- sb = sourceBuffer[type];
- // we are going to flush buffer, mark source buffer as 'not ended'
- sb.ended = false;
- if (!sb.updating) {
- try {
- for (i = 0; i < sb.buffered.length; i++) {
- bufStart = sb.buffered.start(i);
- bufEnd = sb.buffered.end(i);
- // workaround firefox not able to properly flush multiple buffered range.
- if (navigator.userAgent.toLowerCase().indexOf('firefox') !== -1 && endOffset === Number.POSITIVE_INFINITY) {
- flushStart = startOffset;
- flushEnd = endOffset;
- } else {
- flushStart = Math.max(bufStart, startOffset);
- flushEnd = Math.min(bufEnd, endOffset);
- }
- /* sometimes sourcebuffer.remove() does not flush
- the exact expected time range.
- to avoid rounding issues/infinite loop,
- only flush buffer range of length greater than 500ms.
- */
- if (Math.min(flushEnd, bufEnd) - flushStart > 0.5) {
- this.flushBufferCounter++;
- logger["b" /* logger */].log('flush ' + type + ' [' + flushStart + ',' + flushEnd + '], of [' + bufStart + ',' + bufEnd + '], pos:' + this.media.currentTime);
- sb.remove(flushStart, flushEnd);
- return false;
- }
- }
- } catch (e) {
- logger["b" /* logger */].warn('exception while accessing sourcebuffer, it might have been removed from MediaSource');
- }
- } else {
- // logger.log('abort ' + type + ' append in progress');
- // this will abort any appending in progress
- // sb.abort();
- logger["b" /* logger */].warn('cannot flush, sb updating in progress');
- return false;
- }
- }
- } else {
- logger["b" /* logger */].warn('abort flushing too many retries');
- }
- logger["b" /* logger */].log('buffer flushed');
- }
- // everything flushed !
- return true;
- };
-
- return BufferController;
-}(event_handler);
-
-/* harmony default export */ var buffer_controller = (buffer_controller_BufferController);
-// CONCATENATED MODULE: ./src/controller/cap-level-controller.js
-var cap_level_controller__createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
-
-function cap_level_controller__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function cap_level_controller__possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function cap_level_controller__inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-/*
- * cap stream level to media size dimension controller
-*/
-
-
-
-
-var cap_level_controller_CapLevelController = function (_EventHandler) {
- cap_level_controller__inherits(CapLevelController, _EventHandler);
-
- function CapLevelController(hls) {
- cap_level_controller__classCallCheck(this, CapLevelController);
-
- var _this = cap_level_controller__possibleConstructorReturn(this, _EventHandler.call(this, hls, events["a" /* default */].FPS_DROP_LEVEL_CAPPING, events["a" /* default */].MEDIA_ATTACHING, events["a" /* default */].MANIFEST_PARSED, events["a" /* default */].BUFFER_CODECS));
-
- _this.autoLevelCapping = Number.POSITIVE_INFINITY;
- _this.firstLevel = null;
- _this.levels = [];
- _this.media = null;
- _this.restrictedLevels = [];
- _this.timer = null;
- return _this;
- }
-
- CapLevelController.prototype.destroy = function destroy() {
- if (this.hls.config.capLevelToPlayerSize) {
- this.media = null;
- this._stopCapping();
- }
- };
-
- CapLevelController.prototype.onFpsDropLevelCapping = function onFpsDropLevelCapping(data) {
- // Don't add a restricted level more than once
- if (CapLevelController.isLevelAllowed(data.droppedLevel, this.restrictedLevels)) {
- this.restrictedLevels.push(data.droppedLevel);
- }
- };
-
- CapLevelController.prototype.onMediaAttaching = function onMediaAttaching(data) {
- this.media = data.media instanceof window.HTMLVideoElement ? data.media : null;
- };
-
- CapLevelController.prototype.onManifestParsed = function onManifestParsed(data) {
- var hls = this.hls;
- this.restrictedLevels = [];
- this.levels = data.levels;
- this.firstLevel = data.firstLevel;
- if (hls.config.capLevelToPlayerSize && (data.video || data.levels.length && data.altAudio)) {
- // Start capping immediately if the manifest has signaled video codecs
- this._startCapping();
- }
- };
-
- // Only activate capping when playing a video stream; otherwise, multi-bitrate audio-only streams will be restricted
- // to the first level
-
-
- CapLevelController.prototype.onBufferCodecs = function onBufferCodecs(data) {
- var hls = this.hls;
- if (hls.config.capLevelToPlayerSize && data.video) {
- // If the manifest did not signal a video codec capping has been deferred until we're certain video is present
- this._startCapping();
- }
- };
-
- CapLevelController.prototype.onLevelsUpdated = function onLevelsUpdated(data) {
- this.levels = data.levels;
- };
-
- CapLevelController.prototype.detectPlayerSize = function detectPlayerSize() {
- if (this.media) {
- var levelsLength = this.levels ? this.levels.length : 0;
- if (levelsLength) {
- var hls = this.hls;
- hls.autoLevelCapping = this.getMaxLevel(levelsLength - 1);
- if (hls.autoLevelCapping > this.autoLevelCapping) {
- // if auto level capping has a higher value for the previous one, flush the buffer using nextLevelSwitch
- // usually happen when the user go to the fullscreen mode.
- hls.streamController.nextLevelSwitch();
- }
- this.autoLevelCapping = hls.autoLevelCapping;
- }
- }
- };
-
- /*
- * returns level should be the one with the dimensions equal or greater than the media (player) dimensions (so the video will be downscaled)
- */
-
-
- CapLevelController.prototype.getMaxLevel = function getMaxLevel(capLevelIndex) {
- var _this2 = this;
-
- if (!this.levels) {
- return -1;
- }
-
- var validLevels = this.levels.filter(function (level, index) {
- return CapLevelController.isLevelAllowed(index, _this2.restrictedLevels) && index <= capLevelIndex;
- });
-
- return CapLevelController.getMaxLevelByMediaSize(validLevels, this.mediaWidth, this.mediaHeight);
- };
-
- CapLevelController.prototype._startCapping = function _startCapping() {
- if (this.timer) {
- // Don't reset capping if started twice; this can happen if the manifest signals a video codec
- return;
- }
- this.autoLevelCapping = Number.POSITIVE_INFINITY;
- this.hls.firstLevel = this.getMaxLevel(this.firstLevel);
- clearInterval(this.timer);
- this.timer = setInterval(this.detectPlayerSize.bind(this), 1000);
- this.detectPlayerSize();
- };
-
- CapLevelController.prototype._stopCapping = function _stopCapping() {
- this.restrictedLevels = [];
- this.firstLevel = null;
- this.autoLevelCapping = Number.POSITIVE_INFINITY;
- if (this.timer) {
- this.timer = clearInterval(this.timer);
- this.timer = null;
- }
- };
-
- CapLevelController.isLevelAllowed = function isLevelAllowed(level) {
- var restrictedLevels = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
-
- return restrictedLevels.indexOf(level) === -1;
- };
-
- CapLevelController.getMaxLevelByMediaSize = function getMaxLevelByMediaSize(levels, width, height) {
- if (!levels || levels && !levels.length) {
- return -1;
- }
-
- // Levels can have the same dimensions but differing bandwidths - since levels are ordered, we can look to the next
- // to determine whether we've chosen the greatest bandwidth for the media's dimensions
- var atGreatestBandiwdth = function atGreatestBandiwdth(curLevel, nextLevel) {
- if (!nextLevel) {
- return true;
- }
-
- return curLevel.width !== nextLevel.width || curLevel.height !== nextLevel.height;
- };
-
- // If we run through the loop without breaking, the media's dimensions are greater than every level, so default to
- // the max level
- var maxLevelIndex = levels.length - 1;
-
- for (var i = 0; i < levels.length; i += 1) {
- var level = levels[i];
- if ((level.width >= width || level.height >= height) && atGreatestBandiwdth(level, levels[i + 1])) {
- maxLevelIndex = i;
- break;
- }
- }
-
- return maxLevelIndex;
- };
-
- cap_level_controller__createClass(CapLevelController, [{
- key: 'mediaWidth',
- get: function get() {
- var width = void 0;
- var media = this.media;
- if (media) {
- width = media.width || media.clientWidth || media.offsetWidth;
- width *= CapLevelController.contentScaleFactor;
- }
- return width;
- }
- }, {
- key: 'mediaHeight',
- get: function get() {
- var height = void 0;
- var media = this.media;
- if (media) {
- height = media.height || media.clientHeight || media.offsetHeight;
- height *= CapLevelController.contentScaleFactor;
- }
- return height;
- }
- }], [{
- key: 'contentScaleFactor',
- get: function get() {
- var pixelRatio = 1;
- try {
- pixelRatio = window.devicePixelRatio;
- } catch (e) {}
- return pixelRatio;
- }
- }]);
-
- return CapLevelController;
-}(event_handler);
-
-/* harmony default export */ var cap_level_controller = (cap_level_controller_CapLevelController);
-// CONCATENATED MODULE: ./src/controller/fps-controller.js
-function fps_controller__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function fps_controller__possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function fps_controller__inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-/*
- * FPS Controller
-*/
-
-
-
-
-
-var fps_controller__window = window,
- fps_controller_performance = fps_controller__window.performance;
-
-var fps_controller_FPSController = function (_EventHandler) {
- fps_controller__inherits(FPSController, _EventHandler);
-
- function FPSController(hls) {
- fps_controller__classCallCheck(this, FPSController);
-
- return fps_controller__possibleConstructorReturn(this, _EventHandler.call(this, hls, events["a" /* default */].MEDIA_ATTACHING));
- }
-
- FPSController.prototype.destroy = function destroy() {
- if (this.timer) {
- clearInterval(this.timer);
- }
-
- this.isVideoPlaybackQualityAvailable = false;
- };
-
- FPSController.prototype.onMediaAttaching = function onMediaAttaching(data) {
- var config = this.hls.config;
- if (config.capLevelOnFPSDrop) {
- var video = this.video = data.media instanceof window.HTMLVideoElement ? data.media : null;
- if (typeof video.getVideoPlaybackQuality === 'function') {
- this.isVideoPlaybackQualityAvailable = true;
- }
-
- clearInterval(this.timer);
- this.timer = setInterval(this.checkFPSInterval.bind(this), config.fpsDroppedMonitoringPeriod);
- }
- };
-
- FPSController.prototype.checkFPS = function checkFPS(video, decodedFrames, droppedFrames) {
- var currentTime = fps_controller_performance.now();
- if (decodedFrames) {
- if (this.lastTime) {
- var currentPeriod = currentTime - this.lastTime,
- currentDropped = droppedFrames - this.lastDroppedFrames,
- currentDecoded = decodedFrames - this.lastDecodedFrames,
- droppedFPS = 1000 * currentDropped / currentPeriod,
- hls = this.hls;
- hls.trigger(events["a" /* default */].FPS_DROP, { currentDropped: currentDropped, currentDecoded: currentDecoded, totalDroppedFrames: droppedFrames });
- if (droppedFPS > 0) {
- // logger.log('checkFPS : droppedFPS/decodedFPS:' + droppedFPS/(1000 * currentDecoded / currentPeriod));
- if (currentDropped > hls.config.fpsDroppedMonitoringThreshold * currentDecoded) {
- var currentLevel = hls.currentLevel;
- logger["b" /* logger */].warn('drop FPS ratio greater than max allowed value for currentLevel: ' + currentLevel);
- if (currentLevel > 0 && (hls.autoLevelCapping === -1 || hls.autoLevelCapping >= currentLevel)) {
- currentLevel = currentLevel - 1;
- hls.trigger(events["a" /* default */].FPS_DROP_LEVEL_CAPPING, { level: currentLevel, droppedLevel: hls.currentLevel });
- hls.autoLevelCapping = currentLevel;
- hls.streamController.nextLevelSwitch();
- }
- }
- }
- }
- this.lastTime = currentTime;
- this.lastDroppedFrames = droppedFrames;
- this.lastDecodedFrames = decodedFrames;
- }
- };
-
- FPSController.prototype.checkFPSInterval = function checkFPSInterval() {
- var video = this.video;
- if (video) {
- if (this.isVideoPlaybackQualityAvailable) {
- var videoPlaybackQuality = video.getVideoPlaybackQuality();
- this.checkFPS(video, videoPlaybackQuality.totalVideoFrames, videoPlaybackQuality.droppedVideoFrames);
- } else {
- this.checkFPS(video, video.webkitDecodedFrameCount, video.webkitDroppedFrameCount);
- }
- }
- };
-
- return FPSController;
-}(event_handler);
-
-/* harmony default export */ var fps_controller = (fps_controller_FPSController);
-// CONCATENATED MODULE: ./src/utils/xhr-loader.js
-function xhr_loader__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * XHR based logger
-*/
-
-
-
-var xhr_loader__window = window,
- xhr_loader_performance = xhr_loader__window.performance,
- XMLHttpRequest = xhr_loader__window.XMLHttpRequest;
-
-var xhr_loader_XhrLoader = function () {
- function XhrLoader(config) {
- xhr_loader__classCallCheck(this, XhrLoader);
-
- if (config && config.xhrSetup) {
- this.xhrSetup = config.xhrSetup;
- }
- }
-
- XhrLoader.prototype.destroy = function destroy() {
- this.abort();
- this.loader = null;
- };
-
- XhrLoader.prototype.abort = function abort() {
- var loader = this.loader;
- if (loader && loader.readyState !== 4) {
- this.stats.aborted = true;
- loader.abort();
- }
-
- window.clearTimeout(this.requestTimeout);
- this.requestTimeout = null;
- window.clearTimeout(this.retryTimeout);
- this.retryTimeout = null;
- };
-
- XhrLoader.prototype.load = function load(context, config, callbacks) {
- this.context = context;
- this.config = config;
- this.callbacks = callbacks;
- this.stats = { trequest: xhr_loader_performance.now(), retry: 0 };
- this.retryDelay = config.retryDelay;
- this.loadInternal();
- };
-
- XhrLoader.prototype.loadInternal = function loadInternal() {
- var xhr = void 0,
- context = this.context;
- xhr = this.loader = new XMLHttpRequest();
-
- var stats = this.stats;
- stats.tfirst = 0;
- stats.loaded = 0;
- var xhrSetup = this.xhrSetup;
-
- try {
- if (xhrSetup) {
- try {
- xhrSetup(xhr, context.url);
- } catch (e) {
- // fix xhrSetup: (xhr, url) => {xhr.setRequestHeader("Content-Language", "test");}
- // not working, as xhr.setRequestHeader expects xhr.readyState === OPEN
- xhr.open('GET', context.url, true);
- xhrSetup(xhr, context.url);
- }
- }
- if (!xhr.readyState) {
- xhr.open('GET', context.url, true);
- }
- } catch (e) {
- // IE11 throws an exception on xhr.open if attempting to access an HTTP resource over HTTPS
- this.callbacks.onError({ code: xhr.status, text: e.message }, context, xhr);
- return;
- }
-
- if (context.rangeEnd) {
- xhr.setRequestHeader('Range', 'bytes=' + context.rangeStart + '-' + (context.rangeEnd - 1));
- }
-
- xhr.onreadystatechange = this.readystatechange.bind(this);
- xhr.onprogress = this.loadprogress.bind(this);
- xhr.responseType = context.responseType;
-
- // setup timeout before we perform request
- this.requestTimeout = window.setTimeout(this.loadtimeout.bind(this), this.config.timeout);
- xhr.send();
- };
-
- XhrLoader.prototype.readystatechange = function readystatechange(event) {
- var xhr = event.currentTarget,
- readyState = xhr.readyState,
- stats = this.stats,
- context = this.context,
- config = this.config;
-
- // don't proceed if xhr has been aborted
- if (stats.aborted) {
- return;
- }
-
- // >= HEADERS_RECEIVED
- if (readyState >= 2) {
- // clear xhr timeout and rearm it if readyState less than 4
- window.clearTimeout(this.requestTimeout);
- if (stats.tfirst === 0) {
- stats.tfirst = Math.max(xhr_loader_performance.now(), stats.trequest);
- }
-
- if (readyState === 4) {
- var status = xhr.status;
- // http status between 200 to 299 are all successful
- if (status >= 200 && status < 300) {
- stats.tload = Math.max(stats.tfirst, xhr_loader_performance.now());
- var data = void 0,
- len = void 0;
- if (context.responseType === 'arraybuffer') {
- data = xhr.response;
- len = data.byteLength;
- } else {
- data = xhr.responseText;
- len = data.length;
- }
- stats.loaded = stats.total = len;
- var response = { url: xhr.responseURL, data: data };
- this.callbacks.onSuccess(response, stats, context, xhr);
- } else {
- // if max nb of retries reached or if http status between 400 and 499 (such error cannot be recovered, retrying is useless), return error
- if (stats.retry >= config.maxRetry || status >= 400 && status < 499) {
- logger["b" /* logger */].error(status + ' while loading ' + context.url);
- this.callbacks.onError({ code: status, text: xhr.statusText }, context, xhr);
- } else {
- // retry
- logger["b" /* logger */].warn(status + ' while loading ' + context.url + ', retrying in ' + this.retryDelay + '...');
- // aborts and resets internal state
- this.destroy();
- // schedule retry
- this.retryTimeout = window.setTimeout(this.loadInternal.bind(this), this.retryDelay);
- // set exponential backoff
- this.retryDelay = Math.min(2 * this.retryDelay, config.maxRetryDelay);
- stats.retry++;
- }
- }
- } else {
- // readyState >= 2 AND readyState !==4 (readyState = HEADERS_RECEIVED || LOADING) rearm timeout as xhr not finished yet
- this.requestTimeout = window.setTimeout(this.loadtimeout.bind(this), config.timeout);
- }
- }
- };
-
- XhrLoader.prototype.loadtimeout = function loadtimeout() {
- logger["b" /* logger */].warn('timeout while loading ' + this.context.url);
- this.callbacks.onTimeout(this.stats, this.context, null);
- };
-
- XhrLoader.prototype.loadprogress = function loadprogress(event) {
- var xhr = event.currentTarget,
- stats = this.stats;
-
- stats.loaded = event.loaded;
- if (event.lengthComputable) {
- stats.total = event.total;
- }
-
- var onProgress = this.callbacks.onProgress;
- if (onProgress) {
- // third arg is to provide on progress data
- onProgress(stats, this.context, null, xhr);
- }
- };
-
- return XhrLoader;
-}();
-
-/* harmony default export */ var xhr_loader = (xhr_loader_XhrLoader);
-// CONCATENATED MODULE: ./src/controller/audio-track-controller.js
-var audio_track_controller__createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
-
-function audio_track_controller__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function audio_track_controller__possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function audio_track_controller__inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-
-
-
-
-
-/**
- * @class AudioTrackController
- * @implements {EventHandler}
- *
- * Handles main manifest and audio-track metadata loaded,
- * owns and exposes the selectable audio-tracks data-models.
- *
- * Exposes internal interface to select available audio-tracks.
- *
- * Handles errors on loading audio-track playlists. Manages fallback mechanism
- * with redundants tracks (group-IDs).
- *
- * Handles level-loading and group-ID switches for video (fallback on video levels),
- * and eventually adapts the audio-track group-ID to match.
- *
- * @fires AUDIO_TRACK_LOADING
- * @fires AUDIO_TRACK_SWITCHING
- * @fires AUDIO_TRACKS_UPDATED
- * @fires ERROR
- *
- */
-
-var audio_track_controller_AudioTrackController = function (_TaskLoop) {
- audio_track_controller__inherits(AudioTrackController, _TaskLoop);
-
- function AudioTrackController(hls) {
- audio_track_controller__classCallCheck(this, AudioTrackController);
-
- /**
- * @private
- * Currently selected index in `tracks`
- * @member {number} trackId
- */
- var _this = audio_track_controller__possibleConstructorReturn(this, _TaskLoop.call(this, hls, events["a" /* default */].MANIFEST_LOADING, events["a" /* default */].MANIFEST_PARSED, events["a" /* default */].AUDIO_TRACK_LOADED, events["a" /* default */].AUDIO_TRACK_SWITCHED, events["a" /* default */].LEVEL_LOADED, events["a" /* default */].ERROR));
-
- _this.trackId = -1;
-
- /**
- * @public
- * All tracks available
- * @member {AudioTrack[]}
- */
- _this.tracks = [];
-
- /**
- * @public
- * List of blacklisted audio track IDs (that have caused failure)
- * @member {number[]}
- */
- _this.trackIdBlacklist = Object.create(null);
-
- /**
- * @public
- * The currently running group ID for audio
- * (we grab this on manifest-parsed and new level-loaded)
- * @member {string}
- */
- _this.audioGroupId = null;
- return _this;
- }
-
- /**
- * Reset audio tracks on new manifest loading.
- */
-
-
- AudioTrackController.prototype.onManifestLoading = function onManifestLoading() {
- this.tracks = [];
- this.trackId = -1;
- };
-
- /**
- * Store tracks data from manifest parsed data.
- *
- * Trigger AUDIO_TRACKS_UPDATED event.
- *
- * @param {*} data
- */
-
-
- AudioTrackController.prototype.onManifestParsed = function onManifestParsed(data) {
- var tracks = this.tracks = data.audioTracks || [];
- this.hls.trigger(events["a" /* default */].AUDIO_TRACKS_UPDATED, { audioTracks: tracks });
- };
-
- /**
- * Store track details of loaded track in our data-model.
- *
- * Set-up metadata update interval task for live-mode streams.
- *
- * @param {} data
- */
-
-
- AudioTrackController.prototype.onAudioTrackLoaded = function onAudioTrackLoaded(data) {
- if (data.id >= this.tracks.length) {
- logger["b" /* logger */].warn('Invalid audio track id:', data.id);
- return;
- }
-
- logger["b" /* logger */].log('audioTrack ' + data.id + ' loaded');
-
- this.tracks[data.id].details = data.details;
-
- // check if current playlist is a live playlist
- // and if we have already our reload interval setup
- if (data.details.live && !this.hasInterval()) {
- // if live playlist we will have to reload it periodically
- // set reload period to playlist target duration
- var updatePeriodMs = data.details.targetduration * 1000;
- this.setInterval(updatePeriodMs);
- }
-
- if (!data.details.live && this.hasInterval()) {
- // playlist is not live and timer is scheduled: cancel it
- this.clearInterval();
- }
- };
-
- /**
- * Update the internal group ID to any audio-track we may have set manually
- * or because of a failure-handling fallback.
- *
- * Quality-levels should update to that group ID in this case.
- *
- * @param {*} data
- */
-
-
- AudioTrackController.prototype.onAudioTrackSwitched = function onAudioTrackSwitched(data) {
- var audioGroupId = this.tracks[data.id].groupId;
- if (audioGroupId && this.audioGroupId !== audioGroupId) {
- this.audioGroupId = audioGroupId;
- }
- };
-
- /**
- * When a level gets loaded, if it has redundant audioGroupIds (in the same ordinality as it's redundant URLs)
- * we are setting our audio-group ID internally to the one set, if it is different from the group ID currently set.
- *
- * If group-ID got update, we re-select the appropriate audio-track with this group-ID matching the currently
- * selected one (based on NAME property).
- *
- * @param {*} data
- */
-
-
- AudioTrackController.prototype.onLevelLoaded = function onLevelLoaded(data) {
- // FIXME: crashes because currentLevel is undefined
- // const levelInfo = this.hls.levels[this.hls.currentLevel];
-
- var levelInfo = this.hls.levels[data.level];
-
- if (!levelInfo.audioGroupIds) {
- return;
- }
-
- var audioGroupId = levelInfo.audioGroupIds[levelInfo.urlId];
- if (this.audioGroupId !== audioGroupId) {
- this.audioGroupId = audioGroupId;
- this._selectInitialAudioTrack();
- }
- };
-
- /**
- * Handle network errors loading audio track manifests
- * and also pausing on any netwok errors.
- *
- * @param {ErrorEventData} data
- */
-
-
- AudioTrackController.prototype.onError = function onError(data) {
- // Only handle network errors
- if (data.type !== errors["b" /* ErrorTypes */].NETWORK_ERROR) {
- return;
- }
-
- // If fatal network error, cancel update task
- if (data.fatal) {
- this.clearInterval();
- }
-
- // If not an audio-track loading error don't handle further
- if (data.details !== errors["a" /* ErrorDetails */].AUDIO_TRACK_LOAD_ERROR) {
- return;
- }
-
- logger["b" /* logger */].warn('Network failure on audio-track id:', data.context.id);
- this._handleLoadError();
- };
-
- /**
- * @type {AudioTrack[]} Audio-track list we own
- */
-
-
- /**
- * @override
- */
- AudioTrackController.prototype.doTick = function doTick() {
- this._updateTrack(this.trackId);
- };
-
- /**
- * Select initial track
- * @private
- */
-
-
- AudioTrackController.prototype._selectInitialAudioTrack = function _selectInitialAudioTrack() {
- var _this2 = this;
-
- var tracks = this.tracks;
- if (!tracks.length) {
- return;
- }
-
- var currentAudioTrack = this.tracks[this.trackId];
-
- var name = null;
- if (currentAudioTrack) {
- name = currentAudioTrack.name;
- }
-
- // Pre-select default tracks if there are any
- var defaultTracks = tracks.filter(function (track) {
- return track.default;
- });
- if (defaultTracks.length) {
- tracks = defaultTracks;
- } else {
- logger["b" /* logger */].warn('No default audio tracks defined');
- }
-
- var trackFound = false;
-
- var traverseTracks = function traverseTracks() {
- // Select track with right group ID
- tracks.forEach(function (track) {
- if (trackFound) {
- return;
- }
- // We need to match the (pre-)selected group ID
- // and the NAME of the current track.
- if ((!_this2.audioGroupId || track.groupId === _this2.audioGroupId) && (!name || name === track.name)) {
- // If there was a previous track try to stay with the same `NAME`.
- // It should be unique across tracks of same group, and consistent through redundant track groups.
- _this2.audioTrack = track.id;
- trackFound = true;
- }
- });
- };
-
- traverseTracks();
-
- if (!trackFound) {
- name = null;
- traverseTracks();
- }
-
- if (!trackFound) {
- logger["b" /* logger */].error('No track found for running audio group-ID: ' + this.audioGroupId);
-
- this.hls.trigger(events["a" /* default */].ERROR, {
- type: errors["b" /* ErrorTypes */].MEDIA_ERROR,
- details: errors["a" /* ErrorDetails */].AUDIO_TRACK_LOAD_ERROR,
- fatal: true
- });
- }
- };
-
- /**
- * @private
- * @param {AudioTrack} audioTrack
- * @returns {boolean}
- */
-
-
- AudioTrackController.prototype._needsTrackLoading = function _needsTrackLoading(audioTrack) {
- var details = audioTrack.details;
-
-
- if (!details) {
- return true;
- } else if (details.live) {
- return true;
- }
- };
-
- /**
- * @private
- * @param {AudioTrack} audioTrack
- */
-
-
- AudioTrackController.prototype._loadTrackDetailsIfNeeded = function _loadTrackDetailsIfNeeded(audioTrack) {
- if (this._needsTrackLoading(audioTrack)) {
- var url = audioTrack.url,
- id = audioTrack.id;
- // track not retrieved yet, or live playlist we need to (re)load it
-
- logger["b" /* logger */].log('loading audio-track playlist for id: ' + id);
- this.hls.trigger(events["a" /* default */].AUDIO_TRACK_LOADING, { url: url, id: id });
- }
- };
-
- /**
- * @private
- * @param {number} newId
- */
-
-
- AudioTrackController.prototype._updateTrack = function _updateTrack(newId) {
- // check if level idx is valid
- if (newId < 0 || newId >= this.tracks.length) {
- return;
- }
-
- // stopping live reloading timer if any
- this.clearInterval();
- this.trackId = newId;
- logger["b" /* logger */].log('trying to update audio-track ' + newId);
- var audioTrack = this.tracks[newId];
- this._loadTrackDetailsIfNeeded(audioTrack);
- };
-
- /**
- * @private
- */
-
-
- AudioTrackController.prototype._handleLoadError = function _handleLoadError() {
- // First, let's black list current track id
- this.trackIdBlacklist[this.trackId] = true;
-
- // Let's try to fall back on a functional audio-track with the same group ID
- var previousId = this.trackId;
- var _tracks$previousId = this.tracks[previousId],
- name = _tracks$previousId.name,
- language = _tracks$previousId.language,
- groupId = _tracks$previousId.groupId;
-
-
- logger["b" /* logger */].warn('Loading failed on audio track id: ' + previousId + ', group-id: ' + groupId + ', name/language: "' + name + '" / "' + language + '"');
-
- // Find a non-blacklisted track ID with the same NAME
- // At least a track that is not blacklisted, thus on another group-ID.
- var newId = previousId;
- for (var i = 0; i < this.tracks.length; i++) {
- if (this.trackIdBlacklist[i]) {
- continue;
- }
- var newTrack = this.tracks[i];
- if (newTrack.name === name) {
- newId = i;
- break;
- }
- }
-
- if (newId === previousId) {
- logger["b" /* logger */].warn('No fallback audio-track found for name/language: "' + name + '" / "' + language + '"');
- return;
- }
-
- logger["b" /* logger */].log('Attempting audio-track fallback id:', newId, 'group-id:', this.tracks[newId].groupId);
-
- this.audioTrack = newId;
- };
-
- audio_track_controller__createClass(AudioTrackController, [{
- key: 'audioTracks',
- get: function get() {
- return this.tracks;
- }
-
- /**
- * @type {number} Index into audio-tracks list of currently selected track.
- */
-
- }, {
- key: 'audioTrack',
- get: function get() {
- return this.trackId;
- }
-
- /**
- * Select current track by index
- */
- ,
- set: function set(newId) {
- // noop on same audio track id as already set
- if (this.trackId === newId && this.tracks[this.trackId].details) {
- logger["b" /* logger */].debug('Same id as current audio-track passed, and track details available -> no-op');
- return;
- }
-
- // check if level idx is valid
- if (newId < 0 || newId >= this.tracks.length) {
- logger["b" /* logger */].warn('Invalid id passed to audio-track controller');
- return;
- }
-
- var audioTrack = this.tracks[newId];
-
- logger["b" /* logger */].log('Now switching to audio-track index ' + newId);
-
- // stopping live reloading timer if any
- this.clearInterval();
- this.trackId = newId;
-
- var url = audioTrack.url,
- type = audioTrack.type,
- id = audioTrack.id;
-
- this.hls.trigger(events["a" /* default */].AUDIO_TRACK_SWITCHING, { id: id, type: type, url: url });
- this._loadTrackDetailsIfNeeded(audioTrack);
- }
- }]);
-
- return AudioTrackController;
-}(task_loop);
-
-/* harmony default export */ var audio_track_controller = (audio_track_controller_AudioTrackController);
-// CONCATENATED MODULE: ./src/controller/audio-stream-controller.js
-var audio_stream_controller__createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
-
-function audio_stream_controller__classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function audio_stream_controller__possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
-function audio_stream_controller__inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-/*
- * Audio Stream Controller
-*/
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-var audio_stream_controller__window = window,
- audio_stream_controller_performance = audio_stream_controller__window.performance;
-
-
-var audio_stream_controller_State = {
- STOPPED: 'STOPPED',
- STARTING: 'STARTING',
- IDLE: 'IDLE',
- PAUSED: 'PAUSED',
- KEY_LOADING: 'KEY_LOADING',
- FRAG_LOADING: 'FRAG_LOADING',
- FRAG_LOADING_WAITING_RETRY: 'FRAG_LOADING_WAITING_RETRY',
- WAITING_TRACK: 'WAITING_TRACK',
- PARSING: 'PARSING',
- PARSED: 'PARSED',
- BUFFER_FLUSHING: 'BUFFER_FLUSHING',
- ENDED: 'ENDED',
- ERROR: 'ERROR',
- WAITING_INIT_PTS: 'WAITING_INIT_PTS'
-};
-
-var audio_stream_controller_AudioStreamController = function (_TaskLoop) {
- audio_stream_controller__inherits(AudioStreamController, _TaskLoop);
-
- function AudioStreamController(hls, fragmentTracker) {
- audio_stream_controller__classCallCheck(this, AudioStreamController);
-
- var _this = audio_stream_controller__possibleConstructorReturn(this, _TaskLoop.call(this, hls, events["a" /* default */].MEDIA_ATTACHED, events["a" /* default */].MEDIA_DETACHING, events["a" /* default */].AUDIO_TRACKS_UPDATED, events["a" /* default */].AUDIO_TRACK_SWITCHING, events["a" /* default */].AUDIO_TRACK_LOADED, events["a" /* default */].KEY_LOADED, events["a" /* default */].FRAG_LOADED, events["a" /* default */].FRAG_PARSING_INIT_SEGMENT, events["a" /* default */].FRAG_PARSING_DATA, events["a" /* default */].FRAG_PARSED, events["a" /* default */].ERROR, events["a" /* default */].BUFFER_RESET, events["a" /* default */].BUFFER_CREATED, events["a" /* default */].BUFFER_APPENDED, events["a" /* default */].BUFFER_FLUSHED, events["a" /* default */].INIT_PTS_FOUND));
-
- _this.fragmentTracker = fragmentTracker;
- _this.config = hls.config;
- _this.audioCodecSwap = false;
- _this._state = audio_stream_controller_State.STOPPED;
- _this.initPTS = [];
- _this.waitingFragment = null;
- _this.videoTrackCC = null;
- return _this;
- }
-
- AudioStreamController.prototype.onHandlerDestroying = function onHandlerDestroying() {
- this.stopLoad();
- _TaskLoop.prototype.onHandlerDestroying.call(this);
- };
-
- AudioStreamController.prototype.onHandlerDestroyed = function onHandlerDestroyed() {
- this.state = audio_stream_controller_State.STOPPED;
- this.fragmentTracker = null;
- _TaskLoop.prototype.onHandlerDestroyed.call(this);
- };
-
- // Signal that video PTS was found
-
-
- AudioStreamController.prototype.onInitPtsFound = function onInitPtsFound(data) {
- var demuxerId = data.id,
- cc = data.frag.cc,
- initPTS = data.initPTS;
- if (demuxerId === 'main') {
- // Always update the new INIT PTS
- // Can change due level switch
- this.initPTS[cc] = initPTS;
- this.videoTrackCC = cc;
- logger["b" /* logger */].log('InitPTS for cc: ' + cc + ' found from video track: ' + initPTS);
-
- // If we are waiting we need to demux/remux the waiting frag
- // With the new initPTS
- if (this.state === audio_stream_controller_State.WAITING_INIT_PTS) {
- this.tick();
- }
- }
- };
-
- AudioStreamController.prototype.startLoad = function startLoad(startPosition) {
- if (this.tracks) {
- var lastCurrentTime = this.lastCurrentTime;
- this.stopLoad();
- this.setInterval(100);
- this.fragLoadError = 0;
- if (lastCurrentTime > 0 && startPosition === -1) {
- logger["b" /* logger */].log('audio:override startPosition with lastCurrentTime @' + lastCurrentTime.toFixed(3));
- this.state = audio_stream_controller_State.IDLE;
- } else {
- this.lastCurrentTime = this.startPosition ? this.startPosition : startPosition;
- this.state = audio_stream_controller_State.STARTING;
- }
- this.nextLoadPosition = this.startPosition = this.lastCurrentTime;
- this.tick();
- } else {
- this.startPosition = startPosition;
- this.state = audio_stream_controller_State.STOPPED;
- }
- };
-
- AudioStreamController.prototype.stopLoad = function stopLoad() {
- var frag = this.fragCurrent;
- if (frag) {
- if (frag.loader) {
- frag.loader.abort();
- }
-
- this.fragmentTracker.removeFragment(frag);
- this.fragCurrent = null;
- }
- this.fragPrevious = null;
- if (this.demuxer) {
- this.demuxer.destroy();
- this.demuxer = null;
- }
- this.state = audio_stream_controller_State.STOPPED;
- };
-
- AudioStreamController.prototype.doTick = function doTick() {
- var pos = void 0,
- track = void 0,
- trackDetails = void 0,
- hls = this.hls,
- config = hls.config;
- // logger.log('audioStream:' + this.state);
- switch (this.state) {
- case audio_stream_controller_State.ERROR:
- // don't do anything in error state to avoid breaking further ...
- case audio_stream_controller_State.PAUSED:
- // don't do anything in paused state either ...
- case audio_stream_controller_State.BUFFER_FLUSHING:
- break;
- case audio_stream_controller_State.STARTING:
- this.state = audio_stream_controller_State.WAITING_TRACK;
- this.loadedmetadata = false;
- break;
- case audio_stream_controller_State.IDLE:
- var tracks = this.tracks;
- // audio tracks not received => exit loop
- if (!tracks) {
- break;
- }
-
- // if video not attached AND
- // start fragment already requested OR start frag prefetch disable
- // exit loop
- // => if media not attached but start frag prefetch is enabled and start frag not requested yet, we will not exit loop
- if (!this.media && (this.startFragRequested || !config.startFragPrefetch)) {
- break;
- }
-
- // determine next candidate fragment to be loaded, based on current position and
- // end of buffer position
- // if we have not yet loaded any fragment, start loading from start position
- if (this.loadedmetadata) {
- pos = this.media.currentTime;
- } else {
- pos = this.nextLoadPosition;
- if (pos === undefined) {
- break;
- }
- }
- var media = this.mediaBuffer ? this.mediaBuffer : this.media,
- videoBuffer = this.videoBuffer ? this.videoBuffer : this.media,
- bufferInfo = BufferHelper.bufferInfo(media, pos, config.maxBufferHole),
- mainBufferInfo = BufferHelper.bufferInfo(videoBuffer, pos, config.maxBufferHole),
- bufferLen = bufferInfo.len,
- bufferEnd = bufferInfo.end,
- fragPrevious = this.fragPrevious,
-
- // ensure we buffer at least config.maxBufferLength (default 30s) or config.maxMaxBufferLength (default: 600s)
- // whichever is smaller.
- // once we reach that threshold, don't buffer more than video (mainBufferInfo.len)
- maxConfigBuffer = Math.min(config.maxBufferLength, config.maxMaxBufferLength),
- maxBufLen = Math.max(maxConfigBuffer, mainBufferInfo.len),
- audioSwitch = this.audioSwitch,
- trackId = this.trackId;
-
- // if buffer length is less than maxBufLen try to load a new fragment
- if ((bufferLen < maxBufLen || audioSwitch) && trackId < tracks.length) {
- trackDetails = tracks[trackId].details;
- // if track info not retrieved yet, switch state and wait for track retrieval
- if (typeof trackDetails === 'undefined') {
- this.state = audio_stream_controller_State.WAITING_TRACK;
- break;
- }
-
- // check if we need to finalize media stream
- // we just got done loading the final fragment and there is no other buffered range after ...
- // rationale is that in case there are any buffered ranges after, it means that there are unbuffered portion in between
- // so we should not switch to ENDED in that case, to be able to buffer them
- if (!audioSwitch && !trackDetails.live && fragPrevious && fragPrevious.sn === trackDetails.endSN && !bufferInfo.nextStart) {
- // if we are not seeking or if we are seeking but everything (almost) til the end is buffered, let's signal eos
- // we don't compare exactly media.duration === bufferInfo.end as there could be some subtle media duration difference when switching
- // between different renditions. using half frag duration should help cope with these cases.
- if (!this.media.seeking || this.media.duration - bufferEnd < fragPrevious.duration / 2) {
- // Finalize the media stream
- this.hls.trigger(events["a" /* default */].BUFFER_EOS, { type: 'audio' });
- this.state = audio_stream_controller_State.ENDED;
- break;
- }
- }
-
- // find fragment index, contiguous with end of buffer position
- var fragments = trackDetails.fragments,
- fragLen = fragments.length,
- start = fragments[0].start,
- end = fragments[fragLen - 1].start + fragments[fragLen - 1].duration,
- frag = void 0;
-
- // When switching audio track, reload audio as close as possible to currentTime
- if (audioSwitch) {
- if (trackDetails.live && !trackDetails.PTSKnown) {
- logger["b" /* logger */].log('switching audiotrack, live stream, unknown PTS,load first fragment');
- bufferEnd = 0;
- } else {
- bufferEnd = pos;
- // if currentTime (pos) is less than alt audio playlist start time, it means that alt audio is ahead of currentTime
- if (trackDetails.PTSKnown && pos < start) {
- // if everything is buffered from pos to start or if audio buffer upfront, let's seek to start
- if (bufferInfo.end > start || bufferInfo.nextStart) {
- logger["b" /* logger */].log('alt audio track ahead of main track, seek to start of alt audio track');
- this.media.currentTime = start + 0.05;
- } else {
- return;
- }
- }
- }
- }
- if (trackDetails.initSegment && !trackDetails.initSegment.data) {
- frag = trackDetails.initSegment;
- } // eslint-disable-line brace-style
- // if bufferEnd before start of playlist, load first fragment
- else if (bufferEnd <= start) {
- frag = fragments[0];
- if (this.videoTrackCC !== null && frag.cc !== this.videoTrackCC) {
- // Ensure we find a fragment which matches the continuity of the video track
- frag = findFragWithCC(fragments, this.videoTrackCC);
- }
- if (trackDetails.live && frag.loadIdx && frag.loadIdx === this.fragLoadIdx) {
- // we just loaded this first fragment, and we are still lagging behind the start of the live playlist
- // let's force seek to start
- var nextBuffered = bufferInfo.nextStart ? bufferInfo.nextStart : start;
- logger["b" /* logger */].log('no alt audio available @currentTime:' + this.media.currentTime + ', seeking @' + (nextBuffered + 0.05));
- this.media.currentTime = nextBuffered + 0.05;
- return;
- }
- } else {
- var foundFrag = void 0;
- var maxFragLookUpTolerance = config.maxFragLookUpTolerance;
- var fragNext = fragPrevious ? fragments[fragPrevious.sn - fragments[0].sn + 1] : undefined;
- var fragmentWithinToleranceTest = function fragmentWithinToleranceTest(candidate) {
- // offset should be within fragment boundary - config.maxFragLookUpTolerance
- // this is to cope with situations like
- // bufferEnd = 9.991
- // frag[Ø] : [0,10]
- // frag[1] : [10,20]
- // bufferEnd is within frag[0] range ... although what we are expecting is to return frag[1] here
- // frag start frag start+duration
- // |-----------------------------|
- // <---> <--->
- // ...--------><-----------------------------><---------....
- // previous frag matching fragment next frag
- // return -1 return 0 return 1
- // logger.log(`level/sn/start/end/bufEnd:${level}/${candidate.sn}/${candidate.start}/${(candidate.start+candidate.duration)}/${bufferEnd}`);
- // Set the lookup tolerance to be small enough to detect the current segment - ensures we don't skip over very small segments
- var candidateLookupTolerance = Math.min(maxFragLookUpTolerance, candidate.duration);
- if (candidate.start + candidate.duration - candidateLookupTolerance <= bufferEnd) {
- return 1;
- } else if (candidate.start - candidateLookupTolerance > bufferEnd && candidate.start) {
- // if maxFragLookUpTolerance will have negative value then don't return -1 for first element
- return -1;
- }
-
- return 0;
- };
-
- if (bufferEnd < end) {
- if (bufferEnd > end - maxFragLookUpTolerance) {
- maxFragLookUpTolerance = 0;
- }
-
- // Prefer the next fragment if it's within tolerance
- if (fragNext && !fragmentWithinToleranceTest(fragNext)) {
- foundFrag = fragNext;
- } else {
- foundFrag = binary_search.search(fragments, fragmentWithinToleranceTest);
- }
- } else {
- // reach end of playlist
- foundFrag = fragments[fragLen - 1];
- }
- if (foundFrag) {
- frag = foundFrag;
- start = foundFrag.start;
- // logger.log('find SN matching with pos:' + bufferEnd + ':' + frag.sn);
- if (fragPrevious && frag.level === fragPrevious.level && frag.sn === fragPrevious.sn) {
- if (frag.sn < trackDetails.endSN) {
- frag = fragments[frag.sn + 1 - trackDetails.startSN];
- logger["b" /* logger */].log('SN just loaded, load next one: ' + frag.sn);
- } else {
- frag = null;
- }
- }
- }
- }
- if (frag) {
- // logger.log(' loading frag ' + i +',pos/bufEnd:' + pos.toFixed(3) + '/' + bufferEnd.toFixed(3));
- if (frag.encrypted) {
- logger["b" /* logger */].log('Loading key for ' + frag.sn + ' of [' + trackDetails.startSN + ' ,' + trackDetails.endSN + '],track ' + trackId);
- this.state = audio_stream_controller_State.KEY_LOADING;
- hls.trigger(events["a" /* default */].KEY_LOADING, { frag: frag });
- } else {
- logger["b" /* logger */].log('Loading ' + frag.sn + ', cc: ' + frag.cc + ' of [' + trackDetails.startSN + ' ,' + trackDetails.endSN + '],track ' + trackId + ', currentTime:' + pos + ',bufferEnd:' + bufferEnd.toFixed(3));
- // only load if fragment is not loaded or if in audio switch
- // we force a frag loading in audio switch as fragment tracker might not have evicted previous frags in case of quick audio switch
- if (audioSwitch || this.fragmentTracker.getState(frag) === FragmentState.NOT_LOADED) {
- this.fragCurrent = frag;
- this.startFragRequested = true;
- if (!isNaN(frag.sn)) {
- this.nextLoadPosition = frag.start + frag.duration;
- }
-
- hls.trigger(events["a" /* default */].FRAG_LOADING, { frag: frag });
- this.state = audio_stream_controller_State.FRAG_LOADING;
- }
- }
- }
- }
- break;
- case audio_stream_controller_State.WAITING_TRACK:
- track = this.tracks[this.trackId];
- // check if playlist is already loaded
- if (track && track.details) {
- this.state = audio_stream_controller_State.IDLE;
- }
-
- break;
- case audio_stream_controller_State.FRAG_LOADING_WAITING_RETRY:
- var now = audio_stream_controller_performance.now();
- var retryDate = this.retryDate;
- media = this.media;
- var isSeeking = media && media.seeking;
- // if current time is gt than retryDate, or if media seeking let's switch to IDLE state to retry loading
- if (!retryDate || now >= retryDate || isSeeking) {
- logger["b" /* logger */].log('audioStreamController: retryDate reached, switch back to IDLE state');
- this.state = audio_stream_controller_State.IDLE;
- }
- break;
- case audio_stream_controller_State.WAITING_INIT_PTS:
- var videoTrackCC = this.videoTrackCC;
- if (this.initPTS[videoTrackCC] === undefined) {
- break;
- }
-
- // Ensure we don't get stuck in the WAITING_INIT_PTS state if the waiting frag CC doesn't match any initPTS
- var waitingFrag = this.waitingFragment;
- if (waitingFrag) {
- var waitingFragCC = waitingFrag.frag.cc;
- if (videoTrackCC !== waitingFragCC) {
- track = this.tracks[this.trackId];
- if (track.details && track.details.live) {
- logger["b" /* logger */].warn('Waiting fragment CC (' + waitingFragCC + ') does not match video track CC (' + videoTrackCC + ')');
- this.waitingFragment = null;
- this.state = audio_stream_controller_State.IDLE;
- }
- } else {
- this.state = audio_stream_controller_State.FRAG_LOADING;
- this.onFragLoaded(this.waitingFragment);
- this.waitingFragment = null;
- }
- } else {
- this.state = audio_stream_controller_State.IDLE;
- }
-
- break;
- case audio_stream_controller_State.STOPPED:
- case audio_stream_controller_State.FRAG_LOADING:
- case audio_stream_controller_State.PARSING:
- case audio_stream_controller_State.PARSED:
- case audio_stream_controller_State.ENDED:
- break;
- default:
- break;
- }
- };
-
- AudioStreamController.prototype.onMediaAttached = function onMediaAttached(data) {
- var media = this.media = this.mediaBuffer = data.media;
- this.onvseeking = this.onMediaSeeking.bind(this);
- this.onvended = this.onMediaEnded.bind(this);
- media.addEventListener('seeking', this.onvseeking);
- media.addEventListener('ended', this.onvended);
- var config = this.config;
- if (this.tracks && config.autoStartLoad) {
- this.startLoad(config.startPosition);
- }
- };
-
- AudioStreamController.prototype.onMediaDetaching = function onMediaDetaching() {
- var media = this.media;
- if (media && media.ended) {
- logger["b" /* logger */].log('MSE detaching and video ended, reset startPosition');
- this.startPosition = this.lastCurrentTime = 0;
- }
-
- // remove video listeners
- if (media) {
- media.removeEventListener('seeking', this.onvseeking);
- media.removeEventListener('ended', this.onvended);
- this.onvseeking = this.onvseeked = this.onvended = null;
- }
- this.media = this.mediaBuffer = this.videoBuffer = null;
- this.loadedmetadata = false;
- this.stopLoad();
- };
-
- AudioStreamController.prototype.onMediaSeeking = function onMediaSeeking() {
- if (this.state === audio_stream_controller_State.ENDED) {
- // switch to IDLE state to check for potential new fragment
- this.state = audio_stream_controller_State.IDLE;
- }
- if (this.media) {
- this.lastCurrentTime = this.media.currentTime;
- }
-
- // tick to speed up processing
- this.tick();
- };
-
- AudioStreamController.prototype.onMediaEnded = function onMediaEnded() {
- // reset startPosition and lastCurrentTime to restart playback @ stream beginning
- this.startPosition = this.lastCurrentTime = 0;
- };
-
- AudioStreamController.prototype.onAudioTracksUpdated = function onAudioTracksUpdated(data) {
- logger["b" /* logger */].log('audio tracks updated');
- this.tracks = data.audioTracks;
- };
-
- AudioStreamController.prototype.onAudioTrackSwitching = function onAudioTrackSwitching(data) {
- // if any URL found on new audio track, it is an alternate audio track
- var altAudio = !!data.url;
- this.trackId = data.id;
-
- this.fragCurrent = null;
- this.state = audio_stream_controller_State.PAUSED;
- this.waitingFragment = null;
- // destroy useless demuxer when switching audio to main
- if (!altAudio) {
- if (this.demuxer) {
- this.demuxer.destroy();
- this.demuxer = null;
- }
- } else {
- // switching to audio track, start timer if not already started
- this.setInterval(100);
- }
-
- // should we switch tracks ?
- if (altAudio) {
- this.audioSwitch = true;
- // main audio track are handled by stream-controller, just do something if switching to alt audio track
- this.state = audio_stream_controller_State.IDLE;
- }
- this.tick();
- };
-
- AudioStreamController.prototype.onAudioTrackLoaded = function onAudioTrackLoaded(data) {
- var newDetails = data.details,
- trackId = data.id,
- track = this.tracks[trackId],
- duration = newDetails.totalduration,
- sliding = 0;
-
- logger["b" /* logger */].log('track ' + trackId + ' loaded [' + newDetails.startSN + ',' + newDetails.endSN + '],duration:' + duration);
-
- if (newDetails.live) {
- var curDetails = track.details;
- if (curDetails && newDetails.fragments.length > 0) {
- // we already have details for that level, merge them
- mergeDetails(curDetails, newDetails);
- sliding = newDetails.fragments[0].start;
- // TODO
- // this.liveSyncPosition = this.computeLivePosition(sliding, curDetails);
- if (newDetails.PTSKnown) {
- logger["b" /* logger */].log('live audio playlist sliding:' + sliding.toFixed(3));
- } else {
- logger["b" /* logger */].log('live audio playlist - outdated PTS, unknown sliding');
- }
- } else {
- newDetails.PTSKnown = false;
- logger["b" /* logger */].log('live audio playlist - first load, unknown sliding');
- }
- } else {
- newDetails.PTSKnown = false;
- }
- track.details = newDetails;
-
- // compute start position
- if (!this.startFragRequested) {
- // compute start position if set to -1. use it straight away if value is defined
- if (this.startPosition === -1) {
- // first, check if start time offset has been set in playlist, if yes, use this value
- var startTimeOffset = newDetails.startTimeOffset;
- if (!isNaN(startTimeOffset)) {
- logger["b" /* logger */].log('start time offset found in playlist, adjust startPosition to ' + startTimeOffset);
- this.startPosition = startTimeOffset;
- } else {
- this.startPosition = 0;
- }
- }
- this.nextLoadPosition = this.startPosition;
- }
- // only switch batck to IDLE state if we were waiting for track to start downloading a new fragment
- if (this.state === audio_stream_controller_State.WAITING_TRACK) {
- this.state = audio_stream_controller_State.IDLE;
- }
-
- // trigger handler right now
- this.tick();
- };
-
- AudioStreamController.prototype.onKeyLoaded = function onKeyLoaded() {
- if (this.state === audio_stream_controller_State.KEY_LOADING) {
- this.state = audio_stream_controller_State.IDLE;
- this.tick();
- }
- };
-
- AudioStreamController.prototype.onFragLoaded = function onFragLoaded(data) {
- var fragCurrent = this.fragCurrent,
- fragLoaded = data.frag;
- if (this.state === audio_stream_controller_State.FRAG_LOADING && fragCurrent && fragLoaded.type === 'audio' && fragLoaded.level === fragCurrent.level && fragLoaded.sn === fragCurrent.sn) {
- var track = this.tracks[this.trackId],
- details = track.details,
- duration = details.totalduration,
- trackId = fragCurrent.level,
- sn = fragCurrent.sn,
- cc = fragCurrent.cc,
- audioCodec = this.config.defaultAudioCodec || track.audioCodec || 'mp4a.40.2',
- stats = this.stats = data.stats;
- if (sn === 'initSegment') {
- this.state = audio_stream_controller_State.IDLE;
-
- stats.tparsed = stats.tbuffered = audio_stream_controller_performance.now();
- details.initSegment.data = data.payload;
- this.hls.trigger(events["a" /* default */].FRAG_BUFFERED, { stats: stats, frag: fragCurrent, id: 'audio' });
- this.tick();
- } else {
- this.state = audio_stream_controller_State.PARSING;
- // transmux the MPEG-TS data to ISO-BMFF segments
- this.appended = false;
- if (!this.demuxer) {
- this.demuxer = new demux_demuxer(this.hls, 'audio');
- }
-
- // Check if we have video initPTS
- // If not we need to wait for it
- var initPTS = this.initPTS[cc];
- var initSegmentData = details.initSegment ? details.initSegment.data : [];
- if (details.initSegment || initPTS !== undefined) {
- this.pendingBuffering = true;
- logger["b" /* logger */].log('Demuxing ' + sn + ' of [' + details.startSN + ' ,' + details.endSN + '],track ' + trackId);
- // time Offset is accurate if level PTS is known, or if playlist is not sliding (not live)
- var accurateTimeOffset = false; // details.PTSKnown || !details.live;
- this.demuxer.push(data.payload, initSegmentData, audioCodec, null, fragCurrent, duration, accurateTimeOffset, initPTS);
- } else {
- logger["b" /* logger */].log('unknown video PTS for continuity counter ' + cc + ', waiting for video PTS before demuxing audio frag ' + sn + ' of [' + details.startSN + ' ,' + details.endSN + '],track ' + trackId);
- this.waitingFragment = data;
- this.state = audio_stream_controller_State.WAITING_INIT_PTS;
- }
- }
- }
- this.fragLoadError = 0;
- };
-
- AudioStreamController.prototype.onFragParsingInitSegment = function onFragParsingInitSegment(data) {
- var fragCurrent = this.fragCurrent;
- var fragNew = data.frag;
- if (fragCurrent && data.id === 'audio' && fragNew.sn === fragCurrent.sn && fragNew.level === fragCurrent.level && this.state === audio_stream_controller_State.PARSING) {
- var tracks = data.tracks,
- track = void 0;
-
- // delete any video track found on audio demuxer
- if (tracks.video) {
- delete tracks.video;
- }
-
- // include levelCodec in audio and video tracks
- track = tracks.audio;
- if (track) {
- track.levelCodec = track.codec;
- track.id = data.id;
- this.hls.trigger(events["a" /* default */].BUFFER_CODECS, tracks);
- logger["b" /* logger */].log('audio track:audio,container:' + track.container + ',codecs[level/parsed]=[' + track.levelCodec + '/' + track.codec + ']');
- var initSegment = track.initSegment;
- if (initSegment) {
- var appendObj = { type: 'audio', data: initSegment, parent: 'audio', content: 'initSegment' };
- if (this.audioSwitch) {
- this.pendingData = [appendObj];
- } else {
- this.appended = true;
- // arm pending Buffering flag before appending a segment
- this.pendingBuffering = true;
- this.hls.trigger(events["a" /* default */].BUFFER_APPENDING, appendObj);
- }
- }
- // trigger handler right now
- this.tick();
- }
- }
- };
-
- AudioStreamController.prototype.onFragParsingData = function onFragParsingData(data) {
- var _this2 = this;
-
- var fragCurrent = this.fragCurrent;
- var fragNew = data.frag;
- if (fragCurrent && data.id === 'audio' && data.type === 'audio' && fragNew.sn === fragCurrent.sn && fragNew.level === fragCurrent.level && this.state === audio_stream_controller_State.PARSING) {
- var trackId = this.trackId,
- track = this.tracks[trackId],
- hls = this.hls;
-
- if (isNaN(data.endPTS)) {
- data.endPTS = data.startPTS + fragCurrent.duration;
- data.endDTS = data.startDTS + fragCurrent.duration;
- }
-
- fragCurrent.addElementaryStream(loader_fragment.ElementaryStreamTypes.AUDIO);
-
- logger["b" /* logger */].log('parsed ' + data.type + ',PTS:[' + data.startPTS.toFixed(3) + ',' + data.endPTS.toFixed(3) + '],DTS:[' + data.startDTS.toFixed(3) + '/' + data.endDTS.toFixed(3) + '],nb:' + data.nb);
- updateFragPTSDTS(track.details, fragCurrent, data.startPTS, data.endPTS);
-
- var audioSwitch = this.audioSwitch,
- media = this.media,
- appendOnBufferFlush = false;
- // Only flush audio from old audio tracks when PTS is known on new audio track
- if (audioSwitch && media) {
- if (media.readyState) {
- var currentTime = media.currentTime;
- logger["b" /* logger */].log('switching audio track : currentTime:' + currentTime);
- if (currentTime >= data.startPTS) {
- logger["b" /* logger */].log('switching audio track : flushing all audio');
- this.state = audio_stream_controller_State.BUFFER_FLUSHING;
- hls.trigger(events["a" /* default */].BUFFER_FLUSHING, { startOffset: 0, endOffset: Number.POSITIVE_INFINITY, type: 'audio' });
- appendOnBufferFlush = true;
- // Lets announce that the initial audio track switch flush occur
- this.audioSwitch = false;
- hls.trigger(events["a" /* default */].AUDIO_TRACK_SWITCHED, { id: trackId });
- }
- } else {
- // Lets announce that the initial audio track switch flush occur
- this.audioSwitch = false;
- hls.trigger(events["a" /* default */].AUDIO_TRACK_SWITCHED, { id: trackId });
- }
- }
-
- var pendingData = this.pendingData;
-
- if (!pendingData) {
- logger["b" /* logger */].warn('Apparently attempt to enqueue media payload without codec initialization data upfront');
- hls.trigger(events["a" /* default */].ERROR, { type: errors["b" /* ErrorTypes */].MEDIA_ERROR, details: null, fatal: true });
- return;
- }
-
- if (!this.audioSwitch) {
- [data.data1, data.data2].forEach(function (buffer) {
- if (buffer && buffer.length) {
- pendingData.push({ type: data.type, data: buffer, parent: 'audio', content: 'data' });
- }
- });
- if (!appendOnBufferFlush && pendingData.length) {
- pendingData.forEach(function (appendObj) {
- // only append in PARSING state (rationale is that an appending error could happen synchronously on first segment appending)
- // in that case it is useless to append following segments
- if (_this2.state === audio_stream_controller_State.PARSING) {
- // arm pending Buffering flag before appending a segment
- _this2.pendingBuffering = true;
- _this2.hls.trigger(events["a" /* default */].BUFFER_APPENDING, appendObj);
- }
- });
- this.pendingData = [];
- this.appended = true;
- }
- }
- // trigger handler right now
- this.tick();
- }
- };
-
- AudioStreamController.prototype.onFragParsed = function onFragParsed(data) {
- var fragCurrent = this.fragCurrent;
- var fragNew = data.frag;
- if (fragCurrent && data.id === 'audio' && fragNew.sn === fragCurrent.sn && fragNew.level === fragCurrent.level && this.state === audio_stream_controller_State.PARSING) {
- this.stats.tparsed = audio_stream_controller_performance.now();
- this.state = audio_stream_controller_State.PARSED;
- this._checkAppendedParsed();
- }
- };
-
- AudioStreamController.prototype.onBufferReset = function onBufferReset() {
- // reset reference to sourcebuffers
- this.mediaBuffer = this.videoBuffer = null;
- this.loadedmetadata = false;
- };
-
- AudioStreamController.prototype.onBufferCreated = function onBufferCreated(data) {
- var audioTrack = data.tracks.audio;
- if (audioTrack) {
- this.mediaBuffer = audioTrack.buffer;
- this.loadedmetadata = true;
- }
- if (data.tracks.video) {
- this.videoBuffer = data.tracks.video.buffer;
- }
- };
-
- AudioStreamController.prototype.onBufferAppended = function onBufferAppended(data) {
- if (data.parent === 'audio') {
- var state = this.state;
- if (state === audio_stream_controller_State.PARSING || state === audio_stream_controller_State.PARSED) {
- // check if all buffers have been appended
- this.pendingBuffering = data.pending > 0;
- this._checkAppendedParsed();
- }
- }
- };
-
- AudioStreamController.prototype._checkAppendedParsed = function _checkAppendedParsed() {
- // trigger handler right now
- if (this.state === audio_stream_controller_State.PARSED && (!this.appended || !this.pendingBuffering)) {
- var frag = this.fragCurrent,
- stats = this.stats,
- hls = this.hls;
- if (frag) {
- this.fragPrevious = frag;
- stats.tbuffered = audio_stream_controller_performance.now();
- hls.trigger(events["a" /* default */].FRAG_BUFFERED, { stats: stats, frag: frag, id: 'audio' });
- var media = this.mediaBuffer ? this.mediaBuffer : this.media;
- logger["b" /* logger */].log('audio buffered : ' + time_ranges.toString(media.buffered));
- if (this.audioSwitch && this.appended) {
- this.audioSwitch = false;
- hls.trigger(events["a" /* default */].AUDIO_TRACK_SWITCHED, { id: this.trackId });
- }
- this.state = audio_stream_controller_State.IDLE;
- }
- this.tick();
- }
- };
-
- AudioStreamController.prototype.onError = function onError(data) {
- var frag = data.frag;
- // don't handle frag error not related to audio fragment
- if (frag && frag.type !== 'audio') {
- return;
- }
-
- switch (data.details) {
- case errors["a" /* ErrorDetails */].FRAG_LOAD_ERROR:
- case errors["a" /* ErrorDetails */].FRAG_LOAD_TIMEOUT:
- var _frag = data.frag;
- // don't handle frag error not related to audio fragment
- if (_frag && _frag.type !== 'audio') {
- break;
- }
-
- if (!data.fatal) {
- var loadError = this.fragLoadError;
- if (loadError) {
- loadError++;
- } else {
- loadError = 1;
- }
-
- var config = this.config;
- if (loadError <= config.fragLoadingMaxRetry) {
- this.fragLoadError = loadError;
- // exponential backoff capped to config.fragLoadingMaxRetryTimeout
- var delay = Math.min(Math.pow(2, loadError - 1) * config.fragLoadingRetryDelay, config.fragLoadingMaxRetryTimeout);
- logger["b" /* logger */].warn('AudioStreamController: frag loading failed, retry in ' + delay + ' ms');
- this.retryDate = audio_stream_controller_performance.now() + delay;
- // retry loading state
- this.state = audio_stream_controller_State.FRAG_LOADING_WAITING_RETRY;
- } else {
- logger["b" /* logger */].error('AudioStreamController: ' + data.details + ' reaches max retry, redispatch as fatal ...');
- // switch error to fatal
- data.fatal = true;
- this.state = audio_stream_controller_State.ERROR;
- }
- }
- break;
- case errors["a" /* ErrorDetails */].AUDIO_TRACK_LOAD_ERROR:
- case errors["a" /* ErrorDetails */].AUDIO_TRACK_LOAD_TIMEOUT:
- case errors["a" /* ErrorDetails */].KEY_LOAD_ERROR:
- case errors["a" /* ErrorDetails */].KEY_LOAD_TIMEOUT:
- // when in ERROR state, don't switch back to IDLE state in case a non-fatal error is received
- if (this.state !== audio_stream_controller_State.ERROR) {
- // if fatal error, stop processing, otherwise move to IDLE to retry loading
- this.state = data.fatal ? audio_stream_controller_State.ERROR : audio_stream_controller_State.IDLE;
- logger["b" /* logger */].warn('AudioStreamController: ' + data.details + ' while loading frag, now switching to ' + this.state + ' state ...');
- }
- break;
- case errors["a" /* ErrorDetails */].BUFFER_FULL_ERROR:
- // if in appending state
- if (data.parent === 'audio' && (this.state === audio_stream_controller_State.PARSING || this.state === audio_stream_controller_State.PARSED)) {
- var media = this.mediaBuffer,
- currentTime = this.media.currentTime,
- mediaBuffered = media && BufferHelper.isBuffered(media, currentTime) && BufferHelper.isBuffered(media, currentTime + 0.5);
- // reduce max buf len if current position is buffered
- if (mediaBuffered) {
- var _config = this.config;
- if (_config.maxMaxBufferLength >= _config.maxBufferLength) {
- // reduce max buffer length as it might be too high. we do this to avoid loop flushing ...
- _config.maxMaxBufferLength /= 2;
- logger["b" /* logger */].warn('AudioStreamController: reduce max buffer length to ' + _config.maxMaxBufferLength + 's');
- }
- this.state = audio_stream_controller_State.IDLE;
- } else {
- // current position is not buffered, but browser is still complaining about buffer full error
- // this happens on IE/Edge, refer to https://github.com/video-dev/hls.js/pull/708
- // in that case flush the whole audio buffer to recover
- logger["b" /* logger */].warn('AudioStreamController: buffer full error also media.currentTime is not buffered, flush audio buffer');
- this.fragCurrent = null;
- // flush everything
- this.state = audio_stream_controller_State.BUFFER_FLUSHING;
- this.hls.trigger(events["a" /* default */].BUFFER_FLUSHING, { startOffset: 0, endOffset: Number.POSITIVE_INFINITY, type: 'audio' });
- }
- }
- break;
- default:
- break;
- }
- };
-
- AudioStreamController.prototype.onBufferFlushed = function onBufferFlushed() {
- var _this3 = this;
-
- var pendingData = this.pendingData;
- if (pendingData && pendingData.length) {
- logger["b" /* logger */].log('AudioStreamController: appending pending audio data after buffer flushed');
- pendingData.forEach(function (appendObj) {
- _this3.hls.trigger(events["a" /* default */].BUFFER_APPENDING, appendObj);
- });
- this.appended = true;
- this.pendingData = [];
- this.state = audio_stream_controller_State.PARSED;
- } else {
- // move to IDLE once flush complete. this should trigger new fragment loading
- this.state = audio_stream_controller_State.IDLE;
- // reset reference to frag
- this.fragPrevious = null;
- this.tick();
- }
- };
-
- audio_stream_controller__createClass(AudioStreamController, [{
- key: 'state',
- set: function set(nextState) {
- if (this.state !== nextState) {
- var previousState = this.state;
- this._state = nextState;
- logger["b" /* logger */].log('audio stream:' + previousState + '->' + nextState);
- }
- },
- get: function get() {
- return this._state;
- }
- }]);
-
- return AudioStreamController;
-}(task_loop);
-
-/* harmony default export */ var audio_stream_controller = (audio_stream_controller_AudioStreamController);
-// CONCATENATED MODULE: ./src/utils/vttcue.js
-/**
- * Copyright 2013 vtt.js Contributors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-/* harmony default export */ var vttcue = ((function () {
- if (typeof window !== 'undefined' && window.VTTCue) {
- return window.VTTCue;
- }
-
- var autoKeyword = 'auto';
- var directionSetting = {
- '': true,
- lr: true,
- rl: true
- };
- var alignSetting = {
- start: true,
- middle: true,
- end: true,
- left: true,
- right: true
- };
-
- function findDirectionSetting(value) {
- if (typeof value !== 'string') {
- return false;
- }
-
- var dir = directionSetting[value.toLowerCase()];
- return dir ? value.toLowerCase() : false;
- }
-
- function findAlignSetting(value) {
- if (typeof value !== 'string') {
- return false;
- }
-
- var align = alignSetting[value.toLowerCase()];
- return align ? value.toLowerCase() : false;
- }
-
- function extend(obj) {
- var i = 1;
- for (; i < arguments.length; i++) {
- var cobj = arguments[i];
- for (var p in cobj) {
- obj[p] = cobj[p];
- }
- }
-
- return obj;
- }
-
- function VTTCue(startTime, endTime, text) {
- var cue = this;
- var isIE8 = function () {
- if (typeof navigator === 'undefined') {
- return;
- }
-
- return (/MSIE\s8\.0/.test(navigator.userAgent)
- );
- }();
- var baseObj = {};
-
- if (isIE8) {
- cue = document.createElement('custom');
- } else {
- baseObj.enumerable = true;
- }
-
- /**
- * Shim implementation specific properties. These properties are not in
- * the spec.
- */
-
- // Lets us know when the VTTCue's data has changed in such a way that we need
- // to recompute its display state. This lets us compute its display state
- // lazily.
- cue.hasBeenReset = false;
-
- /**
- * VTTCue and TextTrackCue properties
- * http://dev.w3.org/html5/webvtt/#vttcue-interface
- */
-
- var _id = '';
- var _pauseOnExit = false;
- var _startTime = startTime;
- var _endTime = endTime;
- var _text = text;
- var _region = null;
- var _vertical = '';
- var _snapToLines = true;
- var _line = 'auto';
- var _lineAlign = 'start';
- var _position = 50;
- var _positionAlign = 'middle';
- var _size = 50;
- var _align = 'middle';
-
- Object.defineProperty(cue, 'id', extend({}, baseObj, {
- get: function get() {
- return _id;
- },
- set: function set(value) {
- _id = '' + value;
- }
- }));
-
- Object.defineProperty(cue, 'pauseOnExit', extend({}, baseObj, {
- get: function get() {
- return _pauseOnExit;
- },
- set: function set(value) {
- _pauseOnExit = !!value;
- }
- }));
-
- Object.defineProperty(cue, 'startTime', extend({}, baseObj, {
- get: function get() {
- return _startTime;
- },
- set: function set(value) {
- if (typeof value !== 'number') {
- throw new TypeError('Start time must be set to a number.');
- }
-
- _startTime = value;
- this.hasBeenReset = true;
- }
- }));
-
- Object.defineProperty(cue, 'endTime', extend({}, baseObj, {
- get: function get() {
- return _endTime;
- },
- set: function set(value) {
- if (typeof value !== 'number') {
- throw new TypeError('End time must be set to a number.');
- }
-
- _endTime = value;
- this.hasBeenReset = true;
- }
- }));
-
- Object.defineProperty(cue, 'text', extend({}, baseObj, {
- get: function get() {
- return _text;
- },
- set: function set(value) {
- _text = '' + value;
- this.hasBeenReset = true;
- }
- }));
-
- Object.defineProperty(cue, 'region', extend({}, baseObj, {
- get: function get() {
- return _region;
- },
- set: function set(value) {
- _region = value;
- this.hasBeenReset = true;
- }
- }));
-
- Object.defineProperty(cue, 'vertical', extend({}, baseObj, {
- get: function get() {
- return _vertical;
- },
- set: function set(value) {
- var setting = findDirectionSetting(value);
- // Have to check for false because the setting an be an empty string.
- if (setting === false) {
- throw new SyntaxError('An invalid or illegal string was specified.');
- }
-
- _vertical = setting;
- this.hasBeenReset = true;
- }
- }));
-
- Object.defineProperty(cue, 'snapToLines', extend({}, baseObj, {
- get: function get() {
- return _snapToLines;
- },
- set: function set(value) {
- _snapToLines = !!value;
- this.hasBeenReset = true;
- }
- }));
-
- Object.defineProperty(cue, 'line', extend({}, baseObj, {
- get: function get() {
- return _line;
- },
- set: function set(value) {
- if (typeof value !== 'number' && value !== autoKeyword) {
- throw new SyntaxError('An invalid number or illegal string was specified.');
- }
-
- _line = value;
- this.hasBeenReset = true;
- }
- }));
-
- Object.defineProperty(cue, 'lineAlign', extend({}, baseObj, {
- get: function get() {
- return _lineAlign;
- },
- set: function set(value) {
- var setting = findAlignSetting(value);
- if (!setting) {
- throw new SyntaxError('An invalid or illegal string was specified.');
- }
-
- _lineAlign = setting;
- this.hasBeenReset = true;
- }
- }));
-
- Object.defineProperty(cue, 'position', extend({}, baseObj, {
- get: function get() {
- return _position;
- },
- set: function set(value) {
- if (value < 0 || value > 100) {
- throw new Error('Position must be between 0 and 100.');
- }
-
- _position = value;
- this.hasBeenReset = true;
- }
- }));
-
- Object.defineProperty(cue, 'positionAlign', extend({}, baseObj, {
- get: function get() {
- return _positionAlign;
- },
- set: function set(value) {
- var setting = findAlignSetting(value);
- if (!setting) {
- throw new SyntaxError('An invalid or illegal string was specified.');
- }
-
- _positionAlign = setting;
- this.hasBeenReset = true;
- }
- }));
-
- Object.defineProperty(cue, 'size', extend({}, baseObj, {
- get: function get() {
- return _size;
- },
- set: function set(value) {
- if (value < 0 || value > 100) {
- throw new Error('Size must be between 0 and 100.');
- }
-
- _size = value;
- this.hasBeenReset = true;
- }
- }));
-
- Object.defineProperty(cue, 'align', extend({}, baseObj, {
- get: function get() {
- return _align;
- },
- set: function set(value) {
- var setting = findAlignSetting(value);
- if (!setting) {
- throw new SyntaxError('An invalid or illegal string was specified.');
- }
-
- _align = setting;
- this.hasBeenReset = true;
- }
- }));
-
- /**
- * Other