Update to RingRTC v2.18.0

This commit is contained in:
Jim Gustafson
2022-02-04 06:30:34 -08:00
committed by Alex Hart
parent b447f98f45
commit e2d86067cc
7 changed files with 9 additions and 4 deletions

View File

@@ -46,6 +46,7 @@ class GroupNetworkUnavailableActionProcessor extends WebRtcActionProcessor {
GroupCall groupCall = webRtcInteractor.getCallManager().createGroupCall(groupId,
SignalStore.internalValues().groupCallingServer(),
new byte[0],
null,
AudioProcessingMethodSelector.get(),
webRtcInteractor.getGroupCallObserver());

View File

@@ -45,6 +45,7 @@ public class GroupPreJoinActionProcessor extends GroupActionProcessor {
GroupCall groupCall = webRtcInteractor.getCallManager().createGroupCall(groupId,
SignalStore.internalValues().groupCallingServer(),
new byte[0],
null,
AudioProcessingMethodSelector.get(),
webRtcInteractor.getGroupCallObserver());

View File

@@ -75,6 +75,7 @@ public class IncomingCallActionProcessor extends DeviceAwareActionProcessor {
iceServers,
hideIp,
NetworkUtil.getCallingBandwidthMode(context),
null,
false);
} catch (CallException e) {
return callFailure(currentState, "Unable to proceed with call: ", e);

View File

@@ -170,6 +170,7 @@ public final class IncomingGroupCallActionProcessor extends DeviceAwareActionPro
GroupCall groupCall = webRtcInteractor.getCallManager().createGroupCall(groupId,
SignalStore.internalValues().groupCallingServer(),
new byte[0],
null,
AudioProcessingMethodSelector.get(),
webRtcInteractor.getGroupCallObserver());

View File

@@ -112,6 +112,7 @@ public class OutgoingCallActionProcessor extends DeviceAwareActionProcessor {
iceServers,
isAlwaysTurn,
NetworkUtil.getCallingBandwidthMode(context),
null,
currentState.getCallSetupState(activePeer).isEnableVideoOnCreate());
} catch (CallException e) {
return callFailure(currentState, "Unable to proceed with call: ", e);