mirror of
https://github.com/jech/galene.git
synced 2024-11-09 18:25:58 +01:00
Fix typo in REMB sending.
This commit is contained in:
parent
d0ef6a2c0f
commit
6928a0367c
1 changed files with 1 additions and 1 deletions
|
@ -861,7 +861,7 @@ func sendUpRTCP(conn *rtpUpConnection) error {
|
||||||
|
|
||||||
var ssrcs []uint32
|
var ssrcs []uint32
|
||||||
for _, t := range tracks {
|
for _, t := range tracks {
|
||||||
if t.hasRtcpFb("goog-remb", "") {
|
if !t.hasRtcpFb("goog-remb", "") {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
ssrcs = append(ssrcs, uint32(t.track.SSRC()))
|
ssrcs = append(ssrcs, uint32(t.track.SSRC()))
|
||||||
|
|
Loading…
Reference in a new issue