webrtc.go 743 B

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