Source File
webrtc.go
Belonging Package
github.com/pion/webrtc/v4
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>// SPDX-License-Identifier: MIT// Package webrtc implements the WebRTC 1.0 as defined in W3C WebRTC specification document.package webrtc// SSRC represents a synchronization source// A synchronization source is a randomly chosen// value meant to be globally unique within a particular// RTP session. Used to identify a single stream of media.//// https://tools.ietf.org/html/rfc3550#section-3type SSRC uint32// PayloadType identifies the format of the RTP payload and determines// its interpretation by the application. Each codec in a RTP Session// will have a different PayloadType//// https://tools.ietf.org/html/rfc3550#section-3type PayloadType uint8
![]() |
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. |