Fix group call remote video not rendering.

This commit is contained in:
Cody Henthorne
2022-08-17 15:55:58 -04:00
parent cca35ec687
commit b1d1e92dbb

View File

@@ -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 -> {