mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-14 15:56:38 +03:00
31 lines
500 B
JavaScript
31 lines
500 B
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Externs for ManagedMediaSource which were missing in the
|
|
* Closure compiler.
|
|
*
|
|
* @externs
|
|
*/
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends {MediaSource}
|
|
*/
|
|
function ManagedMediaSource() {}
|
|
|
|
/**
|
|
* @param {string} type
|
|
* @return {boolean}
|
|
*/
|
|
ManagedMediaSource.isTypeSupported = function(type) {};
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends {SourceBuffer}
|
|
*/
|
|
function ManagedSourceBuffer() {}
|