Source File
rtpcodingparameters.go
Belonging Package
github.com/pion/webrtc/v4
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>// SPDX-License-Identifier: MITpackage webrtc// RTPRtxParameters dictionary contains information relating to retransmission (RTX) settings.// https://draft.ortc.org/#dom-rtcrtprtxparameterstype RTPRtxParameters struct {SSRC SSRC `json:"ssrc"`}// RTPFecParameters dictionary contains information relating to forward error correction (FEC) settings.// https://draft.ortc.org/#dom-rtcrtpfecparameterstype RTPFecParameters struct {SSRC SSRC `json:"ssrc"`}// 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-rtcrtpcodingparameterstype RTPCodingParameters struct {RID string `json:"rid"`SSRC SSRC `json:"ssrc"`PayloadType PayloadType `json:"payloadType"`RTX RTPRtxParameters `json:"rtx"`FEC RTPFecParameters `json:"fec"`}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |