forked from jitsi/lib-jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JitsiMediaDevicesEvents.ts
38 lines (34 loc) · 1.51 KB
/
JitsiMediaDevicesEvents.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* The events for the media devices.
*/
export enum JitsiMediaDevicesEvents {
/**
* Indicates that the list of available media devices has been changed. The
* event provides the following parameters to its listeners:
*
* @param {MediaDeviceInfo[]} devices - array of MediaDeviceInfo or
* MediaDeviceInfo-like objects that are currently connected.
* @see https://developer.mozilla.org/en-US/docs/Web/API/MediaDeviceInfo
*/
DEVICE_LIST_CHANGED = 'mediaDevices.devicechange',
/**
* Event emitted when the user granted/blocked a permission for the camera / mic.
* Used to keep track of the granted permissions on browsers which don't
* support the Permissions API.
*/
PERMISSIONS_CHANGED = 'rtc.permissions_changed',
/**
* Indicates that the environment is currently showing permission prompt to
* access camera and/or microphone. The event provides the following
* parameters to its listeners:
*
* @param {'chrome'|'opera'|'firefox'|'safari'|'nwjs'
* |'react-native'|'android'} environmentType - type of browser or
* other execution environment.
*/
PERMISSION_PROMPT_IS_SHOWN = 'mediaDevices.permissionPromptIsShown'
};
// exported for backward compatibility
export const DEVICE_LIST_CHANGED = JitsiMediaDevicesEvents.DEVICE_LIST_CHANGED;
export const PERMISSIONS_CHANGED = JitsiMediaDevicesEvents.PERMISSIONS_CHANGED;
export const PERMISSION_PROMPT_IS_SHOWN = JitsiMediaDevicesEvents.PERMISSION_PROMPT_IS_SHOWN;