Remove rtc prefix from filenames

Relates to #408
This commit is contained in:
Max Hawkins
2019-02-15 13:47:55 -08:00
parent 0e7086d37a
commit 0647ce9c26
87 changed files with 0 additions and 0 deletions

9
rtpcodingparameters.go Normal file
View File

@@ -0,0 +1,9 @@
package webrtc
// RTPCodingParameters provides information relating to both encoding and decoding.
// This is a subset of the RFC since Pion WebRTC doesn't implement encoding/decoding itself
// http://draft.ortc.org/#dom-rtcrtpcodingparameters
type RTPCodingParameters struct {
SSRC uint32 `json:"ssrc"`
PayloadType uint8 `json:"payloadType"`
}