blob: 09481a5702b18663a77f2ed9e5c8b384ac0d34cc (
plain)
1
2
3
4
5
6
7
8
|
package webrtc
// RTPEncodingParameters provides information relating to both encoding and decoding.
// This is a subset of the RFC since Pion WebRTC doesn't implement encoding itself
// http://draft.ortc.org/#dom-rtcrtpencodingparameters
type RTPEncodingParameters struct {
RTPCodingParameters
}
|