Files

10 lines
356 B
Go
Raw Permalink Normal View History

2019-01-24 01:03:55 -08:00
package webrtc
2019-02-15 13:19:39 -08:00
// RTPCodingParameters provides information relating to both encoding and decoding.
2019-01-24 01:03:55 -08:00
// This is a subset of the RFC since Pion WebRTC doesn't implement encoding/decoding itself
// http://draft.ortc.org/#dom-rtcrtpcodingparameters
2019-02-15 13:19:39 -08:00
type RTPCodingParameters struct {
2019-01-24 01:03:55 -08:00
SSRC uint32 `json:"ssrc"`
PayloadType uint8 `json:"payloadType"`
}