Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ea194aec authored by Sekine Yasuaki's avatar Sekine Yasuaki Committed by android-build-merger
Browse files

Merge "Fix to update peer dimensions when video screen resumes foreground"

am: 91bf2093

Change-Id: Ie169f85883f241807f7996712f5dfe7cbc77c02b
parents 2ec69519 91bf2093
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -323,6 +323,17 @@ public class VideoCallPresenter
    InCallPresenter.InCallState inCallState = InCallPresenter.getInstance().getInCallState();
    onStateChange(inCallState, inCallState, CallList.getInstance());
    isVideoCallScreenUiReady = true;

    Point sourceVideoDimensions = getRemoteVideoSurfaceTexture().getSourceVideoDimensions();
    if (sourceVideoDimensions != null && primaryCall != null) {
      int width = primaryCall.getPeerDimensionWidth();
      int height = primaryCall.getPeerDimensionHeight();
      boolean updated = DialerCall.UNKNOWN_PEER_DIMENSIONS != width
          && DialerCall.UNKNOWN_PEER_DIMENSIONS != height;
      if (updated && (sourceVideoDimensions.x != width || sourceVideoDimensions.y != height)) {
        onUpdatePeerDimensions(primaryCall, width, height);
      }
    }
  }

  /** Called when the user interface is no longer ready to be used. */
+16 −0
Original line number Diff line number Diff line
@@ -126,6 +126,8 @@ public class DialerCall implements VideoTechListener, StateChangedListener, Capa

  private static int idCounter = 0;

  public static final int UNKNOWN_PEER_DIMENSIONS = -1;

  /**
   * A counter used to append to restricted/private/hidden calls so that users can identify them in
   * a conversation. This value is reset in {@link CallList#onCallRemoved(Context, Call)} when there
@@ -386,6 +388,8 @@ public class DialerCall implements VideoTechListener, StateChangedListener, Capa
      };

  private long timeAddedMs;
  private int peerDimensionWidth = UNKNOWN_PEER_DIMENSIONS;
  private int peerDimensionHeight = UNKNOWN_PEER_DIMENSIONS;

  public DialerCall(
      Context context,
@@ -1558,6 +1562,8 @@ public class DialerCall implements VideoTechListener, StateChangedListener, Capa

  @Override
  public void onPeerDimensionsChanged(int width, int height) {
    peerDimensionWidth = width;
    peerDimensionHeight = height;
    InCallVideoCallCallbackNotifier.getInstance().peerDimensionsChanged(this, width, height);
  }

@@ -1974,4 +1980,14 @@ public class DialerCall implements VideoTechListener, StateChangedListener, Capa
  public interface CannedTextResponsesLoadedListener {
    void onCannedTextResponsesLoaded(DialerCall call);
  }

  /** Gets peer dimension width. */
  public int getPeerDimensionWidth() {
    return peerDimensionWidth;
  }

  /** Gets peer dimension height. */
  public int getPeerDimensionHeight() {
    return peerDimensionHeight;
  }
}