Source: lib/polyfill/encryption_scheme.js

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