Issue in ios webrtc v114.xx
RTCSessionDescription *localSdp = [[RTCSessionDescription alloc] initWithType:sdp.type sdp:localSdpStr];
RTCPeerConnection *strongPc = weakPc;
[strongPc setLocalDescription:localSdp
completionHandler:^(NSError *error){
if(error) {
WLog(@”Failed to set SDP: %@”, error.description);
} else{
DLog(@”arpit – Inside if Trickle Mode 263″);
if (_isTrickling) {
[self sendSdpFromLocalDescription];
}
}
}];
Now while we are accessing the local description, code is getting stuck.
_peerConnection.localDescription
We are using webrtc version 114.xx
Someone plz help.
Read more here: Source link