Source: lib/media/media_source_capabilities.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('shaka.media.Capabilities');
  7. /**
  8. * @summary
  9. * This is for capturing all media source capabilities on current platform.
  10. * And this is for static check and can not be constructed.
  11. */
  12. shaka.media.Capabilities = class {
  13. /**
  14. * Cache browser engine call to improve performance on some poor platforms
  15. *
  16. * @param {string} type
  17. * @return {boolean}
  18. */
  19. static isTypeSupported(type) {
  20. const supportMap = shaka.media.Capabilities.MediaSourceTypeSupportMap;
  21. if (supportMap.has(type)) {
  22. return supportMap.get(type);
  23. }
  24. if (window.ManagedMediaSource) {
  25. const currentSupport = ManagedMediaSource.isTypeSupported(type);
  26. supportMap.set(type, currentSupport);
  27. return currentSupport;
  28. } else if (window.MediaSource) {
  29. const currentSupport = MediaSource.isTypeSupported(type);
  30. supportMap.set(type, currentSupport);
  31. return currentSupport;
  32. }
  33. return false;
  34. }
  35. /**
  36. * Determine support for SourceBuffer.changeType
  37. * @return {boolean}
  38. */
  39. static isChangeTypeSupported() {
  40. return !!window.SourceBuffer &&
  41. // eslint-disable-next-line no-restricted-syntax
  42. !!SourceBuffer.prototype && !!SourceBuffer.prototype.changeType;
  43. }
  44. };
  45. /**
  46. * Public it for unit test, and developer could also check the support map.
  47. * @type {!Map.<string, boolean>}
  48. */
  49. shaka.media.Capabilities.MediaSourceTypeSupportMap = new Map();