Blur participant videos when calls are reconnecting

This commit is contained in:
trevor-signal 2023-10-16 13:58:51 -04:00 committed by GitHub
parent 4ea0970e54
commit 777b9d52e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 68 additions and 21 deletions

View file

@ -19,6 +19,7 @@ export type PropsType = {
getFrameBuffer: () => Buffer;
getGroupCallVideoFrameSource: (demuxId: number) => VideoFrameSource;
i18n: LocalizerType;
isCallReconnecting: boolean;
onParticipantVisibilityChanged: (
demuxId: number,
isVisible: boolean
@ -32,6 +33,7 @@ export function GroupCallOverflowArea({
getFrameBuffer,
getGroupCallVideoFrameSource,
i18n,
isCallReconnecting,
onParticipantVisibilityChanged,
overflowedParticipants,
remoteAudioLevels,
@ -127,6 +129,7 @@ export function GroupCallOverflowArea({
remoteParticipant={remoteParticipant}
remoteParticipantsCount={remoteParticipantsCount}
isActiveSpeakerInSpeakerView={false}
isCallReconnecting={isCallReconnecting}
/>
))}
</div>