Files

9 lines
299 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
// RTPDecodingParameters 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 decoding itself
// http://draft.ortc.org/#dom-rtcrtpdecodingparameters
2019-02-15 13:19:39 -08:00
type RTPDecodingParameters struct {
RTPCodingParameters
2019-01-24 01:03:55 -08:00
}