Files
webrtc/pkg/rtcp/packet.go
2018-09-22 16:58:10 -07:00

8 lines
225 B
Go

package rtcp
// Packet represents an RTCP packet, a protocol used for out-of-band statistics and control information for an RTP session
type Packet interface {
Marshal() ([]byte, error)
Unmarshal(rawPacket []byte) error
}