Browse Source

chore(deps) lib-jitsi-meet@latest

* fix(SDP): Add missing msid for p2p sources.
* fix(TPC): Don't convert plan-b<->unified-plan SDPs for p2p.
* squash: Implement review comments.
* fix(JingleSessionPC): Do not try to re-use inactive mid for new remote ssrcs. The direction was marked as 'inactive' only on Firefox as Safari had audio issues when an inactive mid is re-used. Chrome (in unified-plan) needs the direction of the mid in remote desc to be set to 'inactive' for a 'removetrack' to be fired on the associated media stream whenever a remote source is removed.
* fix(SDP): Drop SSRCs whenever the transceiver direction is 'inactive' or 'recvonly'. This is needed only for JVB connections. Add unit tests for LocalSdpMunger.
* fix: Ignore startAudioMuted/startVideoMuted for p2p. The tracks will not be added when the call switches from jvb to p2p for an endpoint that joins muted by focus.
* fix(RTC): Do not suppress the source updates on Firefox. If the msid attribute is missing, then remove the ssrc from the transformed description so that a source-remove is signaled to Jicofo. This happens when the direction of the transceiver (or m-line) is set to 'inactive' or 'recvonly' on Firefox. Not signaling these source updates creates issues with remote track handling on the other endpoints in the call.
* fix(RTC): Set transceiver direction after RTCRtpSender#replaceTrack. This fixes the issue where TRACK_REMOVED event is not fired when a remote track is removed from the peerconnection. Fixes https://github.com/jitsi/lib-jitsi-meet/issues/1612 and https://github.com/jitsi/jitsi-meet/issues/8482.

60c5667957/...be3e2a69f278f98c5f6f007cef268a9415334241
j8
Jaya Allamsetty 3 years ago
parent
commit
b39e5968bf
2 changed files with 6 additions and 7 deletions
  1. 5
    6
      package-lock.json
  2. 1
    1
      package.json

+ 5
- 6
package-lock.json View File

@@ -2740,9 +2740,8 @@
2740 2740
       }
2741 2741
     },
2742 2742
     "@jitsi/sdp-interop": {
2743
-      "version": "1.0.3",
2744
-      "resolved": "https://registry.npmjs.org/@jitsi/sdp-interop/-/sdp-interop-1.0.3.tgz",
2745
-      "integrity": "sha512-3dua2TTDWwpFpdEl+sMEei4d/+VgVXMpQRCPdvzzOidiiHnJ0vAJONfndKJmhhaqYv+e71Ry5IPGV1ZSWjIDJw==",
2743
+      "version": "github:jitsi/sdp-interop#5fc4af6dcf8a6e6af9fedbcd654412fd47b1b4ae",
2744
+      "from": "github:jitsi/sdp-interop#5fc4af6dcf8a6e6af9fedbcd654412fd47b1b4ae",
2746 2745
       "requires": {
2747 2746
         "lodash.clonedeep": "4.5.0",
2748 2747
         "sdp-transform": "2.3.0"
@@ -11065,11 +11064,11 @@
11065 11064
       }
11066 11065
     },
11067 11066
     "lib-jitsi-meet": {
11068
-      "version": "github:jitsi/lib-jitsi-meet#60c566795718ad4fe28f31113479ee8bb3c78e5f",
11069
-      "from": "github:jitsi/lib-jitsi-meet#60c566795718ad4fe28f31113479ee8bb3c78e5f",
11067
+      "version": "github:jitsi/lib-jitsi-meet#be3e2a69f278f98c5f6f007cef268a9415334241",
11068
+      "from": "github:jitsi/lib-jitsi-meet#be3e2a69f278f98c5f6f007cef268a9415334241",
11070 11069
       "requires": {
11071 11070
         "@jitsi/js-utils": "1.0.2",
11072
-        "@jitsi/sdp-interop": "1.0.3",
11071
+        "@jitsi/sdp-interop": "github:jitsi/sdp-interop#5fc4af6dcf8a6e6af9fedbcd654412fd47b1b4ae",
11073 11072
         "@jitsi/sdp-simulcast": "0.4.0",
11074 11073
         "async": "0.9.0",
11075 11074
         "base64-js": "1.3.1",

+ 1
- 1
package.json View File

@@ -54,7 +54,7 @@
54 54
     "jquery-i18next": "1.2.1",
55 55
     "js-md5": "0.6.1",
56 56
     "jwt-decode": "2.2.0",
57
-    "lib-jitsi-meet": "github:jitsi/lib-jitsi-meet#60c566795718ad4fe28f31113479ee8bb3c78e5f",
57
+    "lib-jitsi-meet": "github:jitsi/lib-jitsi-meet#be3e2a69f278f98c5f6f007cef268a9415334241",
58 58
     "libflacjs": "github:mmig/libflac.js#93d37e7f811f01cf7d8b6a603e38bd3c3810907d",
59 59
     "lodash": "4.17.21",
60 60
     "moment": "2.29.1",

Loading…
Cancel
Save