rtpdecodingparameters.go 299 B

12345678
  1. package webrtc
  2. // RTPDecodingParameters provides information relating to both encoding and decoding.
  3. // This is a subset of the RFC since Pion WebRTC doesn't implement decoding itself
  4. // http://draft.ortc.org/#dom-rtcrtpdecodingparameters
  5. type RTPDecodingParameters struct {
  6. RTPCodingParameters
  7. }