mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-13 01:42:30 +00:00
12 lines
328 B
JavaScript
12 lines
328 B
JavaScript
// @flow
|
|
|
|
/**
|
|
* Selects the thumbnail height to the quality level mapping from the config.
|
|
*
|
|
* @param {Object} state - The redux state.
|
|
* @returns {Map<number,number>}
|
|
*/
|
|
export function getMinHeightForQualityLvlMap(state: Object): Map<number, number> {
|
|
return state['features/video-quality'].minHeightForQualityLvl;
|
|
}
|