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.ts 528B

1234567891011121314151617181920212223242526
  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. export enum 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. }