Update to RingRTC v2.44.3

This commit is contained in:
Jim Gustafson
2024-07-08 06:48:13 -07:00
committed by Cody Henthorne
parent d91760eefc
commit a3d1197aef
13 changed files with 24 additions and 21 deletions

View File

@@ -63,6 +63,7 @@ class CallLinkPreJoinActionProcessor(
ByteArray(0),
AUDIO_LEVELS_INTERVAL,
getAudioProcessingMethod(),
SignalStore.internal.callingEnableOboeAdm(),
webRtcInteractor.groupCallObserver
)
} catch (e: InvalidInputException) {

View File

@@ -53,6 +53,7 @@ public class GroupNetworkUnavailableActionProcessor extends WebRtcActionProcesso
new byte[0],
null,
RingRtcDynamicConfiguration.getAudioProcessingMethod(),
SignalStore.internal().callingEnableOboeAdm(),
webRtcInteractor.getGroupCallObserver());
return currentState.builder()

View File

@@ -51,6 +51,7 @@ public class GroupPreJoinActionProcessor extends GroupActionProcessor {
new byte[0],
AUDIO_LEVELS_INTERVAL,
RingRtcDynamicConfiguration.getAudioProcessingMethod(),
SignalStore.internal().callingEnableOboeAdm(),
webRtcInteractor.getGroupCallObserver());
try {

View File

@@ -102,6 +102,7 @@ public class IncomingCallActionProcessor extends DeviceAwareActionProcessor {
context,
videoState.getLockableEglBase().require(),
RingRtcDynamicConfiguration.getAudioProcessingMethod(),
SignalStore.internal().callingEnableOboeAdm(),
videoState.requireLocalSink(),
callParticipant.getVideoSink(),
videoState.requireCamera(),

View File

@@ -185,6 +185,7 @@ public final class IncomingGroupCallActionProcessor extends DeviceAwareActionPro
new byte[0],
AUDIO_LEVELS_INTERVAL,
RingRtcDynamicConfiguration.getAudioProcessingMethod(),
SignalStore.internal().callingEnableOboeAdm(),
webRtcInteractor.getGroupCallObserver());
try {

View File

@@ -152,6 +152,7 @@ public class OutgoingCallActionProcessor extends DeviceAwareActionProcessor {
context,
videoState.getLockableEglBase().require(),
RingRtcDynamicConfiguration.getAudioProcessingMethod(),
SignalStore.internal().callingEnableOboeAdm(),
videoState.requireLocalSink(),
callParticipant.getVideoSink(),
videoState.requireCamera(),