Receive side of remote mute
This commit is contained in:
parent
0d89e7b01a
commit
a444790bf9
13 changed files with 540 additions and 16 deletions
|
@ -36,6 +36,7 @@ import type {
|
|||
SendGroupCallReactionType,
|
||||
SetGroupCallVideoRequestType,
|
||||
SetLocalAudioType,
|
||||
SetMutedByType,
|
||||
SetLocalVideoType,
|
||||
SetRendererCanvasType,
|
||||
StartCallType,
|
||||
|
@ -124,6 +125,7 @@ export type PropsType = {
|
|||
setIsCallActive: (_: boolean) => void;
|
||||
setLocalAudio: SetLocalAudioType;
|
||||
setLocalVideo: SetLocalVideoType;
|
||||
setLocalAudioRemoteMuted: SetMutedByType;
|
||||
setLocalPreviewContainer: (container: HTMLDivElement | null) => void;
|
||||
setOutgoingRing: (_: boolean) => void;
|
||||
setRendererCanvas: (_: SetRendererCanvasType) => void;
|
||||
|
@ -188,6 +190,7 @@ function ActiveCallManager({
|
|||
sendGroupCallReaction,
|
||||
setGroupCallVideoRequest,
|
||||
setLocalAudio,
|
||||
setLocalAudioRemoteMuted,
|
||||
setLocalPreviewContainer,
|
||||
setLocalVideo,
|
||||
setRendererCanvas,
|
||||
|
@ -475,6 +478,7 @@ function ActiveCallManager({
|
|||
setLocalPreviewContainer={setLocalPreviewContainer}
|
||||
setRendererCanvas={setRendererCanvas}
|
||||
setLocalAudio={setLocalAudio}
|
||||
setLocalAudioRemoteMuted={setLocalAudioRemoteMuted}
|
||||
setLocalVideo={setLocalVideo}
|
||||
stickyControls={showParticipantsList}
|
||||
switchToPresentationView={switchToPresentationView}
|
||||
|
@ -567,6 +571,7 @@ export function CallManager({
|
|||
setGroupCallVideoRequest,
|
||||
setIsCallActive,
|
||||
setLocalAudio,
|
||||
setLocalAudioRemoteMuted,
|
||||
setLocalPreviewContainer,
|
||||
setLocalVideo,
|
||||
setOutgoingRing,
|
||||
|
@ -659,6 +664,7 @@ export function CallManager({
|
|||
sendGroupCallReaction={sendGroupCallReaction}
|
||||
setGroupCallVideoRequest={setGroupCallVideoRequest}
|
||||
setLocalAudio={setLocalAudio}
|
||||
setLocalAudioRemoteMuted={setLocalAudioRemoteMuted}
|
||||
setLocalPreviewContainer={setLocalPreviewContainer}
|
||||
setLocalVideo={setLocalVideo}
|
||||
setOutgoingRing={setOutgoingRing}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue