Files
webrtc/rtcrtpdecodingparameters.go
Sean DuBois 3c37b6c4b4 Add RTCRtpCodingParameters for ORTC
This is a minimal subset of ORTC, but since we don't encode/decode
ourselves all we really care about is ssrc and PayloadType

Relates to #312
2019-01-27 21:12:08 -08:00

9 lines
308 B
Go

package webrtc
// RTCRtpDecodingParameters provides information relating to both encoding and decoding.
// This is a subset of the RFC since Pion WebRTC doesn't implement decoding itself
// http://draft.ortc.org/#dom-rtcrtpdecodingparameters
type RTCRtpDecodingParameters struct {
RTCRtpCodingParameters
}