您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }