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.

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