Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
galene
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
nexedi
galene
Commits
c00a2199
Commit
c00a2199
authored
May 17, 2021
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move PLI rate-limiting into the reader loop.
parent
7665067a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
33 deletions
+38
-33
rtpconn/rtpconn.go
rtpconn/rtpconn.go
+0
-12
rtpconn/rtpreader.go
rtpconn/rtpreader.go
+38
-21
No files found.
rtpconn/rtpconn.go
View file @
c00a2199
...
...
@@ -319,16 +319,11 @@ func (down *rtpDownConnection) flushICECandidates() error {
return
err
}
type
upTrackAtomics
struct
{
lastPLI
uint64
}
type
rtpUpTrack
struct
{
track
*
webrtc
.
TrackRemote
rate
*
estimator
.
Estimator
cache
*
packetcache
.
Cache
jitter
*
jitter
.
Estimator
atomics
*
upTrackAtomics
cname
atomic
.
Value
localCh
chan
trackAction
...
...
@@ -597,7 +592,6 @@ func newUpConn(c group.Client, id string, label string, offer string) (*rtpUpCon
cache
:
packetcache
.
New
(
minPacketCache
(
remote
)),
rate
:
estimator
.
New
(
time
.
Second
),
jitter
:
jitter
.
New
(
remote
.
Codec
()
.
ClockRate
),
atomics
:
&
upTrackAtomics
{},
localCh
:
make
(
chan
trackAction
,
2
),
readerDone
:
make
(
chan
struct
{}),
}
...
...
@@ -626,12 +620,6 @@ func (up *rtpUpConnection) sendPLI(track *rtpUpTrack) error {
if
!
track
.
hasRtcpFb
(
"nack"
,
"pli"
)
{
return
ErrUnsupportedFeedback
}
last
:=
atomic
.
LoadUint64
(
&
track
.
atomics
.
lastPLI
)
now
:=
rtptime
.
Jiffies
()
if
now
>=
last
&&
now
-
last
<
rtptime
.
JiffiesPerSec
/
2
{
return
ErrRateLimited
}
atomic
.
StoreUint64
(
&
track
.
atomics
.
lastPLI
,
now
)
return
sendPLI
(
up
.
pc
,
track
.
track
.
SSRC
())
}
...
...
rtpconn/rtpreader.go
View file @
c00a2199
...
...
@@ -3,6 +3,7 @@ package rtpconn
import
(
"io"
"log"
"time"
"github.com/pion/rtp"
"github.com/pion/webrtc/v3"
...
...
@@ -21,10 +22,39 @@ func readLoop(conn *rtpUpConnection, track *rtpUpTrack) {
isvideo
:=
track
.
track
.
Kind
()
==
webrtc
.
RTPCodecTypeVideo
codec
:=
track
.
track
.
Codec
()
sendNACK
:=
track
.
hasRtcpFb
(
"nack"
,
""
)
sendPLI
:=
track
.
hasRtcpFb
(
"nack"
,
"pli"
)
var
kfNeeded
bool
var
kfRequested
time
.
Time
buf
:=
make
([]
byte
,
packetcache
.
BufSize
)
var
packet
rtp
.
Packet
for
{
inner
:
for
{
select
{
case
action
:=
<-
track
.
localCh
:
switch
action
.
action
{
case
trackActionAdd
,
trackActionDel
:
err
:=
writers
.
add
(
action
.
track
,
action
.
action
==
trackActionAdd
,
)
if
err
!=
nil
{
log
.
Printf
(
"add/remove track: %v"
,
err
,
)
}
case
trackActionKeyframe
:
kfNeeded
=
true
default
:
log
.
Printf
(
"Unknown action"
)
}
default
:
break
inner
}
}
bytes
,
_
,
err
:=
track
.
track
.
Read
(
buf
)
if
err
!=
nil
{
if
err
!=
io
.
EOF
{
...
...
@@ -103,31 +133,18 @@ func readLoop(conn *rtpUpConnection, track *rtpUpTrack) {
writers
.
write
(
packet
.
SequenceNumber
,
index
,
delay
,
isvideo
,
packet
.
Marker
)
select
{
case
action
:=
<-
track
.
localCh
:
switch
action
.
action
{
case
trackActionAdd
,
trackActionDel
:
err
:=
writers
.
add
(
action
.
track
,
action
.
action
==
trackActionAdd
,
)
now
:=
time
.
Now
()
if
kfNeeded
&&
now
.
Sub
(
kfRequested
)
>
time
.
Second
/
2
{
if
sendPLI
{
err
:=
conn
.
sendPLI
(
track
)
if
err
!=
nil
{
log
.
Printf
(
"add/remove track: %v"
,
err
)
log
.
Printf
(
"sendPLI: %v"
,
err
)
kfNeeded
=
false
}
case
trackActionKeyframe
:
kfNeeded
=
true
default
:
log
.
Printf
(
"Unknown action %v"
,
action
.
action
)
}
default
:
}
if
kfNeeded
{
err
:=
conn
.
sendPLI
(
track
)
if
err
!=
nil
&&
err
!=
ErrRateLimited
{
log
.
Printf
(
"sendPLI: %v"
,
err
)
}
else
{
kfNeeded
=
false
}
kfRequested
=
now
}
}
}
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