Update to RingRTC v2.32.0

This commit is contained in:
Jim Gustafson
2023-09-25 18:31:46 -07:00
committed by Cody Henthorne
parent e2e2a076c7
commit c314918c6b
3 changed files with 16 additions and 6 deletions

View File

@@ -636,6 +636,11 @@ private void processStateless(@NonNull Function1<WebRtcEphemeralState, WebRtcEph
processStateless(s -> serviceState.getActionProcessor().handleAudioLevelsChanged(serviceState, s, capturedLevel, receivedLevel));
}
@Override
public void onLowBandwidthForVideo(@Nullable Remote remote, boolean recovered) {
// TODO: Implement handling of the "low outgoing bandwidth for video" notification.
}
@Override
public void onCallConcluded(@Nullable Remote remote) {
if (!(remote instanceof RemotePeer)) {
@@ -885,6 +890,11 @@ private void processStateless(@NonNull Function1<WebRtcEphemeralState, WebRtcEph
processStateless(s -> serviceState.getActionProcessor().handleGroupAudioLevelsChanged(serviceState, s));
}
@Override
public void onLowBandwidthForVideo(@NonNull GroupCall groupCall, boolean recovered) {
// TODO: Implement handling of the "low outgoing bandwidth for video" notification.
}
@Override
public void onRemoteDeviceStatesChanged(@NonNull GroupCall groupCall) {
process((s, p) -> p.handleGroupRemoteDeviceStateChanged(s));