Display audio levels for each participant in group calls.

This commit is contained in:
Rashad Sookram
2022-04-01 17:09:56 -04:00
committed by Cody Henthorne
parent a9f208153c
commit ec92d5ddb7
19 changed files with 379 additions and 32 deletions

View File

@@ -1,9 +1,14 @@
package org.thoughtcrime.securesms.webrtc
import org.thoughtcrime.securesms.components.webrtc.CallParticipantsState
import org.thoughtcrime.securesms.service.webrtc.state.WebRtcEphemeralState
data class CallParticipantsViewState(
val callParticipantsState: CallParticipantsState,
class CallParticipantsViewState(
callParticipantsState: CallParticipantsState,
ephemeralState: WebRtcEphemeralState,
val isPortrait: Boolean,
val isLandscapeEnabled: Boolean
)
) {
val callParticipantsState = CallParticipantsState.update(callParticipantsState, ephemeralState)
}