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

constants.js 397B

123456789101112
  1. import { VIDEO_QUALITY_LEVELS } from '../base/conference';
  2. /**
  3. * Maps quality level names used in the config.videoQuality.minHeightForQualityLvl to the quality level constants used
  4. * by the application.
  5. * @type {Object}
  6. */
  7. export const CFG_LVL_TO_APP_QUALITY_LVL = {
  8. 'low': VIDEO_QUALITY_LEVELS.LOW,
  9. 'standard': VIDEO_QUALITY_LEVELS.STANDARD,
  10. 'high': VIDEO_QUALITY_LEVELS.HIGH
  11. };