From ed88a7a4b5d6683dc8389c84ce95ff9e3a8bd5ad Mon Sep 17 00:00:00 2001 From: Juliusz Chroboczek Date: Sat, 8 May 2021 18:44:36 +0200 Subject: [PATCH] Fix typo in REMB sending. --- rtpconn/rtpconn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtpconn/rtpconn.go b/rtpconn/rtpconn.go index 0fa82a6..837cd44 100644 --- a/rtpconn/rtpconn.go +++ b/rtpconn/rtpconn.go @@ -826,7 +826,7 @@ func sendUpRTCP(conn *rtpUpConnection) error { var ssrcs []uint32 for _, t := range tracks { - if t.hasRtcpFb("goog-remb", "") { + if !t.hasRtcpFb("goog-remb", "") { continue } ssrcs = append(ssrcs, uint32(t.track.SSRC()))