webrtc.go 641 B

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