Skip to content

Tags: pion/rtp

Tags

v1.10.2

Toggle v1.10.2's commit message
Marshal should not have extension after delete

v1.10.1

Toggle v1.10.1's commit message

Verified

This commit was signed with the committer’s verified signature.
JoTurk Jo Turk
Do not validate non spec obu-size

v1.10.0

Toggle v1.10.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix H265Payloader (#350)

v1.9.0

Toggle v1.9.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add H266 de/packetizer (#347)

* Add H266 de/packetizer

v1.8.27

Toggle v1.8.27's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add MarshalTo for zero-allocation extension marshalling (#344)

Add Marshal benchmarks for RTP extensions

Add benchmarks for Marshal method on:
- AbsSendTimeExtension
- AbsCaptureTimeExtension (with and without offset)
- AudioLevelExtension
- TransportCCExtension
- PlayoutDelayExtension
- VLA

v1.8.26

Toggle v1.8.26's commit message
Use atomic instead of lock in sequencer

v1.8.25

Toggle v1.8.25's commit message
Add SetExtensionWithProfile

Allows for conversion between RTP Header Extension Profiles easily.
'One Byte' packets can be updated without doing a full re-creating
of the Extension Headers.

Resolves #255
Resolves #249

v1.8.24

Toggle v1.8.24's commit message
Improve Header Unmarshal performance

No need to alloc empty slice if CSRC=0

v1.8.23

Toggle v1.8.23's commit message
Few fixes for Header.Unmarshal

- Skip one-byte padding with non-zero length as specified in RFC;
- Return proper header length when one-byte extension with ID=15 or
  one-byte padding with non-zero length was found;
- fixed check for end of extended header payloads;

v1.8.22

Toggle v1.8.22's commit message
Fix unmarshalling extension-only packet

Unmarshalling packets with extensions without RTP payload caused
'RTP header size insufficient for extension' error.
Fix data size check condition.