Source: lib/polyfill/encryption_scheme.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('shaka.polyfill.EncryptionScheme');
  7. goog.require('shaka.polyfill');
  8. /**
  9. * @summary A polyfill to add support for EncryptionScheme queries in EME.
  10. * @see https://wicg.github.io/encrypted-media-encryption-scheme/
  11. * @see https://github.com/w3c/encrypted-media/pull/457
  12. * @see https://github.com/google/eme-encryption-scheme-polyfill
  13. * @export
  14. */
  15. shaka.polyfill.EncryptionScheme = class {
  16. /**
  17. * Install the polyfill if needed.
  18. *
  19. * @suppress {missingRequire}
  20. * @export
  21. */
  22. static install() {
  23. EncryptionSchemePolyfills.install();
  24. }
  25. };
  26. // Install at a low priority so that other EME polyfills go first.
  27. shaka.polyfill.register(shaka.polyfill.EncryptionScheme.install, -1);