Skip to content

Tags: pion/webrtc

Tags

v4.1.4

Toggle v4.1.4's commit message
Do not create receiver for ealy media in offerer

For offerer, if the remote side sends early media
before the remote description (answer) is received,
the undeclared SSRC processor can create a receiver
and that receiver could be left dangling as
transceiver `mid` is not updated from remote
description answer.

Still leaving the simulcast probe path and only
avoiding creating a receiver for non-simulcast path.

Add a flag `handleUndeclaredSSRCWithoutAnswer` to control handling
of early media without SDP answer for non-simulcast tracks.
The default behaviour is to not process early media without SDP answer.

v3.3.6

Toggle v3.3.6's commit message
 Update module github.com/pion/ice/v2 to v2.3.38

v4.1.3

Toggle v4.1.3's commit message
H265 reader & writer

H265 raeder & writer

v4.1.2

Toggle v4.1.2's commit message
Updated Test_TrackLocalStatic_Padding test

Use custom packetizer in Test_TrackLocalStatic_Padding to verify that
padding added in different ways works.

v4.1.1

Toggle v4.1.1's commit message
Add methods for tweaking sctp cc to settingending

Relate: pion/sctp#354

v4.1.0

Toggle v4.1.0's commit message
Fix MIME type comparisons to be case-insensitive

v4.0.16

Toggle v4.0.16's commit message
Pass Configured MTU into SCTP

Before pion/sctp would always do 1228

v4.0.15

Toggle v4.0.15's commit message
Added SCTPTransport.BufferedAmount

It simplifies tracking amount of unsent data for all data channels,
including ones in closing state. Especially useful for IoT apps
which use multiple data channels and have to monitor memory usage.

v4.0.14

Toggle v4.0.14's commit message

Verified

This commit was signed with the committer’s verified signature.
JoeTurki Joe Turki
Resolve undeclared SSRC using the payload type

Introduces a fallback mechanism to handle undeclared SSRCs from multiple
sections using the RTP stream's payload type. For legacy clients
without MID extension support, it documents the existing behavior for
handling undeclared SSRCs in single media sections.

v4.0.13

Toggle v4.0.13's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Support DataChannel messages larger then MaxUint16

SCTP now internally can handle larger messages

Resolves #2712