選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

constants.js 580B

1234567891011121314151617181920212223
  1. /**
  2. * The supported remote video resolutions. The values are currently based on
  3. * available simulcast layers.
  4. *
  5. * @type {object}
  6. */
  7. export const VIDEO_QUALITY_LEVELS = {
  8. ULTRA: 2160,
  9. HIGH: 720,
  10. STANDARD: 360,
  11. LOW: 180
  12. };
  13. /**
  14. * Maps quality level names used in the config.videoQuality.minHeightForQualityLvl to the quality level constants used
  15. * by the application.
  16. * @type {Object}
  17. */
  18. export const CFG_LVL_TO_APP_QUALITY_LVL = {
  19. 'low': VIDEO_QUALITY_LEVELS.LOW,
  20. 'standard': VIDEO_QUALITY_LEVELS.STANDARD,
  21. 'high': VIDEO_QUALITY_LEVELS.HIGH
  22. };