mirror of
https://github.com/pion/webrtc.git
synced 2025-10-30 18:26:36 +08:00
8 lines
225 B
Go
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
|
|
}
|