зеркало из
1
0
Форкнуть 0

Fix video dispose problem for multiple video stream

This commit is contained in:
Porter Nan 2024-09-18 23:41:12 +00:00
Родитель 39e34af998
Коммит 84966cd42f
2 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -529,12 +529,14 @@ export const createDefaultCommonCallingHandlers = memoizeOne(
if (!participant || !participant.videoStreams) {
return;
}
const screenShareStream = Object.values(participant.videoStreams).find(
const screenShareStreams = Object.values(participant.videoStreams).filter(
(i) => i.mediaStreamType === 'ScreenSharing'
);
if (screenShareStream && screenShareStream.view) {
callClient.disposeView(call.id, participant.identifier, screenShareStream);
for (const stream of screenShareStreams) {
if (stream.view) {
callClient.disposeView(call.id, participant.identifier, stream);
}
}
};

Просмотреть файл

@ -67,6 +67,8 @@ const useVideoStreamLifecycleMaintainer = (
if (!isScreenSharingOn) {
onDisposeStreamView?.();
}
} else {
console.warn('Stream view element does not exist when disposing stream view');
}
};
}, [