Skip to content

Commit

Permalink
Fix group call remote video not rendering.
Browse files Browse the repository at this point in the history
  • Loading branch information
cody-signal committed Aug 18, 2022
1 parent cca35ec commit b1d1e92
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -149,8 +149,8 @@ void setCallParticipant(@NonNull CallParticipant participant) {

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 -> {
Expand Down

0 comments on commit b1d1e92

Please sign in to comment.