shaka-player
Version:
DASH/EME video player library
48 lines (44 loc) • 1.41 kB
JavaScript
/*! @license
* Shaka Player
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
goog.provide('shaka.routing.Payload');
/**
* @typedef {{
* mediaElement: HTMLMediaElement,
* mimeType: ?string,
* startTime: ?number,
* startTimeOfLoad: number,
* uri: ?string,
* keepAdManager: boolean
* }}
*
* @description
* The payload is the information to "deliver" to our destination. When
* moving from node-to-node, the payload may be modified.
*
* @property {HTMLMediaElement} mediaElement
* The media element that we are or will be using.
*
* @property {?string} mimeType
* The mime type of the content that we will parse. This will be used when
* picking which parser to use.
*
* @property {?number} startTime
* The time (in seconds) where playback should start. When |null| we will
* use the content's default start time (0 for VOD and live edge for LIVE).
*
* @property {number} startTimeOfLoad
* The time (in seconds) of when a load request is created. This is used to
* track the latency between when the call to |Player.load| and the start
* of playback. When the payload is not for a load request, this should be
* NaN.
*
* @property {?string} uri
* The address of the content that will be loaded.
*
* @property {boolean} keepAdManager
* Indicates if the adManager shouldn't destroyed.
*/
shaka.routing.Payload;