2019-10-18 14:30:59 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
export * from './functions.any';
|
|
|
|
|
2020-03-30 14:17:18 +00:00
|
|
|
/**
|
|
|
|
* Returns the deviceId for the currently used camera.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The state of the application.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
export function getCurrentCameraDeviceId(state: Object) {
|
|
|
|
return state['features/base/settings'].cameraDeviceId;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the deviceId for the currently used microphone.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The state of the application.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
export function getCurrentMicDeviceId(state: Object) {
|
|
|
|
return state['features/base/settings'].micDeviceId;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the deviceId for the currently used speaker.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The state of the application.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
export function getCurrentOutputDeviceId(state: Object) {
|
|
|
|
return state['features/base/settings'].audioOutputDeviceId;
|
|
|
|
}
|
|
|
|
|
2019-10-18 14:30:59 +00:00
|
|
|
/**
|
|
|
|
* Handles changes to the `disableCallIntegration` setting.
|
|
|
|
* Noop on web.
|
|
|
|
*
|
|
|
|
* @param {boolean} disabled - Whether call integration is disabled or not.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
export function handleCallIntegrationChange(disabled: boolean) { // eslint-disable-line no-unused-vars
|
|
|
|
}
|