Fix group call remote video not rendering.

This commit is contained in:
Cody Henthorne
2022-08-18 16:01:05 -04:00
parent cca35ec687
commit b1d1e92dbb
@@ -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 -> {