Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 | 52x 52x 52x 52x 52x 1x 1x 1x 7x 7x 5x 110x 110x 110x 55x 9x 46x 55x 9x 9x 46x 110x 55x 55x 50x 80x 80x 80x 46x 46x 46x 47x 5x 5x 5x 47x 39x 4x 35x 21x 21x 21x 14x 4x 4x 4x 4x 6x 6x 6x 4x 4x 4x 4x 14x 14x 14x 14x 14x 14x 14x 14x 14x 2x 14x 14x 14x 14x 35x 35x 35x 35x 35x 51x 51x 51x 51x 51x 51x 51x 51x 51x 51x 30x 30x 51x 21x 51x 30x 35x 35x 35x 35x 35x 35x 21x 95x 95x 95x 95x 95x 134x 134x 34x 34x 100x 18x 82x 25x 134x 95x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 29x 30x 30x 30x 30x 30x 30x 30x 30x 9x 9x 59x 59x 52x 52x 52x 52x 52x 1x | /**
* The copyright in this software is being made available under the BSD License,
* included below. This software may be subject to other third party and contributor
* rights, including patent rights, and no such rights are granted under this license.
*
* Copyright (c) 2013, Dash Industry Forum.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation and/or
* other materials provided with the distribution.
* * Neither the name of Dash Industry Forum nor the names of its
* contributors may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
import EventBus from '../../core/EventBus.js';
import Events from '../../core/events/Events.js';
import FactoryMaker from '../../core/FactoryMaker.js';
import DashConstants from '../constants/DashConstants.js';
import DashManifestModel from '../models/DashManifestModel.js';
import Settings from '../../core/Settings.js';
import Constants from '../../streaming/constants/Constants.js';
import MediaPlayerEvents from '../../streaming/MediaPlayerEvents.js';
import ConformanceViolationConstants from '../../streaming/constants/ConformanceViolationConstants.js';
function TimelineConverter() {
const context = this.context;
const eventBus = EventBus(context).getInstance();
const settings = Settings(context).getInstance();
let instance,
dashManifestModel,
timelineAnchorAvailabilityOffset, // In case we calculate the TSBD using _calcTimeShiftBufferWindowForDynamicTimelineManifest we use the segments as anchor times. We apply this offset when calculating if a segment is available or not.
clientServerTimeShift;
function setup() {
dashManifestModel = DashManifestModel(context).getInstance();
reset();
}
function setConfig(config) {
Iif (!config) {
return;
}
if (config.dashManifestModel) {
dashManifestModel = config.dashManifestModel;
}
}
function initialize() {
resetInitialSettings();
eventBus.on(Events.UPDATE_TIME_SYNC_OFFSET, _onUpdateTimeSyncOffset, this);
}
function getClientTimeOffset() {
return clientServerTimeShift;
}
function setClientTimeOffset(value) {
clientServerTimeShift = value;
}
/**
* Returns a "now" reference time for the client to compare the availability time of a segment against.
* Takes the client/server drift into account
*/
function getClientReferenceTime() {
return Date.now() - (timelineAnchorAvailabilityOffset * 1000) + (clientServerTimeShift * 1000);
}
function _calcAvailabilityTimeFromPresentationTime(presentationEndTime, representation, isDynamic, calculateAvailabilityEndTime) {
let availabilityTime;
let mpd = representation.adaptation.period.mpd;
const availabilityStartTime = mpd.availabilityStartTime;
if (calculateAvailabilityEndTime) {
//@timeShiftBufferDepth specifies the duration of the time shifting buffer that is guaranteed
// to be available for a Media Presentation with type 'dynamic'.
// When not present, the value is infinite.
if (isDynamic && mpd.timeShiftBufferDepth !== Number.POSITIVE_INFINITY) {
// SAET = SAST + TSBD + seg@duration
availabilityTime = new Date(availabilityStartTime.getTime() + ((presentationEndTime + mpd.timeShiftBufferDepth) * 1000));
} else {
availabilityTime = mpd.availabilityEndTime;
}
} else {
if (isDynamic) {
// SAST = Period@start + seg@presentationStartTime + seg@duration
// ASAST = SAST - ATO
const availabilityTimeOffset = representation.availabilityTimeOffset;
// presentationEndTime = Period@start + seg@presentationStartTime + Segment@duration
availabilityTime = new Date(availabilityStartTime.getTime() + (presentationEndTime - availabilityTimeOffset) * 1000);
} else {
// in static mpd, all segments are available at the same time
availabilityTime = availabilityStartTime;
}
}
return availabilityTime;
}
function calcAvailabilityStartTimeFromPresentationTime(presentationEndTime, representation, isDynamic) {
return _calcAvailabilityTimeFromPresentationTime(presentationEndTime, representation, isDynamic);
}
function calcAvailabilityEndTimeFromPresentationTime(presentationEndTime, representation, isDynamic) {
return _calcAvailabilityTimeFromPresentationTime(presentationEndTime, representation, isDynamic, true);
}
function calcPresentationTimeFromWallTime(wallTime, period) {
return ((wallTime.getTime() - period.mpd.availabilityStartTime.getTime() + clientServerTimeShift * 1000) / 1000);
}
function calcPresentationTimeFromMediaTime(mediaTime, representation) {
const periodStart = representation.adaptation.period.start;
const presentationOffset = representation.presentationTimeOffset;
return mediaTime + (periodStart - presentationOffset);
}
function calcMediaTimeFromPresentationTime(presentationTime, representation) {
const periodStart = representation.adaptation.period.start;
const presentationOffset = representation.presentationTimeOffset;
return presentationTime - periodStart + presentationOffset;
}
function calcWallTimeForSegment(segmentData, isDynamic) {
let suggestedPresentationDelay,
displayStartTime,
wallTime;
if (isDynamic) {
suggestedPresentationDelay = segmentData.representation.adaptation.period.mpd.suggestedPresentationDelay;
displayStartTime = segmentData.presentationStartTime + suggestedPresentationDelay;
wallTime = new Date(segmentData.availabilityStartTime.getTime() + (displayStartTime * 1000));
}
return wallTime;
}
/**
* Calculates the timeshiftbuffer range. This range might overlap multiple periods and is not limited to period boundaries. However, we make sure that the range is potentially covered by period.
* @param {Array} streams
* @param {boolean} isDynamic
* @return {}
*/
function calcTimeShiftBufferWindow(streams, isDynamic) {
// Static manifests. The availability window is equal to the DVR window
if (!isDynamic) {
return _calcTimeshiftBufferForStaticManifest(streams);
}
// Specific use case of SegmentTimeline
if (settings.get().streaming.timeShiftBuffer.calcFromSegmentTimeline) {
const data = _calcTimeShiftBufferWindowForDynamicTimelineManifest(streams);
_adjustTimelineAnchorAvailabilityOffset(data.now, data.range);
return data.range;
}
return _calcTimeShiftBufferWindowForDynamicManifest(streams);
}
function _calcTimeshiftBufferForStaticManifest(streams) {
// Static Range Finder. We iterate over all periods and return the total duration
const range = { start: NaN, end: NaN };
let duration = 0;
let start = NaN;
streams.forEach((stream) => {
const streamInfo = stream.getStreamInfo();
duration += streamInfo.duration;
if (isNaN(start) || streamInfo.start < start) {
start = streamInfo.start;
}
});
range.start = start;
range.end = start + duration;
return range;
}
function _calcTimeShiftBufferWindowForDynamicManifest(streams) {
const range = { start: NaN, end: NaN };
Iif (!streams || streams.length === 0) {
return range;
}
const voPeriod = streams[0].getAdapter().getRegularPeriods()[0];
const now = calcPresentationTimeFromWallTime(new Date(), voPeriod);
const timeShiftBufferDepth = voPeriod.mpd.timeShiftBufferDepth;
const start = !isNaN(timeShiftBufferDepth) ? now - timeShiftBufferDepth : 0;
// check if we find a suitable period for that starttime. Otherwise, we use the time closest to that
range.start = _adjustTimeBasedOnPeriodRanges(streams, start);
range.end = !isNaN(range.start) && now < range.start ? now : _adjustTimeBasedOnPeriodRanges(streams, now, true);
if (!isNaN(timeShiftBufferDepth) && range.end < now - timeShiftBufferDepth) {
range.end = NaN;
}
// If we have SegmentTimeline as a reference we can verify that the calculated DVR window is at least partially included in the DVR window exposed by the timeline.
// If that is not the case we stick to the DVR window defined by SegmentTimeline
if (settings.get().streaming.timeShiftBuffer.fallbackToSegmentTimeline) {
const timelineRefData = _calcTimeShiftBufferWindowForDynamicTimelineManifest(streams);
Iif (timelineRefData.range.end < range.start) {
eventBus.trigger(MediaPlayerEvents.CONFORMANCE_VIOLATION, {
level: ConformanceViolationConstants.LEVELS.WARNING,
event: ConformanceViolationConstants.EVENTS.INVALID_DVR_WINDOW
});
_adjustTimelineAnchorAvailabilityOffset(timelineRefData.now, timelineRefData.range);
return timelineRefData.range;
}
}
return range;
}
function _calcTimeShiftBufferWindowForDynamicTimelineManifest(streams) {
const range = { start: NaN, end: NaN };
const voPeriod = streams[0].getAdapter().getRegularPeriods()[0];
const now = calcPresentationTimeFromWallTime(new Date(), voPeriod);
Iif (!streams || streams.length === 0) {
return { range, now };
}
streams.forEach((stream) => {
let voRepresentation = stream.getCurrentRepresentationForType(Constants.VIDEO);
if (!voRepresentation) {
voRepresentation = stream.getCurrentRepresentationForType(Constants.AUDIO)
}
// If we still got not voRepresentation we are in the startup phase and nothing was selected yet. Use the default Representation
if (!voRepresentation) {
const adapter = stream.getAdapter();
const mediaInfo = adapter.getMediaInfoForType(stream.getStreamInfo(), Constants.VIDEO) || adapter.getMediaInfoForType(stream.getStreamInfo(), Constants.AUDIO);
const voRepresentations = adapter.getVoRepresentations(mediaInfo);
voRepresentation = voRepresentations[0];
}
let periodRange = { start: NaN, end: NaN };
if (voRepresentation) {
if (voRepresentation.segmentInfoType === DashConstants.SEGMENT_TIMELINE) {
periodRange = _calcRangeForTimeline(voRepresentation);
} else E{
const currentVoPeriod = voRepresentation.adaptation.period;
periodRange.start = currentVoPeriod.start;
periodRange.end = Math.max(now, currentVoPeriod.start + currentVoPeriod.duration);
}
}
if (!isNaN(periodRange.start) && (isNaN(range.start) || range.start > periodRange.start)) {
range.start = periodRange.start;
}
if (!isNaN(periodRange.end) && (isNaN(range.end) || range.end < periodRange.end)) {
range.end = periodRange.end;
}
});
range.end = Math.min(now, range.end);
const adjustedEndTime = _adjustTimeBasedOnPeriodRanges(streams, range.end, true);
// if range is NaN all periods are in the future. we should return range.start > range.end in this case
range.end = isNaN(adjustedEndTime) ? range.end : adjustedEndTime;
range.start = voPeriod && voPeriod.mpd && voPeriod.mpd.timeShiftBufferDepth && !isNaN(voPeriod.mpd.timeShiftBufferDepth) && !isNaN(range.end) ? Math.max(range.end - voPeriod.mpd.timeShiftBufferDepth, range.start) : range.start;
range.start = _adjustTimeBasedOnPeriodRanges(streams, range.start);
return { range, now };
}
function _adjustTimelineAnchorAvailabilityOffset(now, range) {
timelineAnchorAvailabilityOffset = now - range.end;
}
function _adjustTimeBasedOnPeriodRanges(streams, time, isEndOfDvrWindow = false) {
try {
let i = 0;
let found = false;
let adjustedTime = NaN;
while (!found && i < streams.length) {
const streamInfo = streams[i].getStreamInfo();
// We found a period which contains the target time.
if (streamInfo.start <= time && (!isFinite(streamInfo.duration) || (streamInfo.start + streamInfo.duration >= time))) {
adjustedTime = time;
found = true;
}
// Adjust the time for the start of the DVR window. The current period starts after the target time. We use the starttime of this period as adjusted time
else if (!isEndOfDvrWindow && (streamInfo.start > time && (isNaN(adjustedTime) || streamInfo.start < adjustedTime))) {
adjustedTime = streamInfo.start;
}
// Adjust the time for the end of the DVR window. The current period ends before the targettime. We use the end time of this period as the adjusted time
else if (isEndOfDvrWindow && ((streamInfo.start + streamInfo.duration) < time && (isNaN(adjustedTime) || (streamInfo.start + streamInfo.duration > adjustedTime)))) {
adjustedTime = streamInfo.start + streamInfo.duration;
}
i += 1;
}
return adjustedTime;
} catch (e) {
return time;
}
}
function _calcRangeForTimeline(voRepresentation) {
const adaptation = voRepresentation.adaptation.period.mpd.manifest.Period[voRepresentation.adaptation.period.index].AdaptationSet[voRepresentation.adaptation.index];
const representation = dashManifestModel.getRepresentationFor(voRepresentation.index, adaptation);
const base = representation.SegmentTemplate || representation.SegmentList;
const timeline = base.SegmentTimeline;
const timescale = base.timescale;
const segments = timeline.S;
const range = { start: 0, end: 0 };
const segmentTime = segments[0].t;
const hasValidSegmentTime = !isNaN(segmentTime);
const enhancedSegmentTime = hasValidSegmentTime ? segmentTime : 0;
let d = 0;
let segment,
repeat,
i,
len;
if (hasValidSegmentTime) {
range.start = calcPresentationTimeFromMediaTime(enhancedSegmentTime / timescale, voRepresentation);
}
for (i = 0, len = segments.length; i < len; i++) {
segment = segments[i];
repeat = 0;
if (segment.hasOwnProperty('r')) {
repeat = segment.r;
}
d += segment.d * (1 + repeat);
}
range.end = calcPresentationTimeFromMediaTime((enhancedSegmentTime + d) / timescale, voRepresentation);
return range;
}
function calcPeriodRelativeTimeFromMpdRelativeTime(representation, mpdRelativeTime) {
const periodStartTime = representation.adaptation.period.start;
return mpdRelativeTime - periodStartTime;
}
function _onUpdateTimeSyncOffset(e) {
if (e.offset !== undefined && !isNaN(e.offset)) {
setClientTimeOffset(e.offset / 1000);
}
}
function resetInitialSettings() {
clientServerTimeShift = 0;
timelineAnchorAvailabilityOffset = 0;
}
function reset() {
eventBus.off(Events.UPDATE_TIME_SYNC_OFFSET, _onUpdateTimeSyncOffset, this);
resetInitialSettings();
}
instance = {
calcAvailabilityEndTimeFromPresentationTime,
calcAvailabilityStartTimeFromPresentationTime,
calcMediaTimeFromPresentationTime,
calcPeriodRelativeTimeFromMpdRelativeTime,
calcPresentationTimeFromMediaTime,
calcPresentationTimeFromWallTime,
calcTimeShiftBufferWindow,
calcWallTimeForSegment,
getClientReferenceTime,
getClientTimeOffset,
initialize,
reset,
setClientTimeOffset,
setConfig,
};
setup();
return instance;
}
TimelineConverter.__dashjs_factory_name = 'TimelineConverter';
export default FactoryMaker.getSingletonFactory(TimelineConverter);
|