Home
last modified time | relevance | path

Searched refs:previousVideoState (Results 1 – 9 of 9) sorted by relevance

/aosp12/packages/apps/Dialer/java/com/android/incallui/videotech/ims/
H A DImsVideoCallCallback.java62 int previousVideoState = ImsVideoTech.getUnpausedVideoState(call.getDetails().getVideoState()); in onSessionModifyRequestReceived() local
65 boolean wasVideoCall = VideoProfile.isVideo(previousVideoState); in onSessionModifyRequestReceived()
71 } else if (previousVideoState != newVideoState) { in onSessionModifyRequestReceived()
H A DImsVideoTech.java45 private int previousVideoState = VideoProfile.STATE_AUDIO_ONLY; field in ImsVideoTech
151 if (newVideoState != previousVideoState in onCallStateChanged()
156 previousVideoState = newVideoState; in onCallStateChanged()
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/
H A DCallAudioManager.java254 int previousVideoState = call.getVideoState(); in onSessionModifyRequestReceived() local
259 boolean isUpgradeRequest = !VideoProfile.isReceptionEnabled(previousVideoState) && in onSessionModifyRequestReceived()
338 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
341 "foreground.", VideoProfile.videoStateToString(previousVideoState), in onVideoStateChanged()
346 if (!VideoProfile.isVideo(previousVideoState) && in onVideoStateChanged()
349 " to %s", call.getId(), VideoProfile.videoStateToString(previousVideoState), in onVideoStateChanged()
H A DCallsManagerListenerBase.java72 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
H A DCall.java146 void onVideoStateChanged(Call call, int previousVideoState, int newVideoState); in onVideoStateChanged() argument
219 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {} in onVideoStateChanged() argument
3636 int previousVideoState = mVideoState; in setVideoState() local
3638 if (mVideoState != previousVideoState) { in setVideoState()
3642 l.onVideoStateChanged(this, previousVideoState, mVideoState); in setVideoState()
H A DCallDiagnosticServiceController.java133 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {
H A DCallsManager.java173 void onVideoStateChanged(Call call, int previousVideoState, int newVideoState); in onVideoStateChanged() argument
1015 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
1017 listener.onVideoStateChanged(call, previousVideoState, newVideoState); in onVideoStateChanged()
H A DInCallController.java867 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {
/aosp12/packages/apps/Dialer/java/com/android/incallui/
H A DVideoCallPresenter.java819 int previousVideoState = currentVideoState; in adjustVideoMode() local
825 if (!isVideoCall(previousVideoState) && isVideoCall(newVideoState)) { in adjustVideoMode()