Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/incallui/videotech/ims/
DImsVideoCallCallback.java63 int newVideoState = ImsVideoTech.getUnpausedVideoState(videoProfile.getVideoState()); in onSessionModifyRequestReceived() local
66 boolean isVideoCall = VideoProfile.isVideo(newVideoState); in onSessionModifyRequestReceived()
70 "ImsVideoTech.onSessionModifyRequestReceived", "call downgraded to %d", newVideoState); in onSessionModifyRequestReceived()
71 } else if (previousVideoState != newVideoState) { in onSessionModifyRequestReceived()
72 requestedVideoState = newVideoState; in onSessionModifyRequestReceived()
80 "ImsVideoTech.onSessionModifyRequestReceived", "call updated to %d", newVideoState); in onSessionModifyRequestReceived()
DImsVideoTech.java150 int newVideoState = call.getDetails().getVideoState(); in onCallStateChanged() local
151 if (newVideoState != previousVideoState in onCallStateChanged()
156 previousVideoState = newVideoState; in onCallStateChanged()
/packages/services/Telecomm/src/com/android/server/telecom/
DCallAudioManager.java255 int newVideoState = videoProfile.getVideoState(); in onSessionModifyRequestReceived() local
257 .videoStateToString(newVideoState)); in onSessionModifyRequestReceived()
260 VideoProfile.isReceptionEnabled(newVideoState); in onSessionModifyRequestReceived()
338 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
342 VideoProfile.videoStateToString(newVideoState), call.getId()); in onVideoStateChanged()
347 mCallsManager.isSpeakerphoneAutoEnabledForVideoCalls(newVideoState)) { in onVideoStateChanged()
350 VideoProfile.videoStateToString(newVideoState)); in onVideoStateChanged()
DCallsManagerListenerBase.java72 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
DCall.java145 void onVideoStateChanged(Call call, int previousVideoState, int newVideoState); in onVideoStateChanged() argument
218 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {} in onVideoStateChanged() argument
4033 public void maybeEnableSpeakerForVideoUpgrade(@VideoProfile.VideoState int newVideoState) { in maybeEnableSpeakerForVideoUpgrade() argument
4034 if (mCallsManager.isSpeakerphoneAutoEnabledForVideoCalls(newVideoState)) { in maybeEnableSpeakerForVideoUpgrade()
DCallDiagnosticServiceController.java133 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {
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()
DInCallController.java867 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {
/packages/apps/Dialer/java/com/android/incallui/
DVideoCallPresenter.java785 int newVideoState = call.getVideoState(); in adjustVideoMode() local
791 newVideoState); in adjustVideoMode()
798 newVideoState, in adjustVideoMode()
817 call, isCameraRequired(newVideoState, call.getVideoTech().getSessionModificationState())); in adjustVideoMode()
820 currentVideoState = newVideoState; in adjustVideoMode()
825 if (!isVideoCall(previousVideoState) && isVideoCall(newVideoState)) { in adjustVideoMode()