mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
We can now send trickle ice candidates immediately
// FREEBIE
This commit is contained in:
parent
2c4c0f1349
commit
338f8de787
@ -170,7 +170,6 @@ public class WebRtcCallService extends Service implements InjectableType, PeerCo
|
|||||||
@Nullable private Recipient recipient;
|
@Nullable private Recipient recipient;
|
||||||
@Nullable private PeerConnectionWrapper peerConnection;
|
@Nullable private PeerConnectionWrapper peerConnection;
|
||||||
@Nullable private DataChannel dataChannel;
|
@Nullable private DataChannel dataChannel;
|
||||||
@Nullable private List<IceUpdateMessage> pendingIceUpdates;
|
|
||||||
|
|
||||||
@Nullable public static SurfaceViewRenderer localRenderer;
|
@Nullable public static SurfaceViewRenderer localRenderer;
|
||||||
@Nullable public static SurfaceViewRenderer remoteRenderer;
|
@Nullable public static SurfaceViewRenderer remoteRenderer;
|
||||||
@ -383,7 +382,6 @@ public class WebRtcCallService extends Service implements InjectableType, PeerCo
|
|||||||
this.callState = CallState.STATE_DIALING;
|
this.callState = CallState.STATE_DIALING;
|
||||||
this.recipient = getRemoteRecipient(intent);
|
this.recipient = getRemoteRecipient(intent);
|
||||||
this.callId = SecureRandom.getInstance("SHA1PRNG").nextLong();
|
this.callId = SecureRandom.getInstance("SHA1PRNG").nextLong();
|
||||||
this.pendingIceUpdates = new LinkedList<>();
|
|
||||||
|
|
||||||
initializeVideo();
|
initializeVideo();
|
||||||
|
|
||||||
@ -451,26 +449,11 @@ public class WebRtcCallService extends Service implements InjectableType, PeerCo
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (peerConnection == null || pendingIceUpdates == null) {
|
if (peerConnection == null) {
|
||||||
throw new AssertionError("assert");
|
throw new AssertionError("assert");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!pendingIceUpdates.isEmpty()) {
|
|
||||||
ListenableFutureTask<Boolean> listenableFutureTask = sendMessage(recipient, SignalServiceCallMessage.forIceUpdates(pendingIceUpdates));
|
|
||||||
|
|
||||||
listenableFutureTask.addListener(new FailureListener<Boolean>(callState, callId) {
|
|
||||||
@Override
|
|
||||||
public void onFailureContinue(Throwable error) {
|
|
||||||
Log.w(TAG, error);
|
|
||||||
sendMessage(WebRtcViewModel.State.NETWORK_FAILURE, recipient, localVideoEnabled, remoteVideoEnabled, bluetoothAvailable, microphoneEnabled);
|
|
||||||
|
|
||||||
terminate();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
this.peerConnection.setRemoteDescription(new SessionDescription(SessionDescription.Type.ANSWER, intent.getStringExtra(EXTRA_REMOTE_DESCRIPTION)));
|
this.peerConnection.setRemoteDescription(new SessionDescription(SessionDescription.Type.ANSWER, intent.getStringExtra(EXTRA_REMOTE_DESCRIPTION)));
|
||||||
this.pendingIceUpdates = null;
|
|
||||||
} catch (PeerConnectionException e) {
|
} catch (PeerConnectionException e) {
|
||||||
Log.w(TAG, e);
|
Log.w(TAG, e);
|
||||||
terminate();
|
terminate();
|
||||||
@ -501,12 +484,6 @@ public class WebRtcCallService extends Service implements InjectableType, PeerCo
|
|||||||
intent.getIntExtra(EXTRA_ICE_SDP_LINE_INDEX, 0),
|
intent.getIntExtra(EXTRA_ICE_SDP_LINE_INDEX, 0),
|
||||||
intent.getStringExtra(EXTRA_ICE_SDP));
|
intent.getStringExtra(EXTRA_ICE_SDP));
|
||||||
|
|
||||||
if (pendingIceUpdates != null) {
|
|
||||||
Log.w(TAG, "Adding to pending ice candidates...");
|
|
||||||
this.pendingIceUpdates.add(iceUpdateMessage);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
ListenableFutureTask<Boolean> listenableFutureTask = sendMessage(recipient, SignalServiceCallMessage.forIceUpdate(iceUpdateMessage));
|
ListenableFutureTask<Boolean> listenableFutureTask = sendMessage(recipient, SignalServiceCallMessage.forIceUpdate(iceUpdateMessage));
|
||||||
|
|
||||||
listenableFutureTask.addListener(new FailureListener<Boolean>(callState, callId) {
|
listenableFutureTask.addListener(new FailureListener<Boolean>(callState, callId) {
|
||||||
@ -886,7 +863,6 @@ public class WebRtcCallService extends Service implements InjectableType, PeerCo
|
|||||||
this.microphoneEnabled = true;
|
this.microphoneEnabled = true;
|
||||||
this.localVideoEnabled = false;
|
this.localVideoEnabled = false;
|
||||||
this.remoteVideoEnabled = false;
|
this.remoteVideoEnabled = false;
|
||||||
this.pendingIceUpdates = null;
|
|
||||||
lockManager.updatePhoneState(LockManager.PhoneState.IDLE);
|
lockManager.updatePhoneState(LockManager.PhoneState.IDLE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user