1
Fork 0

Don't log unknown RTCP.

This commit is contained in:
Juliusz Chroboczek 2020-04-29 20:36:31 +02:00
parent 4173d6170e
commit 4996cf6931
1 changed files with 0 additions and 4 deletions

View File

@ -377,8 +377,6 @@ func rtcpUpListener(conn *upConnection, track *upTrack, r *webrtc.RTPReceiver) {
atomic.StoreUint32(&track.lastSenderReport,
uint32(p.NTPTime>>16))
case *rtcp.SourceDescription:
default:
log.Printf("RTCP: %T", p)
}
}
}
@ -632,8 +630,6 @@ func rtcpDownListener(g *group, conn *downConnection, track *downTrack, s *webrt
continue
}
sendRecovery(p, track)
default:
log.Printf("RTCP: %T", p)
}
}
}