transportccextension.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. package rtp
  2. import (
  3. "encoding/binary"
  4. )
  5. const (
  6. // transport-wide sequence
  7. transportCCExtensionSize = 2
  8. )
  9. // TransportCCExtension is a extension payload format in
  10. // https://tools.ietf.org/html/draft-holmer-rmcat-transport-wide-cc-extensions-01
  11. // 0 1 2 3
  12. // 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  13. // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  14. // | 0xBE | 0xDE | length=1 |
  15. // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  16. // | ID | L=1 |transport-wide sequence number | zero padding |
  17. // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  18. type TransportCCExtension struct {
  19. TransportSequence uint16
  20. }
  21. // Marshal serializes the members to buffer
  22. func (t TransportCCExtension) Marshal() ([]byte, error) {
  23. buf := make([]byte, transportCCExtensionSize)
  24. binary.BigEndian.PutUint16(buf[0:2], t.TransportSequence)
  25. return buf, nil
  26. }
  27. // Unmarshal parses the passed byte slice and stores the result in the members
  28. func (t *TransportCCExtension) Unmarshal(rawData []byte) error {
  29. if len(rawData) < transportCCExtensionSize {
  30. return errTooSmall
  31. }
  32. t.TransportSequence = binary.BigEndian.Uint16(rawData[0:2])
  33. return nil
  34. }