forked from pion/webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtcbundlepolicy.go
58 lines (51 loc) · 1.79 KB
/
rtcbundlepolicy.go
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
package webrtc
// RTCBundlePolicy affects which media tracks are negotiated if the remote
// endpoint is not bundle-aware, and what ICE candidates are gathered. If the
// remote endpoint is bundle-aware, all media tracks and data channels are
// bundled onto the same transport.
type RTCBundlePolicy int
const (
// RTCBundlePolicyBalanced indicates to gather ICE candidates for each
// media type in use (audio, video, and data). If the remote endpoint is
// not bundle-aware, negotiate only one audio and video track on separate
// transports.
RTCBundlePolicyBalanced RTCBundlePolicy = iota + 1
// RTCBundlePolicyMaxCompat indicates to gather ICE candidates for each
// track. If the remote endpoint is not bundle-aware, negotiate all media
// tracks on separate transports.
RTCBundlePolicyMaxCompat
// RTCBundlePolicyMaxBundle indicates to gather ICE candidates for only
// one track. If the remote endpoint is not bundle-aware, negotiate only
// one media track.
RTCBundlePolicyMaxBundle
)
// This is done this way because of a linter.
const (
rtcBundlePolicyBalancedStr = "balanced"
rtcBundlePolicyMaxCompatStr = "max-compat"
rtcBundlePolicyMaxBundleStr = "max-bundle"
)
func newRTCBundlePolicy(raw string) RTCBundlePolicy {
switch raw {
case rtcBundlePolicyBalancedStr:
return RTCBundlePolicyBalanced
case rtcBundlePolicyMaxCompatStr:
return RTCBundlePolicyMaxCompat
case rtcBundlePolicyMaxBundleStr:
return RTCBundlePolicyMaxBundle
default:
return RTCBundlePolicy(Unknown)
}
}
func (t RTCBundlePolicy) String() string {
switch t {
case RTCBundlePolicyBalanced:
return rtcBundlePolicyBalancedStr
case RTCBundlePolicyMaxCompat:
return rtcBundlePolicyMaxCompatStr
case RTCBundlePolicyMaxBundle:
return rtcBundlePolicyMaxBundleStr
default:
return ErrUnknownType.Error()
}
}