Blur participant videos when calls are reconnecting
This commit is contained in:
parent
4ea0970e54
commit
777b9d52e9
11 changed files with 68 additions and 21 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue