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.

selector.js 328B

1234567891011
  1. // @flow
  2. /**
  3. * Selects the thumbnail height to the quality level mapping from the config.
  4. *
  5. * @param {Object} state - The redux state.
  6. * @returns {Map<number,number>}
  7. */
  8. export function getMinHeightForQualityLvlMap(state: Object): Map<number, number> {
  9. return state['features/video-quality'].minHeightForQualityLvl;
  10. }