github.com/pion/webrtc/v4@v4.0.1/webrtc.go (about) 1 // SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly> 2 // SPDX-License-Identifier: MIT 3 4 // Package webrtc implements the WebRTC 1.0 as defined in W3C WebRTC specification document. 5 package webrtc 6 7 // SSRC represents a synchronization source 8 // A synchronization source is a randomly chosen 9 // value meant to be globally unique within a particular 10 // RTP session. Used to identify a single stream of media. 11 // 12 // https://tools.ietf.org/html/rfc3550#section-3 13 type SSRC uint32 14 15 // PayloadType identifies the format of the RTP payload and determines 16 // its interpretation by the application. Each codec in a RTP Session 17 // will have a different PayloadType 18 // 19 // https://tools.ietf.org/html/rfc3550#section-3 20 type PayloadType uint8