Skip to content

Tags: pion/webrtc

Tags

v4.1.6

Toggle v4.1.6's commit message
Handle nil stats getter in collect stats

It is possible to call GetStats() after the peer connection is closed.
The statsGetter gets cleared when peer connection is closed. That is
causing a panic when RtpReceiver.collectStats runs.

v4.1.5

Toggle v4.1.5's commit message
Add interface for getting media-playout stats

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.