mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-05-16 13:21:20 +01:00
Update to RingRTC v2.68.0
This commit is contained in:
committed by
jeffrey-signal
parent
1c77c9d3fb
commit
798bf3ec3e
+1
-1
@@ -97,7 +97,7 @@ class CallLinkPreJoinActionProcessor(
|
||||
|
||||
try {
|
||||
groupCall.setOutgoingAudioMuted(true)
|
||||
groupCall.setOutgoingVideoMuted(true)
|
||||
groupCall.setOutgoingVideoMuted(true, false)
|
||||
groupCall.setDataMode(NetworkUtil.getCallingDataMode(context, groupCall.localDeviceState.networkRoute.localAdapterType))
|
||||
Log.i(TAG, "Connecting to group call: " + currentState.callInfoState.callRecipient.id)
|
||||
groupCall.connect()
|
||||
|
||||
+2
-2
@@ -71,7 +71,7 @@ public class CallSetupActionProcessorDelegate extends WebRtcActionProcessor {
|
||||
try {
|
||||
CallManager callManager = webRtcInteractor.getCallManager();
|
||||
callManager.setAudioEnable(currentState.getLocalDeviceState().isMicrophoneEnabled());
|
||||
callManager.setVideoEnable(currentState.getLocalDeviceState().getCameraState().isEnabled());
|
||||
callManager.setVideoEnable(currentState.getLocalDeviceState().getCameraState().isEnabled(), false);
|
||||
} catch (CallException e) {
|
||||
return callFailure(currentState, "Enabling audio/video failed: ", e);
|
||||
}
|
||||
@@ -108,7 +108,7 @@ public class CallSetupActionProcessorDelegate extends WebRtcActionProcessor {
|
||||
if ((enable && camera.isInitialized()) || !enable) {
|
||||
try {
|
||||
CallManager callManager = webRtcInteractor.getCallManager();
|
||||
callManager.setVideoEnable(enable);
|
||||
callManager.setVideoEnable(enable, false);
|
||||
} catch (CallException e) {
|
||||
Log.w(tag, "Unable change video enabled state to " + enable, e);
|
||||
}
|
||||
|
||||
+1
-1
@@ -43,7 +43,7 @@ public class ConnectedCallActionProcessor extends DeviceAwareActionProcessor {
|
||||
Log.i(TAG, "handleSetEnableVideo(): call_id: " + currentState.getCallInfoState().requireActivePeer().getCallId());
|
||||
|
||||
try {
|
||||
webRtcInteractor.getCallManager().setVideoEnable(enable);
|
||||
webRtcInteractor.getCallManager().setVideoEnable(enable, false);
|
||||
} catch (CallException e) {
|
||||
return callFailure(currentState, "setVideoEnable() failed: ", e);
|
||||
}
|
||||
|
||||
+1
-1
@@ -91,7 +91,7 @@ public class GroupConnectedActionProcessor extends GroupActionProcessor {
|
||||
Camera camera = currentState.getVideoState().requireCamera();
|
||||
|
||||
try {
|
||||
groupCall.setOutgoingVideoMuted(!enable);
|
||||
groupCall.setOutgoingVideoMuted(!enable, false);
|
||||
} catch (CallException e) {
|
||||
return groupCallFailure(currentState, "Unable set video muted", e);
|
||||
}
|
||||
|
||||
+2
-2
@@ -73,7 +73,7 @@ public class GroupJoiningActionProcessor extends GroupActionProcessor {
|
||||
webRtcInteractor.updatePhoneState(WebRtcUtil.getInCallPhoneState(context, localVideoEnabled, remoteVideoEnabled));
|
||||
|
||||
try {
|
||||
groupCall.setOutgoingVideoMuted(!currentState.getLocalDeviceState().getCameraState().isEnabled());
|
||||
groupCall.setOutgoingVideoMuted(!currentState.getLocalDeviceState().getCameraState().isEnabled(), false);
|
||||
groupCall.setOutgoingAudioMuted(!currentState.getLocalDeviceState().isMicrophoneEnabled());
|
||||
groupCall.setDataMode(NetworkUtil.getCallingDataMode(context, device.getNetworkRoute().getLocalAdapterType()));
|
||||
} catch (CallException e) {
|
||||
@@ -146,7 +146,7 @@ public class GroupJoiningActionProcessor extends GroupActionProcessor {
|
||||
Camera camera = currentState.getVideoState().requireCamera();
|
||||
|
||||
try {
|
||||
groupCall.setOutgoingVideoMuted(!enable);
|
||||
groupCall.setOutgoingVideoMuted(!enable, false);
|
||||
} catch (CallException e) {
|
||||
return groupCallFailure(currentState, "Unable to set video muted", e);
|
||||
}
|
||||
|
||||
+2
-2
@@ -79,7 +79,7 @@ public class GroupPreJoinActionProcessor extends GroupActionProcessor {
|
||||
|
||||
try {
|
||||
groupCall.setOutgoingAudioMuted(true);
|
||||
groupCall.setOutgoingVideoMuted(true);
|
||||
groupCall.setOutgoingVideoMuted(true, false);
|
||||
groupCall.setDataMode(NetworkUtil.getCallingDataMode(context, groupCall.getLocalDeviceState().getNetworkRoute().getLocalAdapterType()));
|
||||
|
||||
Log.i(tag, "Connecting to group call: " + currentState.getCallInfoState().getCallRecipient().getId());
|
||||
@@ -197,7 +197,7 @@ public class GroupPreJoinActionProcessor extends GroupActionProcessor {
|
||||
|
||||
try {
|
||||
groupCall.setOutgoingVideoSource(currentState.getVideoState().requireLocalSink(), currentState.getVideoState().requireCamera());
|
||||
groupCall.setOutgoingVideoMuted(!currentState.getLocalDeviceState().getCameraState().isEnabled());
|
||||
groupCall.setOutgoingVideoMuted(!currentState.getLocalDeviceState().getCameraState().isEnabled(), false);
|
||||
groupCall.setOutgoingAudioMuted(!currentState.getLocalDeviceState().isMicrophoneEnabled());
|
||||
groupCall.setDataMode(NetworkUtil.getCallingDataMode(context, groupCall.getLocalDeviceState().getNetworkRoute().getLocalAdapterType()));
|
||||
|
||||
|
||||
+2
-2
@@ -235,7 +235,7 @@ public final class IncomingGroupCallActionProcessor extends DeviceAwareActionPro
|
||||
|
||||
try {
|
||||
groupCall.setOutgoingAudioMuted(true);
|
||||
groupCall.setOutgoingVideoMuted(true);
|
||||
groupCall.setOutgoingVideoMuted(true, false);
|
||||
groupCall.setDataMode(NetworkUtil.getCallingDataMode(context, groupCall.getLocalDeviceState().getNetworkRoute().getLocalAdapterType()));
|
||||
|
||||
Log.i(TAG, "Connecting to group call: " + currentState.getCallInfoState().getCallRecipient().getId());
|
||||
@@ -260,7 +260,7 @@ public final class IncomingGroupCallActionProcessor extends DeviceAwareActionPro
|
||||
|
||||
try {
|
||||
groupCall.setOutgoingVideoSource(currentState.getVideoState().requireLocalSink(), currentState.getVideoState().requireCamera());
|
||||
groupCall.setOutgoingVideoMuted(!answerWithVideo);
|
||||
groupCall.setOutgoingVideoMuted(!answerWithVideo, false);
|
||||
groupCall.setOutgoingAudioMuted(!currentState.getLocalDeviceState().isMicrophoneEnabled());
|
||||
groupCall.setDataMode(NetworkUtil.getCallingDataMode(context, groupCall.getLocalDeviceState().getNetworkRoute().getLocalAdapterType()));
|
||||
|
||||
|
||||
@@ -172,7 +172,7 @@ libsignal-client = { module = "org.signal:libsignal-client", version.ref = "libs
|
||||
libsignal-android = { module = "org.signal:libsignal-android", version.ref = "libsignal-client" }
|
||||
protobuf-gradle-plugin = { module = "com.google.protobuf:protobuf-gradle-plugin", version.ref = "protobuf-gradle-plugin" }
|
||||
signal-aesgcmprovider = "org.signal:aesgcmprovider:0.0.4"
|
||||
signal-ringrtc = "org.signal:ringrtc-android:2.67.2"
|
||||
signal-ringrtc = "org.signal:ringrtc-android:2.68.0"
|
||||
|
||||
# Third Party
|
||||
signal-android-database-sqlcipher = "net.zetetic:sqlcipher-android:4.13.0"
|
||||
|
||||
@@ -16829,12 +16829,12 @@ https://docs.gradle.org/current/userguide/dependency_verification.html
|
||||
<sha256 value="1c81b49468558a456aad54c69752a5a48b59668b4b32914887104ba3e0e7cd72" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.signal" name="ringrtc-android" version="2.67.2">
|
||||
<artifact name="ringrtc-android-2.67.2.aar">
|
||||
<sha256 value="d738ae80450b1a7ca81a25b7238a621c8f518a2d95545b8503cd5df5e2a5ba51" origin="Generated by Gradle"/>
|
||||
<component group="org.signal" name="ringrtc-android" version="2.68.0">
|
||||
<artifact name="ringrtc-android-2.68.0.aar">
|
||||
<sha256 value="86eb6791106ab7cbc6477fdf97b4f02d898cfcd11ed403d0c058ab4c4c0848bb" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="ringrtc-android-2.67.2.module">
|
||||
<sha256 value="288d39dde57ca38552b676943f1f2f3698bc5ba831741dd489dfc653700ab834" origin="Generated by Gradle"/>
|
||||
<artifact name="ringrtc-android-2.68.0.module">
|
||||
<sha256 value="a34899ce3bfd1c7c44ebcec2a2b5072f1573d7f3335656dd09620f886df68b84" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.signal" name="sqlcipher-android" version="4.6.0-S1">
|
||||
|
||||
Reference in New Issue
Block a user