mirror of
https://github.com/pion/webrtc.git
synced 2025-09-27 03:25:58 +08:00

The Pion WebRTC API has been dramatically redesigned. The design docs are located here [0] You can also read the release notes [1] on how to migrate your application. [0] https://github.com/pion/webrtc-v3-design [1] https://github.com/pion/webrtc/wiki/Release-WebRTC@v3.0.0
11 lines
404 B
Go
11 lines
404 B
Go
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 {
|
|
RID string `json:"rid"`
|
|
SSRC SSRC `json:"ssrc"`
|
|
PayloadType PayloadType `json:"payloadType"`
|
|
}
|