Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sfu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alain Takoudjou
sfu
Commits
81dfabbe
Commit
81dfabbe
authored
Apr 28, 2020
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement sending NACKs on the upstream connection.
parent
e5dae16d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
226 additions
and
15 deletions
+226
-15
client.go
client.go
+48
-15
packetwindow/packetwindow.go
packetwindow/packetwindow.go
+76
-0
packetwindow/packetwindow_test.go
packetwindow/packetwindow_test.go
+102
-0
No files found.
client.go
View file @
81dfabbe
...
@@ -17,6 +17,7 @@ import (
...
@@ -17,6 +17,7 @@ import (
"time"
"time"
"sfu/packetlist"
"sfu/packetlist"
"sfu/packetwindow"
"github.com/gorilla/websocket"
"github.com/gorilla/websocket"
"github.com/pion/rtcp"
"github.com/pion/rtcp"
...
@@ -259,6 +260,20 @@ func addUpConn(c *client, id string) (*upConnection, error) {
...
@@ -259,6 +260,20 @@ func addUpConn(c *client, id string) (*upConnection, error) {
return
nil
,
err
return
nil
,
err
}
}
conn
:=
&
upConnection
{
id
:
id
,
pc
:
pc
}
c
.
mu
.
Lock
()
defer
c
.
mu
.
Unlock
()
if
c
.
up
==
nil
{
c
.
up
=
make
(
map
[
string
]
*
upConnection
)
}
if
c
.
up
[
id
]
!=
nil
{
conn
.
pc
.
Close
()
return
nil
,
errors
.
New
(
"Adding duplicate connection"
)
}
c
.
up
[
id
]
=
conn
pc
.
OnICECandidate
(
func
(
candidate
*
webrtc
.
ICECandidate
)
{
pc
.
OnICECandidate
(
func
(
candidate
*
webrtc
.
ICECandidate
)
{
sendICE
(
c
,
id
,
candidate
)
sendICE
(
c
,
id
,
candidate
)
})
})
...
@@ -294,6 +309,7 @@ func addUpConn(c *client, id string) (*upConnection, error) {
...
@@ -294,6 +309,7 @@ func addUpConn(c *client, id string) (*upConnection, error) {
var
packet
rtp
.
Packet
var
packet
rtp
.
Packet
var
local
[]
*
downTrack
var
local
[]
*
downTrack
var
localTime
time
.
Time
var
localTime
time
.
Time
window
:=
packetwindow
.
New
()
for
{
for
{
now
:=
time
.
Now
()
now
:=
time
.
Now
()
if
now
.
Sub
(
localTime
)
>
time
.
Second
/
2
{
if
now
.
Sub
(
localTime
)
>
time
.
Second
/
2
{
...
@@ -315,6 +331,17 @@ func addUpConn(c *client, id string) (*upConnection, error) {
...
@@ -315,6 +331,17 @@ func addUpConn(c *client, id string) (*upConnection, error) {
continue
continue
}
}
window
.
Set
(
packet
.
SequenceNumber
)
if
packet
.
SequenceNumber
-
window
.
First
()
>
24
{
first
,
bitmap
:=
window
.
Get17
()
if
bitmap
!=
^
uint16
(
0
)
{
err
:=
conn
.
sendNACK
(
track
,
first
,
^
bitmap
)
if
err
!=
nil
{
log
.
Printf
(
"%v"
,
err
)
}
}
}
list
.
Store
(
packet
.
SequenceNumber
,
buf
[
:
i
])
list
.
Store
(
packet
.
SequenceNumber
,
buf
[
:
i
])
for
_
,
l
:=
range
local
{
for
_
,
l
:=
range
local
{
...
@@ -330,19 +357,6 @@ func addUpConn(c *client, id string) (*upConnection, error) {
...
@@ -330,19 +357,6 @@ func addUpConn(c *client, id string) (*upConnection, error) {
}()
}()
})
})
conn
:=
&
upConnection
{
id
:
id
,
pc
:
pc
}
c
.
mu
.
Lock
()
defer
c
.
mu
.
Unlock
()
if
c
.
up
==
nil
{
c
.
up
=
make
(
map
[
string
]
*
upConnection
)
}
if
c
.
up
[
id
]
!=
nil
{
conn
.
pc
.
Close
()
return
nil
,
errors
.
New
(
"Adding duplicate connection"
)
}
c
.
up
[
id
]
=
conn
return
conn
,
nil
return
conn
,
nil
}
}
...
@@ -567,7 +581,7 @@ func updateUpBitrate(up *upConnection) {
...
@@ -567,7 +581,7 @@ func updateUpBitrate(up *upConnection) {
for
_
,
l
:=
range
local
{
for
_
,
l
:=
range
local
{
ms
:=
atomic
.
LoadUint64
(
&
l
.
maxBitrate
.
timestamp
)
ms
:=
atomic
.
LoadUint64
(
&
l
.
maxBitrate
.
timestamp
)
bitrate
:=
atomic
.
LoadUint64
(
&
l
.
maxBitrate
.
bitrate
)
bitrate
:=
atomic
.
LoadUint64
(
&
l
.
maxBitrate
.
bitrate
)
if
now
<
ms
||
now
>
ms
+
5000
||
bitrate
==
0
{
if
now
<
ms
||
now
>
ms
+
5000
||
bitrate
==
0
{
l
.
setMuted
(
false
)
l
.
setMuted
(
false
)
continue
continue
}
}
...
@@ -588,7 +602,7 @@ func updateUpBitrate(up *upConnection) {
...
@@ -588,7 +602,7 @@ func updateUpBitrate(up *upConnection) {
func
(
up
*
upConnection
)
sendPLI
(
track
*
upTrack
)
error
{
func
(
up
*
upConnection
)
sendPLI
(
track
*
upTrack
)
error
{
last
:=
atomic
.
LoadUint64
(
&
track
.
lastPLI
)
last
:=
atomic
.
LoadUint64
(
&
track
.
lastPLI
)
now
:=
msSinceEpoch
()
now
:=
msSinceEpoch
()
if
now
>=
last
&&
now
-
last
<
200
{
if
now
>=
last
&&
now
-
last
<
200
{
return
nil
return
nil
}
}
atomic
.
StoreUint64
(
&
track
.
lastPLI
,
now
)
atomic
.
StoreUint64
(
&
track
.
lastPLI
,
now
)
...
@@ -610,6 +624,25 @@ func sendREMB(pc *webrtc.PeerConnection, ssrc uint32, bitrate uint64) error {
...
@@ -610,6 +624,25 @@ func sendREMB(pc *webrtc.PeerConnection, ssrc uint32, bitrate uint64) error {
})
})
}
}
func
(
up
*
upConnection
)
sendNACK
(
track
*
upTrack
,
first
uint16
,
bitmap
uint16
)
error
{
return
sendNACK
(
up
.
pc
,
track
.
track
.
SSRC
(),
first
,
bitmap
)
}
func
sendNACK
(
pc
*
webrtc
.
PeerConnection
,
ssrc
uint32
,
first
uint16
,
bitmap
uint16
)
error
{
packet
:=
rtcp
.
Packet
(
&
rtcp
.
TransportLayerNack
{
MediaSSRC
:
ssrc
,
Nacks
:
[]
rtcp
.
NackPair
{
rtcp
.
NackPair
{
first
,
rtcp
.
PacketBitmap
(
bitmap
),
},
},
},
)
return
pc
.
WriteRTCP
([]
rtcp
.
Packet
{
packet
})
}
func
sendRecovery
(
p
*
rtcp
.
TransportLayerNack
,
track
*
downTrack
)
{
func
sendRecovery
(
p
*
rtcp
.
TransportLayerNack
,
track
*
downTrack
)
{
var
packet
rtp
.
Packet
var
packet
rtp
.
Packet
for
_
,
nack
:=
range
p
.
Nacks
{
for
_
,
nack
:=
range
p
.
Nacks
{
...
...
packetwindow/packetwindow.go
0 → 100644
View file @
81dfabbe
package
packetwindow
import
(
"fmt"
)
type
Window
struct
{
first
uint16
bitmap
uint32
}
func
New
()
*
Window
{
return
&
Window
{}
}
func
(
w
*
Window
)
String
()
string
{
buf
:=
make
([]
byte
,
32
)
for
i
:=
0
;
i
<
32
;
i
++
{
if
(
w
.
bitmap
&
(
1
<<
i
))
!=
0
{
buf
[
i
]
=
'1'
}
else
{
buf
[
i
]
=
'0'
}
}
return
fmt
.
Sprintf
(
"[%04x %s]"
,
w
.
first
,
buf
)
}
func
(
w
*
Window
)
First
()
uint16
{
return
w
.
first
}
func
(
w
*
Window
)
Reset
()
{
w
.
bitmap
=
0
}
func
(
w
*
Window
)
Set
(
seqno
uint16
)
{
if
w
.
bitmap
==
0
{
w
.
first
=
seqno
w
.
bitmap
=
1
return
}
if
((
seqno
-
w
.
first
)
&
0x8000
)
!=
0
{
return
}
if
seqno
==
w
.
first
{
w
.
bitmap
>>=
1
w
.
first
+=
1
for
(
w
.
bitmap
&
1
)
==
1
{
w
.
bitmap
>>=
1
w
.
first
+=
1
}
return
}
if
seqno
-
w
.
first
<
32
{
w
.
bitmap
|=
(
1
<<
uint16
(
seqno
-
w
.
first
))
return
}
shift
:=
seqno
-
w
.
first
-
31
w
.
bitmap
>>=
shift
w
.
first
+=
shift
w
.
bitmap
|=
(
1
<<
uint16
(
seqno
-
w
.
first
))
return
}
func
(
w
*
Window
)
Get17
()
(
uint16
,
uint16
)
{
first
:=
w
.
first
bitmap
:=
uint16
((
w
.
bitmap
>>
1
)
&
0xFFFF
)
w
.
bitmap
>>=
17
w
.
first
+=
17
return
first
,
bitmap
}
packetwindow/packetwindow_test.go
0 → 100644
View file @
81dfabbe
package
packetwindow
import
(
"testing"
"github.com/pion/rtcp"
)
func
TestWindow
(
t
*
testing
.
T
)
{
value
:=
uint64
(
0xcdd58f1e035379c0
)
w
:=
New
()
for
i
:=
0
;
i
<
64
;
i
++
{
if
(
value
&
(
1
<<
i
))
!=
0
{
w
.
Set
(
uint16
(
42
+
i
))
}
}
value
>>=
uint16
(
w
.
first
-
42
)
if
uint32
(
value
)
!=
w
.
bitmap
{
t
.
Errorf
(
"Got %b, expected %b"
,
w
.
bitmap
,
value
)
}
}
func
TestWindowWrap
(
t
*
testing
.
T
)
{
value
:=
uint64
(
0xcdd58f1e035379c0
)
w
:=
New
()
w
.
Set
(
0x7000
)
w
.
Set
(
0xA000
)
for
i
:=
0
;
i
<
64
;
i
++
{
if
(
value
&
(
1
<<
i
))
!=
0
{
w
.
Set
(
uint16
(
42
+
i
))
}
}
value
>>=
uint16
(
w
.
first
-
42
)
if
uint32
(
value
)
!=
w
.
bitmap
{
t
.
Errorf
(
"Got %b, expected %b"
,
w
.
bitmap
,
value
)
}
}
func
TestWindowGet
(
t
*
testing
.
T
)
{
value
:=
uint64
(
0xcdd58f1e035379c0
)
w
:=
New
()
for
i
:=
0
;
i
<
64
;
i
++
{
if
(
value
&
(
1
<<
i
))
!=
0
{
w
.
Set
(
uint16
(
42
+
i
))
}
}
pos
:=
uint16
(
42
)
for
w
.
bitmap
!=
0
{
first
,
bitmap
:=
w
.
Get17
()
if
first
<
pos
||
first
>=
pos
+
64
{
t
.
Errorf
(
"First is %v, pos is %v"
,
first
,
pos
)
}
value
>>=
(
first
-
pos
)
pos
=
first
if
(
value
&
1
)
!=
0
{
t
.
Errorf
(
"Value is odd"
)
}
value
>>=
1
pos
+=
1
if
bitmap
!=
uint16
(
value
&
0xFFFF
)
{
t
.
Errorf
(
"Got %b, expected %b"
,
bitmap
,
(
value
&
0xFFFF
))
}
value
>>=
16
pos
+=
16
}
if
value
!=
0
{
t
.
Errorf
(
"Value is %v"
,
value
)
}
}
func
TestWindowPacket
(
t
*
testing
.
T
)
{
value
:=
uint64
(
0xcdd58f1e035379c0
)
w
:=
New
()
for
i
:=
0
;
i
<
64
;
i
++
{
if
(
value
&
(
1
<<
i
))
!=
0
{
w
.
Set
(
uint16
(
42
+
i
))
}
}
first
,
bitmap
:=
w
.
Get17
()
p
:=
rtcp
.
NackPair
{
first
,
rtcp
.
PacketBitmap
(
^
bitmap
)}
list
:=
p
.
PacketList
()
for
_
,
s
:=
range
list
{
if
s
<
42
||
s
>=
42
+
64
{
if
(
value
&
(
1
<<
(
s
-
42
)))
!=
0
{
t
.
Errorf
(
"Bit %v unexpectedly set"
,
s
-
42
)
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment