Update go2rtc candidates processing

This commit is contained in:
Alexey Khit
2023-03-04 06:25:30 +03:00
parent d805d560b9
commit 9ab9412c95
7 changed files with 49 additions and 28 deletions
+18
View File
@@ -51,3 +51,21 @@ func (w *Waiter) Done() {
w.mu.Unlock()
}
func (w *Waiter) WaitChan() <-chan struct{} {
var ch chan struct{}
w.mu.Lock()
if w.state >= 0 {
ch = make(chan struct{})
go func() {
w.Wait()
ch <- struct{}{}
}()
}
w.mu.Unlock()
return ch
}
+4 -1
View File
@@ -28,7 +28,10 @@ func NewConn(pc *webrtc.PeerConnection) *Conn {
c := &Conn{pc: pc}
pc.OnICECandidate(func(candidate *webrtc.ICECandidate) {
c.Fire(candidate)
// last candidate will be empty
if candidate != nil {
c.Fire(candidate)
}
})
pc.OnDataChannel(func(channel *webrtc.DataChannel) {
+13 -5
View File
@@ -159,14 +159,22 @@ func MimeType(codec *streamer.Codec) string {
panic("not implemented")
}
const PriorityHost = (1 << 24) * uint32(126)
// 4.1.2.2. Guidelines for Choosing Type and Local Preferences
// The RECOMMENDED values are 126 for host candidates, 100
// for server reflexive candidates, 110 for peer reflexive candidates,
// and 0 for relayed candidates.
// We use new priority 120 for Manual Host. It is lower than real Host,
// but more then any other candidates.
const PriorityManualHost = (1 << 24) * uint32(120)
const PriorityLocalUDP = (1 << 8) * uint32(65535)
const PriorityLocalTCPPassive = (1 << 8) * uint32((1<<13)*4+8191)
const PriorityComponentRTP = uint32(256 - ice.ComponentRTP)
func CandidateHostUDP(host string, port int) string {
func CandidateManualHostUDP(host string, port int) string {
foundation := crc32.ChecksumIEEE([]byte("host" + host + "udp4"))
priority := PriorityHost + PriorityLocalUDP + PriorityComponentRTP
priority := PriorityManualHost + PriorityLocalUDP + PriorityComponentRTP
// 1. Foundation
// 2. Component, always 1 because RTP
@@ -181,9 +189,9 @@ func CandidateHostUDP(host string, port int) string {
)
}
func CandidateHostTCPPassive(address string, port int) string {
func CandidateManualHostTCPPassive(address string, port int) string {
foundation := crc32.ChecksumIEEE([]byte("host" + address + "tcp4"))
priority := PriorityHost + PriorityLocalTCPPassive + PriorityComponentRTP
priority := PriorityManualHost + PriorityLocalTCPPassive + PriorityComponentRTP
return fmt.Sprintf(
"candidate:%d 1 tcp %d %s %d typ host tcptype passive",
+2 -2
View File
@@ -18,7 +18,7 @@ func TestCandidates(t *testing.T) {
}
cand, err := ice.NewCandidateHost(conf)
require.Nil(t, err)
assert.Equal(t, "candidate:"+cand.Marshal(), CandidateHostUDP(conf.Address, conf.Port))
assert.Equal(t, "candidate:"+cand.Marshal(), CandidateManualHostUDP(conf.Address, conf.Port))
conf = &ice.CandidateHostConfig{
Network: "tcp",
@@ -29,7 +29,7 @@ func TestCandidates(t *testing.T) {
}
cand, err = ice.NewCandidateHost(conf)
require.Nil(t, err)
assert.Equal(t, "candidate:"+cand.Marshal(), CandidateHostTCPPassive(conf.Address, conf.Port))
assert.Equal(t, "candidate:"+cand.Marshal(), CandidateManualHostTCPPassive(conf.Address, conf.Port))
}
func TestPublicIP(t *testing.T) {