forked from jitsi/lib-jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JitsiTrackErrors.js
75 lines (62 loc) · 1.89 KB
/
JitsiTrackErrors.js
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/**
* The errors for the JitsiTrack objects.
*/
/**
* An error which indicates that some of requested constraints in
* getUserMedia call were not satisfied.
*/
export const CONSTRAINT_FAILED = 'gum.constraint_failed';
/**
* A generic error which indicates an error occurred while selecting
* a DesktopCapturerSource from the electron app.
*/
export const ELECTRON_DESKTOP_PICKER_ERROR
= 'gum.electron_desktop_picker_error';
/**
* An error which indicates a custom desktop picker could not be detected
* for the electron app.
*/
export const ELECTRON_DESKTOP_PICKER_NOT_FOUND
= 'gum.electron_desktop_picker_not_found';
/**
* Generic getUserMedia error.
*/
export const GENERAL = 'gum.general';
/**
* An error which indicates that requested device was not found.
*/
export const NOT_FOUND = 'gum.not_found';
/**
* An error which indicates that user denied permission to share requested
* device.
*/
export const PERMISSION_DENIED = 'gum.permission_denied';
/**
* Generic error for screensharing failure.
*/
export const SCREENSHARING_GENERIC_ERROR
= 'gum.screensharing_generic_error';
/**
* An error which indicates that user canceled screen sharing window
* selection dialog.
*/
export const SCREENSHARING_USER_CANCELED
= 'gum.screensharing_user_canceled';
/**
* Indicates that the timeout passed to the obtainAudioAndVideoPermissions has expired without GUM resolving.
*/
export const TIMEOUT = 'gum.timeout';
/**
* An error which indicates that track has been already disposed and cannot
* be longer used.
*/
export const TRACK_IS_DISPOSED = 'track.track_is_disposed';
/**
* An error which indicates that track has no MediaStream associated.
*/
export const TRACK_NO_STREAM_FOUND = 'track.no_stream_found';
/**
* An error which indicates that requested video resolution is not supported
* by a webcam.
*/
export const UNSUPPORTED_RESOLUTION = 'gum.unsupported_resolution';