Home
last modified time | relevance | path

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

/aosp12/packages/apps/Dialer/java/com/android/incallui/videotech/ims/
H A 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()
H A DImsVideoTech.java150 int newVideoState = call.getDetails().getVideoState(); in onCallStateChanged() local
151 if (newVideoState != previousVideoState in onCallStateChanged()
156 previousVideoState = newVideoState; in onCallStateChanged()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneConnection.java996 int newVideoState = ImsCallProfile in updateMediaCapabilities() local
999 if (oldVideoState != newVideoState) { in updateMediaCapabilities()
1015 updateVideoState(newVideoState); in updateMediaCapabilities()
1023 VideoProfile.isPaused(newVideoState)) { in updateMediaCapabilities()
1147 private void updateVideoState(int newVideoState) { in updateVideoState() argument
1151 setVideoState(newVideoState); in updateVideoState()
1477 int newVideoState = responseProfile.getVideoState(); in onReceiveSessionModifyResponse() local
1485 int changedBits = currentVideoState ^ newVideoState; in onReceiveSessionModifyResponse()
1495 currentVideoState |= changedBits & newVideoState; in onReceiveSessionModifyResponse()
1569 updateVideoState(newVideoState); in changeToPausedState()
[all …]
H A DImsExternalCallTracker.java363 int newVideoState = ImsCallProfile.getVideoStateFromCallType(state.getCallType()); in updateExistingConnection() local
364 if (newVideoState != connection.getVideoState()) { in updateExistingConnection()
365 connection.setVideoState(newVideoState); in updateExistingConnection()
369 boolean isCallPullPermitted = isCallPullPermitted(state.isCallPullable(), newVideoState); in updateExistingConnection()
H A DImsPhoneCallTracker.java4757 private void modifyVideoCall(ImsCall imsCall, int newVideoState) { in modifyVideoCall() argument
4763 new VideoProfile(oldVideoState), new VideoProfile(newVideoState)); in modifyVideoCall()
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/
H A 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()
H A DCallsManagerListenerBase.java72 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
H A DCallDiagnosticServiceController.java133 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {
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
4041 public void maybeEnableSpeakerForVideoUpgrade(@VideoProfile.VideoState int newVideoState) { in maybeEnableSpeakerForVideoUpgrade() argument
4042 if (mCallsManager.isSpeakerphoneAutoEnabledForVideoCalls(newVideoState)) { in maybeEnableSpeakerForVideoUpgrade()
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/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsVideoCallProviderWrapper.java583 public void onVideoStateChanged(int newVideoState) { in onVideoStateChanged() argument
584 if (VideoProfile.isPaused(mCurrentVideoState) && !VideoProfile.isPaused(newVideoState)) { in onVideoStateChanged()
589 VideoProfile.videoStateToString(newVideoState))); in onVideoStateChanged()
595 VideoProfile.videoStateToString(newVideoState))); in onVideoStateChanged()
597 mCurrentVideoState = newVideoState; in onVideoStateChanged()
/aosp12/packages/apps/Dialer/java/com/android/incallui/
H A 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()