Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
17 lines (15 sloc)
641 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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-3 | |
type 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-3 | |
type PayloadType uint8 |