Upgrade pion/rtcp to v1.1.5

Closes #581
This commit is contained in:
Max Hawkins
2019-04-07 13:13:30 -07:00
parent dbde6114a2
commit 1e80cb7e46
4 changed files with 7 additions and 3 deletions

View File

@@ -123,7 +123,7 @@ func (r *RTPSender) Read(b []byte) (n int, err error) {
}
// ReadRTCP is a convenience method that wraps Read and unmarshals for you
func (r *RTPSender) ReadRTCP() (rtcp.CompoundPacket, error) {
func (r *RTPSender) ReadRTCP() (rtcp.Packet, error) {
b := make([]byte, receiveMTU)
i, err := r.Read(b)
if err != nil {