You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BridgeVideoType.js 555B

123456789101112131415161718192021222324252627
  1. /**
  2. * Enumeration of the video types that are signaled to the bridge
  3. * @type {{CAMERA: string, DESKTOP: string, DESKTOP_HIGH_FPS: string, NONE: string}}
  4. */
  5. const BridgeVideoType = {
  6. /**
  7. * The camera video type.
  8. */
  9. CAMERA: 'camera',
  10. /**
  11. * The low fps desktop video type.
  12. */
  13. DESKTOP: 'desktop',
  14. /**
  15. * The high fps desktop video type.
  16. */
  17. DESKTOP_HIGH_FPS: 'desktop_high_fps',
  18. /**
  19. * Video type when no local source is present.
  20. */
  21. NONE: 'none'
  22. };
  23. module.exports = BridgeVideoType;