Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pion/webrtc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0.29
Choose a base ref
...
head repository: pion/webrtc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.0.30
Choose a head ref
  • 9 commits
  • 21 files changed
  • 5 contributors

Commits on May 7, 2021

  1. Optimise mux.dispatch

    Uncurry the function MuxRange and avoid allocating a reader in
    isRTCP.  The included benchmark indicates that we avoid five
    allocations per packet.
    jech authored and Sean-Der committed May 7, 2021
    Configuration menu
    Copy the full SHA
    d625f6f View commit details
    Browse the repository at this point in the history

Commits on May 26, 2021

  1. Fix infinitate loop possible in sample builder

    Active becomes "empty" after consuming the packets, but instead of the
    "filled" getting purged by "purgeConsumedBuffers", it doesn't because
    active is now empty and empty buffers cannot cause any purging. So the
    solution is to purge the "consumed" area first, then "active".
    
    Fixes #1810
    robin-raymond authored and Sean DuBois committed May 26, 2021
    Configuration menu
    Copy the full SHA
    f7f760f View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2021

  1. Implemented RTPReceiver SetRTPParameters for ORTC

    RID is now set on remote tracks, if provided
    Adds SetRTPParameters which can be used in ORTC to set codec information
    about the remote track
    Antonito committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    41243cd View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2021

  1. Avoid crash in samplebuilder.PopWithTimestamp

    If sample is null, PopWithTimestamp will crash with SIGSEGV.
    jech authored and Sean-Der committed Jun 20, 2021
    Configuration menu
    Copy the full SHA
    11f6a65 View commit details
    Browse the repository at this point in the history
  2. Fixed deadlock in peerconnection.go

    In some rare cases during ice connection stage
    change may result in deadlock. This fix makes
    iceConnectionState and connectionState atomic
    which should prevent deadlock.
    digitalix authored and Sean-Der committed Jun 20, 2021
    Configuration menu
    Copy the full SHA
    7948437 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2021

  1. Support PayloadTypes changing a TrackRemote

    If the PayloadType changes for a SSRC update the codec on the
    TrackRemote.
    
    Resolves #1850
    digitalix authored and Sean-Der committed Jun 27, 2021
    Configuration menu
    Copy the full SHA
    f8a8c09 View commit details
    Browse the repository at this point in the history
  2. Update module github.com/pion/interceptor

    Generated by renovateBot
    renovate-bot authored and Sean-Der committed Jun 27, 2021
    Configuration menu
    Copy the full SHA
    3bee940 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2021

  1. Implement SetCodecPreferences in RTPTransceiver

    This allows to set supported codecs per transceiver.
    
    Resolves #1847
    digitalix authored and Sean-Der committed Jun 28, 2021
    Configuration menu
    Copy the full SHA
    f524fea View commit details
    Browse the repository at this point in the history
  2. Update golang.org/x/net commit hash to 04defd4

    Generated by renovateBot
    renovate-bot authored and Sean-Der committed Jun 28, 2021
    Configuration menu
    Copy the full SHA
    1ba27d8 View commit details
    Browse the repository at this point in the history
Loading