From 6928a0367c029bcb4338a1b4a7114521c7ddc7de 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 eec5d97..36a00d8 100644 --- a/rtpconn/rtpconn.go +++ b/rtpconn/rtpconn.go @@ -861,7 +861,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()))