mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-14 15:56:38 +03:00
21 lines
410 B
JavaScript
21 lines
410 B
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
goog.provide('shaka.util.FairPlayUtils');
|
|
|
|
goog.require('shaka.drm.FairPlay');
|
|
|
|
|
|
/**
|
|
* @summary A set of FairPlay utility functions. DEPRECATED: Please use
|
|
* shaka.drm.FairPlay instead.
|
|
* @deprecated
|
|
* @export
|
|
*/
|
|
shaka.util.FairPlayUtils = class extends shaka.drm.FairPlay {
|
|
// DEPRECATED
|
|
};
|