Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: wtfpewfn/webrtc

Tags

v3.0.0-beta.12

Toggle v3.0.0-beta.12's commit message
Add pkg/media/h264reader

H264Reader reads a stream of Annex B H264 and packetizes into a NAL at a
time. This then can easily be passed into pion/rtp

v3.0.0-beta.11

Toggle v3.0.0-beta.11's commit message
Add RTPTransceiver.SetSender

This non-standard API allows us to re-use existing transceivers.
The WebRTC API causes SDP bloat right now since it doesn't allow
the re-use of existing media sections.

v3.0.0-beta.10

Toggle v3.0.0-beta.10's commit message
hold lock for checkNegotiationNeeded transceiver checks

v3.0.0-beta.9

Toggle v3.0.0-beta.9's commit message
Fix sender nil on negotiation check step 5.3.1

v3.0.0-beta.8

Toggle v3.0.0-beta.8's commit message
Update pion/ice

v2.0.8 => v2.0.9

v3.0.0-beta.7

Toggle v3.0.0-beta.7's commit message
Don't lose packet for OnTrack PayloadType probe

Dropping a packet at the beginning of every track is bad, since
it corrupts the first keyframe of each video track.  This works
by adding a peek method to Track, and using it in NewTrack.

The peeked data is protected by the RWLock already associated
with the track.  We check for its presence with the reader lock
taken, which avoids taking the writer lock (or doing an atomic read)
in the common case (no peeked data).

Fixes pion#1001

v3.0.0-beta.6

Toggle v3.0.0-beta.6's commit message
Update CI configs to v0.4.7

Update lint scripts and CI configs.

v2.2.26

Toggle v2.2.26's commit message
Fix conversion from untyped int

New issue with Go v1.15, already fixed in master

v3.0.0-beta.5

Toggle v3.0.0-beta.5's commit message
Update module pion/sdp/v3 to v3.0.1

Generated by renovateBot

v2.2.25

Toggle v2.2.25's commit message
Update pion/sctp and pion/datachannel vers

Relates to pion#1396