synchronize renegotiate to avoid race condition when that fails
This commit is contained in:
parent
359b2150eb
commit
a46246c423
|
@ -2482,7 +2482,7 @@ public class JingleRtpConnection extends AbstractJingleConnection
|
|||
this.webRTCWrapper.execute(this::renegotiate);
|
||||
}
|
||||
|
||||
private void renegotiate() {
|
||||
private synchronized void renegotiate() {
|
||||
final SessionDescription sessionDescription;
|
||||
try {
|
||||
sessionDescription = setLocalSessionDescription();
|
||||
|
@ -2531,11 +2531,12 @@ public class JingleRtpConnection extends AbstractJingleConnection
|
|||
+ this.webRTCWrapper.getSignalingState());
|
||||
}
|
||||
|
||||
if (diff.added.size() > 0) {
|
||||
if (diff.added.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
modifyLocalContentMap(rtpContentMap);
|
||||
sendContentAdd(rtpContentMap, diff.added);
|
||||
}
|
||||
}
|
||||
|
||||
private void initiateIceRestart(final RtpContentMap rtpContentMap) {
|
||||
final RtpContentMap transportInfo = rtpContentMap.transportInfo();
|
||||
|
|
Loading…
Reference in a new issue