fix flickering of video stream on mute/unmute

pull/2015/head
Audric Ackermann 3 years ago
parent 8468598b3a
commit dd25d9cb7f
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -97,13 +97,17 @@ export const DraggableCallContainer = () => {
}, [positionX, positionY]);
if (videoRefRemote?.current?.srcObject && remoteStream) {
videoRefRemote.current.srcObject = remoteStream;
if (videoRefRemote.current.srcObject !== remoteStream) {
videoRefRemote.current.srcObject = remoteStream;
}
videoRefRemote.current.load();
}
useEffect(() => {
if (videoRefRemote?.current) {
videoRefRemote.current.srcObject = remoteStream;
if (videoRefRemote?.current?.srcObject && remoteStream) {
videoRefRemote.current.srcObject = remoteStream;
}
videoRefRemote.current.load();
}

@ -272,8 +272,12 @@ export const InConversationCallContainer = () => {
} = useVideoCallEventsListener('InConversationCallContainer', true);
if (videoRefRemote?.current && videoRefLocal?.current) {
videoRefRemote.current.srcObject = remoteStream;
videoRefLocal.current.srcObject = localStream;
if (videoRefRemote.current.srcObject !== remoteStream) {
videoRefRemote.current.srcObject = remoteStream;
}
if (videoRefLocal.current.srcObject !== localStream) {
videoRefLocal.current.srcObject = localStream;
}
}
if (!ongoingCallWithFocused) {

@ -10,6 +10,7 @@ import {
callConnected,
endCall,
incomingCall,
openConversationWithMessages,
setFullScreenCall,
startingCallWith,
} from '../../state/ducks/conversations';
@ -611,7 +612,7 @@ export async function USER_acceptIncomingCallRequest(fromSender: string) {
return;
}
window.inboxStore?.dispatch(answerCall({ pubkey: fromSender }));
await openConversationWithMessages({ conversationKey: fromSender });
if (peerConnection) {
throw new Error('USER_acceptIncomingCallRequest: peerConnection is already set.');
}

Loading…
Cancel
Save