Fix group call remote video not rendering.

fork-5.53.8
Cody Henthorne 2022-08-17 15:55:58 -04:00
rodzic cca35ec687
commit b1d1e92dbb
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -149,8 +149,8 @@ public class CallParticipantView extends ConstraintLayout {
boolean hasContentToRender = (participant.isVideoEnabled() || participant.isScreenSharing()) && participant.isForwardingVideo();
rendererFrame.setVisibility(hasContentToRender ? View.VISIBLE : View.GONE);
renderer.setVisibility(hasContentToRender ? View.VISIBLE : View.GONE);
rendererFrame.setVisibility(hasContentToRender ? View.VISIBLE : View.INVISIBLE);
renderer.setVisibility(hasContentToRender ? View.VISIBLE : View.INVISIBLE);
if (participant.isVideoEnabled()) {
participant.getVideoSink().getLockableEglBase().performWithValidEglBase(eglBase -> {