8000 Tags · pion/webrtc · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: pion/webrtc

Tags

v4.0.7

Toggle v4.0.7's commit message
Close interceptor after PeerConnection is closed

v4.0.6

Toggle v4.0.6's commit message
Add EnableDataChannelBlockWrite to SettingEngine

The settingengine can enabled block write if
datachannel is detached, makes it working like
a normal net.Conn.

v3.3.5

Toggle v3.3.5's commit message
Use intersection of codecs to generate rtcp-fb

Update MediaEngine codec creation to take into account remote
and local rtcp-fb. Before we would incorrectly always take
the remote rtcp-fb and ignore local.

Resolves #2943
Resolves #2944
Resolves #1968

v4.0.5

Toggle v4.0.5's commit message
Add option to disable close by dtls

Close peerconnection on DTLS.CloseNotify
could break ice restart with dtls restart,
when the dtls finger-print changed, the
browser could teardown the old dtlstransport
and establish new one then pion could close
the peerconnection and restart failed. So
browser don't do this and spec also don't
say peerconnection should close when dtls
is closed.

v4.0.4

Toggle v4.0.4's commit message
Fix nil rtcpInterceptor on track.Bind

Create rtcpInterceptor before bind called.

v4.0.3

Toggle v4.0.3's commit message
Update module github.com/pion/ice/v4 to v4.0.3

v4.0.2

Toggle v4.0.2's commit message
Only collect single fingerprints/ICE credentials

The way currently DTLS fingerprints and ICE credentials
are picked is causing interop issues as described in #2621

Peers which don't use Bundle can use different fingerprints
and credentials in each media section. Even though is
not (yet) supported by Pion, receiving an SDP offer from
such a peer is valid.

Additionally if Bundle is being used the group attribute
determines which media section is the master bundle section,
which establishes the transport. Currently Pion always
just uses the first credentials/fingerprint it can find
in the SDP, which results in not spec compliant behavior.

This PR attempts to fix the above issues and make
Pion more spec compliant and interoperable.

Fixes #2621

v4.0.1

Toggle v4.0.1's commit message
Add SetFireOnTrackBeforeFirstRTP

v4.0.0

Toggle v4.0.0's commit message
Add v4 Release Notes to README

v4.0.0-beta.34

Toggle v4.0.0-beta.34's commit message
Add missing a=ssrc lines for RTX/FEC

Pion extracts them from ssrc-group line so this didn't failed
Pion<->Pion. Chrome/FireFox uses the dedicated a=ssrc lines and our
Offer/Answer would break negotation

Fixes #2922
0