mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-15 16:06:41 +03:00
7e6a0f38ff
This corrects/normalizes license headers in misc. files, such as config files, docs, build tools, tests, and externs. This does not affect the compiled output, and is only done for consistency. Issue #2638 Change-Id: I9d8da2de55243b08d7df2b743aac73c6f15e858a
134 lines
2.1 KiB
JavaScript
134 lines
2.1 KiB
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Externs for prefixed EME v0.1b.
|
|
* @externs
|
|
*/
|
|
|
|
|
|
/**
|
|
* @param {string} keySystem
|
|
* @param {Uint8Array} key
|
|
* @param {Uint8Array} keyId
|
|
* @param {string} sessionId
|
|
*/
|
|
HTMLMediaElement.prototype.webkitAddKey =
|
|
function(keySystem, key, keyId, sessionId) {};
|
|
|
|
|
|
/**
|
|
* @param {string} keySystem
|
|
* @param {string} sessionId
|
|
*/
|
|
HTMLMediaElement.prototype.webkitCancelKeyRequest =
|
|
function(keySystem, sessionId) {};
|
|
|
|
|
|
/**
|
|
* @param {string} keySystem
|
|
* @param {!Uint8Array} initData
|
|
*/
|
|
HTMLMediaElement.prototype.webkitGenerateKeyRequest =
|
|
function(keySystem, initData) {};
|
|
|
|
|
|
/**
|
|
* An unprefixed variant of the webkit-prefixed API from EME v0.1b.
|
|
* @param {string} keySystem
|
|
* @param {!Uint8Array} initData
|
|
*/
|
|
HTMLMediaElement.prototype.generateKeyRequest =
|
|
function(keySystem, initData) {};
|
|
|
|
|
|
/**
|
|
* @param {string} mimeType
|
|
* @param {string=} keySystem
|
|
* @return {string} '', 'maybe', or 'probably'
|
|
* @override the standard one-argument version
|
|
*/
|
|
HTMLVideoElement.prototype.canPlayType =
|
|
function(mimeType, keySystem) {};
|
|
|
|
|
|
/**
|
|
* @constructor
|
|
* @param {string} type
|
|
* @param {Object=} eventInitDict
|
|
* @extends {Event}
|
|
*/
|
|
function MediaKeyEvent(type, eventInitDict) {}
|
|
|
|
|
|
/**
|
|
* @type {string}
|
|
* @const
|
|
*/
|
|
MediaKeyEvent.prototype.keySystem;
|
|
|
|
|
|
/**
|
|
* @type {string}
|
|
* @const
|
|
*/
|
|
MediaKeyEvent.prototype.sessionId;
|
|
|
|
|
|
/**
|
|
* @type {!Uint8Array}
|
|
* @const
|
|
*/
|
|
MediaKeyEvent.prototype.initData;
|
|
|
|
|
|
/**
|
|
* @type {!Uint8Array}
|
|
* @const
|
|
*/
|
|
MediaKeyEvent.prototype.message;
|
|
|
|
|
|
/**
|
|
* @type {string}
|
|
* @const
|
|
*/
|
|
MediaKeyEvent.prototype.defaultURL;
|
|
|
|
|
|
/**
|
|
* @type {MediaKeyError}
|
|
* @const
|
|
*/
|
|
MediaKeyEvent.prototype.errorCode;
|
|
|
|
|
|
/**
|
|
* @type {number}
|
|
* @const
|
|
*/
|
|
MediaKeyEvent.prototype.systemCode;
|
|
|
|
|
|
/**
|
|
* @type {!HTMLMediaElement}
|
|
* @const
|
|
*/
|
|
MediaKeyEvent.prototype.target;
|
|
|
|
|
|
/** @constructor */
|
|
function MediaKeyError() {}
|
|
|
|
|
|
/** @type {number} */
|
|
MediaKeyError.prototype.code;
|
|
|
|
|
|
/** @type {number} */
|
|
MediaKeyError.prototype.systemCode;
|
|
|