mirror of
https://github.com/jech/galene.git
synced 2024-11-10 02:35:58 +01:00
Ignore PLI and NACK for muted tracks.
This commit is contained in:
parent
6ba5315a48
commit
4173d6170e
1 changed files with 6 additions and 0 deletions
|
@ -598,6 +598,9 @@ func rtcpDownListener(g *group, conn *downConnection, track *downTrack, s *webrt
|
||||||
for _, p := range ps {
|
for _, p := range ps {
|
||||||
switch p := p.(type) {
|
switch p := p.(type) {
|
||||||
case *rtcp.PictureLossIndication:
|
case *rtcp.PictureLossIndication:
|
||||||
|
if track.muted() {
|
||||||
|
continue
|
||||||
|
}
|
||||||
err := conn.remote.sendPLI(track.remote)
|
err := conn.remote.sendPLI(track.remote)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("sendPLI: %v", err)
|
log.Printf("sendPLI: %v", err)
|
||||||
|
@ -625,6 +628,9 @@ func rtcpDownListener(g *group, conn *downConnection, track *downTrack, s *webrt
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
case *rtcp.TransportLayerNack:
|
case *rtcp.TransportLayerNack:
|
||||||
|
if track.muted() {
|
||||||
|
continue
|
||||||
|
}
|
||||||
sendRecovery(p, track)
|
sendRecovery(p, track)
|
||||||
default:
|
default:
|
||||||
log.Printf("RTCP: %T", p)
|
log.Printf("RTCP: %T", p)
|
||||||
|
|
Loading…
Reference in a new issue